From acf6df8b0490836a62695e713d2a10571fdce2c9 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 2 Aug 2005 08:57:26 +0000 Subject: [PATCH] Setup tweaks; bzip import --- commands/Makefile | 1 + commands/bzip2-1.0.3/CHANGES | 275 + commands/bzip2-1.0.3/LICENSE | 40 + commands/bzip2-1.0.3/Makefile | 215 + commands/bzip2-1.0.3/Makefile-libbz2_so | 44 + .../bzip2-1.0.3/README.COMPILATION.PROBLEMS | 39 + commands/bzip2-1.0.3/README.MINIX | 172 + commands/bzip2-1.0.3/README.ORIGINAL | 185 + commands/bzip2-1.0.3/README.XML.STUFF | 31 + commands/bzip2-1.0.3/Y2K_INFO | 34 + commands/bzip2-1.0.3/blocksort.c | 1141 + commands/bzip2-1.0.3/bz-common.xsl | 39 + commands/bzip2-1.0.3/bz-fo.xsl | 257 + commands/bzip2-1.0.3/bz-html.xsl | 20 + commands/bzip2-1.0.3/bzdiff | 76 + commands/bzip2-1.0.3/bzdiff.1 | 47 + commands/bzip2-1.0.3/bzgrep | 71 + commands/bzip2-1.0.3/bzgrep.1 | 56 + commands/bzip2-1.0.3/bzip.css | 74 + commands/bzip2-1.0.3/bzip2.1 | 454 + commands/bzip2-1.0.3/bzip2.1.preformatted | 399 + commands/bzip2-1.0.3/bzip2.c | 2107 + commands/bzip2-1.0.3/bzip2.txt | 391 + commands/bzip2-1.0.3/bzip2recover.c | 546 + commands/bzip2-1.0.3/bzlib.c | 1616 + commands/bzip2-1.0.3/bzlib.h | 323 + commands/bzip2-1.0.3/bzlib_private.h | 537 + commands/bzip2-1.0.3/bzmore | 61 + commands/bzip2-1.0.3/bzmore.1 | 152 + commands/bzip2-1.0.3/compress.c | 716 + commands/bzip2-1.0.3/crctable.c | 144 + commands/bzip2-1.0.3/decompress.c | 666 + commands/bzip2-1.0.3/dlltest.c | 176 + commands/bzip2-1.0.3/dlltest.dsp | 93 + commands/bzip2-1.0.3/entities.xml | 9 + commands/bzip2-1.0.3/format.pl | 53 + commands/bzip2-1.0.3/huffman.c | 245 + commands/bzip2-1.0.3/libbz2.def | 27 + commands/bzip2-1.0.3/libbz2.dsp | 130 + commands/bzip2-1.0.3/makefile.msc | 63 + commands/bzip2-1.0.3/manual.html | 2687 + commands/bzip2-1.0.3/manual.pdf | Bin 0 -> 207093 bytes commands/bzip2-1.0.3/manual.ps | 68244 ++++++++++++++++ commands/bzip2-1.0.3/manual.xml | 2966 + commands/bzip2-1.0.3/mk251.c | 16 + commands/bzip2-1.0.3/randtable.c | 124 + commands/bzip2-1.0.3/sample1.bz2 | Bin 0 -> 32348 bytes commands/bzip2-1.0.3/sample1.ref | Bin 0 -> 98696 bytes commands/bzip2-1.0.3/sample2.bz2 | Bin 0 -> 73732 bytes commands/bzip2-1.0.3/sample2.ref | Bin 0 -> 212340 bytes commands/bzip2-1.0.3/sample3.bz2 | Bin 0 -> 235 bytes commands/bzip2-1.0.3/sample3.ref | 30007 +++++++ commands/bzip2-1.0.3/spewG.c | 39 + commands/bzip2-1.0.3/unzcrash.c | 126 + commands/bzip2-1.0.3/words0 | 5 + commands/bzip2-1.0.3/words1 | 4 + commands/bzip2-1.0.3/words2 | 5 + commands/bzip2-1.0.3/words3 | 23 + commands/bzip2-1.0.3/xmlproc.sh | 99 + commands/scripts/setup.sh | 23 +- 60 files changed, 116084 insertions(+), 9 deletions(-) create mode 100644 commands/bzip2-1.0.3/CHANGES create mode 100644 commands/bzip2-1.0.3/LICENSE create mode 100644 commands/bzip2-1.0.3/Makefile create mode 100644 commands/bzip2-1.0.3/Makefile-libbz2_so create mode 100644 commands/bzip2-1.0.3/README.COMPILATION.PROBLEMS create mode 100644 commands/bzip2-1.0.3/README.MINIX create mode 100644 commands/bzip2-1.0.3/README.ORIGINAL create mode 100644 commands/bzip2-1.0.3/README.XML.STUFF create mode 100644 commands/bzip2-1.0.3/Y2K_INFO create mode 100644 commands/bzip2-1.0.3/blocksort.c create mode 100644 commands/bzip2-1.0.3/bz-common.xsl create mode 100644 commands/bzip2-1.0.3/bz-fo.xsl create mode 100644 commands/bzip2-1.0.3/bz-html.xsl create mode 100644 commands/bzip2-1.0.3/bzdiff create mode 100644 commands/bzip2-1.0.3/bzdiff.1 create mode 100644 commands/bzip2-1.0.3/bzgrep create mode 100644 commands/bzip2-1.0.3/bzgrep.1 create mode 100644 commands/bzip2-1.0.3/bzip.css create mode 100644 commands/bzip2-1.0.3/bzip2.1 create mode 100644 commands/bzip2-1.0.3/bzip2.1.preformatted create mode 100644 commands/bzip2-1.0.3/bzip2.c create mode 100644 commands/bzip2-1.0.3/bzip2.txt create mode 100644 commands/bzip2-1.0.3/bzip2recover.c create mode 100644 commands/bzip2-1.0.3/bzlib.c create mode 100644 commands/bzip2-1.0.3/bzlib.h create mode 100644 commands/bzip2-1.0.3/bzlib_private.h create mode 100644 commands/bzip2-1.0.3/bzmore create mode 100644 commands/bzip2-1.0.3/bzmore.1 create mode 100644 commands/bzip2-1.0.3/compress.c create mode 100644 commands/bzip2-1.0.3/crctable.c create mode 100644 commands/bzip2-1.0.3/decompress.c create mode 100644 commands/bzip2-1.0.3/dlltest.c create mode 100644 commands/bzip2-1.0.3/dlltest.dsp create mode 100644 commands/bzip2-1.0.3/entities.xml create mode 100755 commands/bzip2-1.0.3/format.pl create mode 100644 commands/bzip2-1.0.3/huffman.c create mode 100644 commands/bzip2-1.0.3/libbz2.def create mode 100644 commands/bzip2-1.0.3/libbz2.dsp create mode 100644 commands/bzip2-1.0.3/makefile.msc create mode 100644 commands/bzip2-1.0.3/manual.html create mode 100644 commands/bzip2-1.0.3/manual.pdf create mode 100644 commands/bzip2-1.0.3/manual.ps create mode 100644 commands/bzip2-1.0.3/manual.xml create mode 100644 commands/bzip2-1.0.3/mk251.c create mode 100644 commands/bzip2-1.0.3/randtable.c create mode 100644 commands/bzip2-1.0.3/sample1.bz2 create mode 100644 commands/bzip2-1.0.3/sample1.ref create mode 100644 commands/bzip2-1.0.3/sample2.bz2 create mode 100644 commands/bzip2-1.0.3/sample2.ref create mode 100644 commands/bzip2-1.0.3/sample3.bz2 create mode 100644 commands/bzip2-1.0.3/sample3.ref create mode 100644 commands/bzip2-1.0.3/spewG.c create mode 100644 commands/bzip2-1.0.3/unzcrash.c create mode 100644 commands/bzip2-1.0.3/words0 create mode 100644 commands/bzip2-1.0.3/words1 create mode 100644 commands/bzip2-1.0.3/words2 create mode 100644 commands/bzip2-1.0.3/words3 create mode 100755 commands/bzip2-1.0.3/xmlproc.sh diff --git a/commands/Makefile b/commands/Makefile index 17dd09291..43b7d6c85 100755 --- a/commands/Makefile +++ b/commands/Makefile @@ -30,6 +30,7 @@ all install clean:: cd awk && $(MAKE) $@ cd bc && $(MAKE) $@ cd byacc && $(MAKE) $@ + cd bzip2-1.0.3 && $(MAKE) $@ cd cawf && $(MAKE) $@ cd cron && $(MAKE) $@ cd de && $(MAKE) $@ diff --git a/commands/bzip2-1.0.3/CHANGES b/commands/bzip2-1.0.3/CHANGES new file mode 100644 index 000000000..e31b03a01 --- /dev/null +++ b/commands/bzip2-1.0.3/CHANGES @@ -0,0 +1,275 @@ + + +0.9.0 +~~~~~ +First version. + + +0.9.0a +~~~~~~ +Removed 'ranlib' from Makefile, since most modern Unix-es +don't need it, or even know about it. + + +0.9.0b +~~~~~~ +Fixed a problem with error reporting in bzip2.c. This does not effect +the library in any way. Problem is: versions 0.9.0 and 0.9.0a (of the +program proper) compress and decompress correctly, but give misleading +error messages (internal panics) when an I/O error occurs, instead of +reporting the problem correctly. This shouldn't give any data loss +(as far as I can see), but is confusing. + +Made the inline declarations disappear for non-GCC compilers. + + +0.9.0c +~~~~~~ +Fixed some problems in the library pertaining to some boundary cases. +This makes the library behave more correctly in those situations. The +fixes apply only to features (calls and parameters) not used by +bzip2.c, so the non-fixedness of them in previous versions has no +effect on reliability of bzip2.c. + +In bzlib.c: + * made zero-length BZ_FLUSH work correctly in bzCompress(). + * fixed bzWrite/bzRead to ignore zero-length requests. + * fixed bzread to correctly handle read requests after EOF. + * wrong parameter order in call to bzDecompressInit in + bzBuffToBuffDecompress. Fixed. + +In compress.c: + * changed setting of nGroups in sendMTFValues() so as to + do a bit better on small files. This _does_ effect + bzip2.c. + + +0.9.5a +~~~~~~ +Major change: add a fallback sorting algorithm (blocksort.c) +to give reasonable behaviour even for very repetitive inputs. +Nuked --repetitive-best and --repetitive-fast since they are +no longer useful. + +Minor changes: mostly a whole bunch of small changes/ +bugfixes in the driver (bzip2.c). Changes pertaining to the +user interface are: + + allow decompression of symlink'd files to stdout + decompress/test files even without .bz2 extension + give more accurate error messages for I/O errors + when compressing/decompressing to stdout, don't catch control-C + read flags from BZIP2 and BZIP environment variables + decline to break hard links to a file unless forced with -f + allow -c flag even with no filenames + preserve file ownerships as far as possible + make -s -1 give the expected block size (100k) + add a flag -q --quiet to suppress nonessential warnings + stop decoding flags after --, so files beginning in - can be handled + resolved inconsistent naming: bzcat or bz2cat ? + bzip2 --help now returns 0 + +Programming-level changes are: + + fixed syntax error in GET_LL4 for Borland C++ 5.02 + let bzBuffToBuffDecompress return BZ_DATA_ERROR{_MAGIC} + fix overshoot of mode-string end in bzopen_or_bzdopen + wrapped bzlib.h in #ifdef __cplusplus ... extern "C" { ... } + close file handles under all error conditions + added minor mods so it compiles with DJGPP out of the box + fixed Makefile so it doesn't give problems with BSD make + fix uninitialised memory reads in dlltest.c + +0.9.5b +~~~~~~ +Open stdin/stdout in binary mode for DJGPP. + +0.9.5c +~~~~~~ +Changed BZ_N_OVERSHOOT to be ... + 2 instead of ... + 1. The + 1 +version could cause the sorted order to be wrong in some extremely +obscure cases. Also changed setting of quadrant in blocksort.c. + +0.9.5d +~~~~~~ +The only functional change is to make bzlibVersion() in the library +return the correct string. This has no effect whatsoever on the +functioning of the bzip2 program or library. Added a couple of casts +so the library compiles without warnings at level 3 in MS Visual +Studio 6.0. Included a Y2K statement in the file Y2K_INFO. All other +changes are minor documentation changes. + +1.0 +~~~ +Several minor bugfixes and enhancements: + +* Large file support. The library uses 64-bit counters to + count the volume of data passing through it. bzip2.c + is now compiled with -D_FILE_OFFSET_BITS=64 to get large + file support from the C library. -v correctly prints out + file sizes greater than 4 gigabytes. All these changes have + been made without assuming a 64-bit platform or a C compiler + which supports 64-bit ints, so, except for the C library + aspect, they are fully portable. + +* Decompression robustness. The library/program should be + robust to any corruption of compressed data, detecting and + handling _all_ corruption, instead of merely relying on + the CRCs. What this means is that the program should + never crash, given corrupted data, and the library should + always return BZ_DATA_ERROR. + +* Fixed an obscure race-condition bug only ever observed on + Solaris, in which, if you were very unlucky and issued + control-C at exactly the wrong time, both input and output + files would be deleted. + +* Don't run out of file handles on test/decompression when + large numbers of files have invalid magic numbers. + +* Avoid library namespace pollution. Prefix all exported + symbols with BZ2_. + +* Minor sorting enhancements from my DCC2000 paper. + +* Advance the version number to 1.0, so as to counteract the + (false-in-this-case) impression some people have that programs + with version numbers less than 1.0 are in some way, experimental, + pre-release versions. + +* Create an initial Makefile-libbz2_so to build a shared library. + Yes, I know I should really use libtool et al ... + +* Make the program exit with 2 instead of 0 when decompression + fails due to a bad magic number (ie, an invalid bzip2 header). + Also exit with 1 (as the manual claims :-) whenever a diagnostic + message would have been printed AND the corresponding operation + is aborted, for example + bzip2: Output file xx already exists. + When a diagnostic message is printed but the operation is not + aborted, for example + bzip2: Can't guess original name for wurble -- using wurble.out + then the exit value 0 is returned, unless some other problem is + also detected. + + I think it corresponds more closely to what the manual claims now. + + +1.0.1 +~~~~~ +* Modified dlltest.c so it uses the new BZ2_ naming scheme. +* Modified makefile-msc to fix minor build probs on Win2k. +* Updated README.COMPILATION.PROBLEMS. + +There are no functionality changes or bug fixes relative to version +1.0.0. This is just a documentation update + a fix for minor Win32 +build problems. For almost everyone, upgrading from 1.0.0 to 1.0.1 is +utterly pointless. Don't bother. + + +1.0.2 +~~~~~ +A bug fix release, addressing various minor issues which have appeared +in the 18 or so months since 1.0.1 was released. Most of the fixes +are to do with file-handling or documentation bugs. To the best of my +knowledge, there have been no data-loss-causing bugs reported in the +compression/decompression engine of 1.0.0 or 1.0.1. + +Note that this release does not improve the rather crude build system +for Unix platforms. The general plan here is to autoconfiscate/ +libtoolise 1.0.2 soon after release, and release the result as 1.1.0 +or perhaps 1.2.0. That, however, is still just a plan at this point. + +Here are the changes in 1.0.2. Bug-reporters and/or patch-senders in +parentheses. + +* Fix an infinite segfault loop in 1.0.1 when a directory is + encountered in -f (force) mode. + (Trond Eivind Glomsrod, Nicholas Nethercote, Volker Schmidt) + +* Avoid double fclose() of output file on certain I/O error paths. + (Solar Designer) + +* Don't fail with internal error 1007 when fed a long stream (> 48MB) + of byte 251. Also print useful message suggesting that 1007s may be + caused by bad memory. + (noticed by Juan Pedro Vallejo, fixed by me) + +* Fix uninitialised variable silly bug in demo prog dlltest.c. + (Jorj Bauer) + +* Remove 512-MB limitation on recovered file size for bzip2recover + on selected platforms which support 64-bit ints. At the moment + all GCC supported platforms, and Win32. + (me, Alson van der Meulen) + +* Hard-code header byte values, to give correct operation on platforms + using EBCDIC as their native character set (IBM's OS/390). + (Leland Lucius) + +* Copy file access times correctly. + (Marty Leisner) + +* Add distclean and check targets to Makefile. + (Michael Carmack) + +* Parameterise use of ar and ranlib in Makefile. Also add $(LDFLAGS). + (Rich Ireland, Bo Thorsen) + +* Pass -p (create parent dirs as needed) to mkdir during make install. + (Jeremy Fusco) + +* Dereference symlinks when copying file permissions in -f mode. + (Volker Schmidt) + +* Majorly simplify implementation of uInt64_qrm10. + (Bo Lindbergh) + +* Check the input file still exists before deleting the output one, + when aborting in cleanUpAndFail(). + (Joerg Prante, Robert Linden, Matthias Krings) + +Also a bunch of patches courtesy of Philippe Troin, the Debian maintainer +of bzip2: + +* Wrapper scripts (with manpages): bzdiff, bzgrep, bzmore. + +* Spelling changes and minor enhancements in bzip2.1. + +* Avoid race condition between creating the output file and setting its + interim permissions safely, by using fopen_output_safely(). + No changes to bzip2recover since there is no issue with file + permissions there. + +* do not print senseless report with -v when compressing an empty + file. + +* bzcat -f works on non-bzip2 files. + +* do not try to escape shell meta-characters on unix (the shell takes + care of these). + +* added --fast and --best aliases for -1 -9 for gzip compatibility. + + +1.0.3 (15 Feb 05) +~~~~~~~~~~~~~~~~~ +Fixes some minor bugs since the last version, 1.0.2. + +* Further robustification against corrupted compressed data. + There are currently no known bitstreams which can cause the + decompressor to crash, loop or access memory which does not + belong to it. If you are using bzip2 or the library to + decompress bitstreams from untrusted sources, an upgrade + to 1.0.3 is recommended. + +* The documentation has been converted to XML, from which html + and pdf can be derived. + +* Various minor bugs in the documentation have been fixed. + +* Fixes for various compilation warnings with newer versions of + gcc, and on 64-bit platforms. + +* The BZ_NO_STDIO cpp symbol was not properly observed in 1.0.2. + This has been fixed. diff --git a/commands/bzip2-1.0.3/LICENSE b/commands/bzip2-1.0.3/LICENSE new file mode 100644 index 000000000..e60845b4d --- /dev/null +++ b/commands/bzip2-1.0.3/LICENSE @@ -0,0 +1,40 @@ + +This program, "bzip2", the associated library "libbzip2", and all +documentation, are copyright (C) 1996-2005 Julian R Seward. All +rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +4. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS +OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Julian Seward, Cambridge, UK. +jseward@acm.org +bzip2/libbzip2 version 1.0.3 of 15 February 2005 + diff --git a/commands/bzip2-1.0.3/Makefile b/commands/bzip2-1.0.3/Makefile new file mode 100644 index 000000000..479d1563c --- /dev/null +++ b/commands/bzip2-1.0.3/Makefile @@ -0,0 +1,215 @@ + +SHELL=/bin/sh + +# To assist in cross-compiling +CC=cc +AR=ar +ARFLAGS=cr +RANLIB=ranlib +LDFLAGS= + +BIGFILES=-D_FILE_OFFSET_BITS=64 +CFLAGS=-Wall -Winline -O -g $(BIGFILES) -Dlstat=stat + +# Where you want it installed when you do 'make install' +PREFIX=/usr/local +PREFIX_BIN=$(PREFIX)/bin +PREFIX_LIB=$(PREFIX)/lib +PREFIX_MAN=$(PREFIX)/man +PREFIX_INC=$(PREFIX)/include + + +OBJS= blocksort.o \ + huffman.o \ + crctable.o \ + randtable.o \ + compress.o \ + decompress.o \ + bzlib.o + +all: all_notest test_nodep + +all_notest: libbz2.a bzip2 bzip2recover + chmem =8000000 bzip2 + +bzip2: libbz2.a bzip2.o + $(CC) $(CFLAGS) $(LDFLAGS) -o bzip2 bzip2.o -L. -lbz2 + +bzip2recover: bzip2recover.o + $(CC) $(CFLAGS) $(LDFLAGS) -o bzip2recover bzip2recover.o + +libbz2.a: $(OBJS) + rm -f libbz2.a + $(AR) $(ARFLAGS) libbz2.a $(OBJS) + @if ( test -f $(RANLIB) -o -f /usr/bin/ranlib -o \ + -f /bin/ranlib -o -f /usr/ccs/bin/ranlib ) ; then \ + echo $(RANLIB) libbz2.a ; \ + $(RANLIB) libbz2.a ; \ + fi + +check: test +test: bzip2 test_nodep + +test_nodep: + @cat words1 + ./bzip2 -1 < sample1.ref > sample1.rb2 + ./bzip2 -2 < sample2.ref > sample2.rb2 + ./bzip2 -3 < sample3.ref > sample3.rb2 + ./bzip2 -d < sample1.bz2 > sample1.tst + ./bzip2 -d < sample2.bz2 > sample2.tst + ./bzip2 -ds < sample3.bz2 > sample3.tst + cmp sample1.bz2 sample1.rb2 + cmp sample2.bz2 sample2.rb2 + cmp sample3.bz2 sample3.rb2 + cmp sample1.tst sample1.ref + cmp sample2.tst sample2.ref + cmp sample3.tst sample3.ref + @cat words3 + +install: bzip2 bzip2recover + if ( test ! -d $(PREFIX_BIN) ) ; then mkdir -p $(PREFIX_BIN) ; fi + if ( test ! -d $(PREFIX_LIB) ) ; then mkdir -p $(PREFIX_LIB) ; fi + if ( test ! -d $(PREFIX_MAN) ) ; then mkdir -p $(PREFIX_MAN) ; fi + if ( test ! -d $(PREFIX_MAN)/man1 ) ; then mkdir -p $(PREFIX_MAN)/man1 ; fi + if ( test ! -d $(PREFIX_INC) ) ; then mkdir -p $(PREFIX_INC) ; fi + cp -f bzip2 $(PREFIX_BIN)/bzip2 + cp -f bzip2 $(PREFIX_BIN)/bunzip2 + cp -f bzip2 $(PREFIX_BIN)/bzcat + cp -f bzip2recover $(PREFIX_BIN)/bzip2recover + chmod a+x $(PREFIX_BIN)/bzip2 + chmod a+x $(PREFIX_BIN)/bunzip2 + chmod a+x $(PREFIX_BIN)/bzcat + chmod a+x $(PREFIX_BIN)/bzip2recover + cp -f bzip2.1 $(PREFIX_MAN)/man1 + chmod a+r $(PREFIX_MAN)/man1/bzip2.1 + cp -f bzlib.h $(PREFIX_INC) + chmod a+r $(PREFIX_INC)/bzlib.h + cp -f libbz2.a $(PREFIX_LIB) + chmod a+r $(PREFIX_LIB)/libbz2.a + cp -f bzgrep $(PREFIX_BIN)/bzgrep + ln -f $(PREFIX_BIN)/bzgrep $(PREFIX_BIN)/bzegrep + ln -f $(PREFIX_BIN)/bzgrep $(PREFIX_BIN)/bzfgrep + chmod a+x $(PREFIX_BIN)/bzgrep + cp -f bzmore $(PREFIX_BIN)/bzmore + ln -f $(PREFIX_BIN)/bzmore $(PREFIX_BIN)/bzless + chmod a+x $(PREFIX_BIN)/bzmore + cp -f bzdiff $(PREFIX_BIN)/bzdiff + ln -f $(PREFIX_BIN)/bzdiff $(PREFIX_BIN)/bzcmp + chmod a+x $(PREFIX_BIN)/bzdiff + cp -f bzgrep.1 bzmore.1 bzdiff.1 $(PREFIX_MAN)/man1 + chmod a+r $(PREFIX_MAN)/man1/bzgrep.1 + chmod a+r $(PREFIX_MAN)/man1/bzmore.1 + chmod a+r $(PREFIX_MAN)/man1/bzdiff.1 + echo ".so man1/bzgrep.1" > $(PREFIX_MAN)/man1/bzegrep.1 + echo ".so man1/bzgrep.1" > $(PREFIX_MAN)/man1/bzfgrep.1 + echo ".so man1/bzmore.1" > $(PREFIX_MAN)/man1/bzless.1 + echo ".so man1/bzdiff.1" > $(PREFIX_MAN)/man1/bzcmp.1 + +clean: + rm -f *.o libbz2.a bzip2 bzip2recover \ + sample1.rb2 sample2.rb2 sample3.rb2 \ + sample1.tst sample2.tst sample3.tst + +blocksort.o: blocksort.c + @cat words0 + $(CC) $(CFLAGS) -c blocksort.c +huffman.o: huffman.c + $(CC) $(CFLAGS) -c huffman.c +crctable.o: crctable.c + $(CC) $(CFLAGS) -c crctable.c +randtable.o: randtable.c + $(CC) $(CFLAGS) -c randtable.c +compress.o: compress.c + $(CC) $(CFLAGS) -c compress.c +decompress.o: decompress.c + $(CC) $(CFLAGS) -c decompress.c +bzlib.o: bzlib.c + $(CC) $(CFLAGS) -c bzlib.c +bzip2.o: bzip2.c + $(CC) $(CFLAGS) -c bzip2.c +bzip2recover.o: bzip2recover.c + $(CC) $(CFLAGS) -c bzip2recover.c + + +distclean: clean + rm -f manual.ps manual.html manual.pdf + +DISTNAME=bzip2-1.0.3 +dist: check manual + rm -f $(DISTNAME) + ln -sf . $(DISTNAME) + tar cvf $(DISTNAME).tar \ + $(DISTNAME)/blocksort.c \ + $(DISTNAME)/huffman.c \ + $(DISTNAME)/crctable.c \ + $(DISTNAME)/randtable.c \ + $(DISTNAME)/compress.c \ + $(DISTNAME)/decompress.c \ + $(DISTNAME)/bzlib.c \ + $(DISTNAME)/bzip2.c \ + $(DISTNAME)/bzip2recover.c \ + $(DISTNAME)/bzlib.h \ + $(DISTNAME)/bzlib_private.h \ + $(DISTNAME)/Makefile \ + $(DISTNAME)/LICENSE \ + $(DISTNAME)/bzip2.1 \ + $(DISTNAME)/bzip2.1.preformatted \ + $(DISTNAME)/bzip2.txt \ + $(DISTNAME)/words0 \ + $(DISTNAME)/words1 \ + $(DISTNAME)/words2 \ + $(DISTNAME)/words3 \ + $(DISTNAME)/sample1.ref \ + $(DISTNAME)/sample2.ref \ + $(DISTNAME)/sample3.ref \ + $(DISTNAME)/sample1.bz2 \ + $(DISTNAME)/sample2.bz2 \ + $(DISTNAME)/sample3.bz2 \ + $(DISTNAME)/dlltest.c \ + $(DISTNAME)/manual.html \ + $(DISTNAME)/manual.pdf \ + $(DISTNAME)/manual.ps \ + $(DISTNAME)/README \ + $(DISTNAME)/README.COMPILATION.PROBLEMS \ + $(DISTNAME)/README.XML.STUFF \ + $(DISTNAME)/CHANGES \ + $(DISTNAME)/libbz2.def \ + $(DISTNAME)/libbz2.dsp \ + $(DISTNAME)/dlltest.dsp \ + $(DISTNAME)/makefile.msc \ + $(DISTNAME)/Y2K_INFO \ + $(DISTNAME)/unzcrash.c \ + $(DISTNAME)/spewG.c \ + $(DISTNAME)/mk251.c \ + $(DISTNAME)/bzdiff \ + $(DISTNAME)/bzdiff.1 \ + $(DISTNAME)/bzmore \ + $(DISTNAME)/bzmore.1 \ + $(DISTNAME)/bzgrep \ + $(DISTNAME)/bzgrep.1 \ + $(DISTNAME)/Makefile-libbz2_so \ + $(DISTNAME)/bz-common.xsl \ + $(DISTNAME)/bz-fo.xsl \ + $(DISTNAME)/bz-html.xsl \ + $(DISTNAME)/bzip.css \ + $(DISTNAME)/entities.xml \ + $(DISTNAME)/manual.xml \ + $(DISTNAME)/format.pl \ + $(DISTNAME)/xmlproc.sh + gzip -v $(DISTNAME).tar + +# For rebuilding the manual from sources on my SuSE 9.1 box + +MANUAL_SRCS= bz-common.xsl bz-fo.xsl bz-html.xsl bzip.css \ + entities.xml manual.xml + +manual: manual.html manual.ps manual.pdf + +manual.ps: $(MANUAL_SRCS) + ./xmlproc.sh -ps manual.xml + +manual.pdf: $(MANUAL_SRCS) + ./xmlproc.sh -pdf manual.xml + +manual.html: $(MANUAL_SRCS) + ./xmlproc.sh -html manual.xml diff --git a/commands/bzip2-1.0.3/Makefile-libbz2_so b/commands/bzip2-1.0.3/Makefile-libbz2_so new file mode 100644 index 000000000..458c5a135 --- /dev/null +++ b/commands/bzip2-1.0.3/Makefile-libbz2_so @@ -0,0 +1,44 @@ + +# This Makefile builds a shared version of the library, +# libbz2.so.1.0.3, with soname libbz2.so.1.0, +# at least on x86-Linux (RedHat 7.2), +# with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98). +# Please see the README file for some +# important info about building the library like this. + +SHELL=/bin/sh +CC=gcc +BIGFILES=-D_FILE_OFFSET_BITS=64 +CFLAGS=-fpic -fPIC -Wall -Winline -O -g + +OBJS= blocksort.o \ + huffman.o \ + crctable.o \ + randtable.o \ + compress.o \ + decompress.o \ + bzlib.o + +all: $(OBJS) + $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.3 $(OBJS) + $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.3 + rm -f libbz2.so.1.0 + ln -s libbz2.so.1.0.3 libbz2.so.1.0 + +clean: + rm -f $(OBJS) bzip2.o libbz2.so.1.0.3 libbz2.so.1.0 bzip2-shared + +blocksort.o: blocksort.c + $(CC) $(CFLAGS) -c blocksort.c +huffman.o: huffman.c + $(CC) $(CFLAGS) -c huffman.c +crctable.o: crctable.c + $(CC) $(CFLAGS) -c crctable.c +randtable.o: randtable.c + $(CC) $(CFLAGS) -c randtable.c +compress.o: compress.c + $(CC) $(CFLAGS) -c compress.c +decompress.o: decompress.c + $(CC) $(CFLAGS) -c decompress.c +bzlib.o: bzlib.c + $(CC) $(CFLAGS) -c bzlib.c diff --git a/commands/bzip2-1.0.3/README.COMPILATION.PROBLEMS b/commands/bzip2-1.0.3/README.COMPILATION.PROBLEMS new file mode 100644 index 000000000..f1bc396b7 --- /dev/null +++ b/commands/bzip2-1.0.3/README.COMPILATION.PROBLEMS @@ -0,0 +1,39 @@ + +bzip2-1.0.3 should compile without problems on the vast majority of +platforms. Using the supplied Makefile, I've built and tested it +myself for x86-linux and x86_64-linux. With makefile.msc, Visual C++ +6.0 and nmake, you can build a native Win32 version too. Large file +support seems to work correctly on at least alpha-tru64unix and +x86-cygwin32 (on Windows 2000). + +When I say "large file" I mean a file of size 2,147,483,648 (2^31) +bytes or above. Many older OSs can't handle files above this size, +but many newer ones can. Large files are pretty huge -- most files +you'll encounter are not Large Files. + +Earlier versions of bzip2 (0.1, 0.9.0, 0.9.5) compiled on a wide +variety of platforms without difficulty, and I hope this version will +continue in that tradition. However, in order to support large files, +I've had to include the define -D_FILE_OFFSET_BITS=64 in the Makefile. +This can cause problems. + +The technique of adding -D_FILE_OFFSET_BITS=64 to get large file +support is, as far as I know, the Recommended Way to get correct large +file support. For more details, see the Large File Support +Specification, published by the Large File Summit, at + http://ftp.sas.com/standards/large.file + +As a general comment, if you get compilation errors which you think +are related to large file support, try removing the above define from +the Makefile, ie, delete the line + BIGFILES=-D_FILE_OFFSET_BITS=64 +from the Makefile, and do 'make clean ; make'. This will give you a +version of bzip2 without large file support, which, for most +applications, is probably not a problem. + +Alternatively, try some of the platform-specific hints listed below. + +You can use the spewG.c program to generate huge files to test bzip2's +large file support, if you are feeling paranoid. Be aware though that +any compilation problems which affect bzip2 will also affect spewG.c, +alas. diff --git a/commands/bzip2-1.0.3/README.MINIX b/commands/bzip2-1.0.3/README.MINIX new file mode 100644 index 000000000..a03e17d16 --- /dev/null +++ b/commands/bzip2-1.0.3/README.MINIX @@ -0,0 +1,172 @@ +############################################################################### +# Quick installation +############################################################################### + +To build and install bzip into /usr/local, execute the following commands +as user bin: + +make +make install + +To install into another directory use: +make install PREFIX= + +############################################################################### +# bzip 1.0.3 for Minix +############################################################################### +The text below is taken from the original README file. The original file is +available as README.ORIGINAL. + +This is the README for bzip2, a block-sorting file compressor, version +1.0.3. This version is fully compatible with the previous public +releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1 and 1.0.2. + +bzip2-1.0.3 is distributed under a BSD-style license. For details, +see the file LICENSE. + +Complete documentation is available in Postscript form (manual.ps), +PDF (manual.pdf) or html (manual.html). A plain-text version of the +manual page is available as bzip2.txt. A statement about Y2K issues +is now included in the file Y2K_INFO. + + +HOW TO BUILD -- MINIX + +Type `make'. This builds the library libbz2.a and then the +programs bzip2 and bzip2recover. Six self-tests are run. +If the self-tests complete ok, carry on to installation: + +To install in /usr/local/bin, /usr/local/lib, /usr/local/man and + /usr/local/include, type + make install +To install somewhere else, eg, /xxx/yyy/{bin,lib,man,include}, type + make install PREFIX=/xxx/yyy +If you are (justifiably) paranoid and want to see what 'make install' +is going to do, you can first do + make -n install or + make -n install PREFIX=/xxx/yyy respectively. +The -n instructs make to show the commands it would execute, but +not actually execute them. + +VALIDATION + +Correct operation, in the sense that a compressed file can always be +decompressed to reproduce the original, is obviously of paramount +importance. To validate bzip2, I used a modified version of Mark +Nelson's churn program. Churn is an automated test driver which +recursively traverses a directory structure, using bzip2 to compress +and then decompress each file it encounters, and checking that the +decompressed data is the same as the original. + + + +Please read and be aware of the following: + +WARNING: + + This program (attempts to) compress data by performing several + non-trivial transformations on it. Unless you are 100% familiar + with *all* the algorithms contained herein, and with the + consequences of modifying them, you should NOT meddle with the + compression or decompression machinery. Incorrect changes can and + very likely *will* lead to disastrous loss of data. + + +DISCLAIMER: + + I TAKE NO RESPONSIBILITY FOR ANY LOSS OF DATA ARISING FROM THE + USE OF THIS PROGRAM, HOWSOEVER CAUSED. + + Every compression of a file implies an assumption that the + compressed file can be decompressed to reproduce the original. + Great efforts in design, coding and testing have been made to + ensure that this program works correctly. However, the complexity + of the algorithms, and, in particular, the presence of various + special cases in the code which occur with very low but non-zero + probability make it impossible to rule out the possibility of bugs + remaining in the program. DO NOT COMPRESS ANY DATA WITH THIS + PROGRAM UNLESS YOU ARE PREPARED TO ACCEPT THE POSSIBILITY, HOWEVER + SMALL, THAT THE DATA WILL NOT BE RECOVERABLE. + + That is not to say this program is inherently unreliable. Indeed, + I very much hope the opposite is true. bzip2 has been carefully + constructed and extensively tested. + + +PATENTS: + + To the best of my knowledge, bzip2 does not use any patented + algorithms. However, I do not have the resources to carry out + a patent search. Therefore I cannot give any guarantee of the + above statement. + +End of legalities. + + +WHAT'S NEW IN 0.9.0 (as compared to 0.1pl2) ? + + * Approx 10% faster compression, 30% faster decompression + * -t (test mode) is a lot quicker + * Can decompress concatenated compressed files + * Programming interface, so programs can directly read/write .bz2 files + * Less restrictive (BSD-style) licensing + * Flag handling more compatible with GNU gzip + * Much more documentation, i.e., a proper user manual + * Hopefully, improved portability (at least of the library) + +WHAT'S NEW IN 0.9.5 ? + + * Compression speed is much less sensitive to the input + data than in previous versions. Specifically, the very + slow performance caused by repetitive data is fixed. + * Many small improvements in file and flag handling. + * A Y2K statement. + +WHAT'S NEW IN 1.0.0 ? + + See the CHANGES file. + +WHAT'S NEW IN 1.0.2 ? + + See the CHANGES file. + +WHAT'S NEW IN 1.0.3 ? + + See the CHANGES file. + + +I hope you find bzip2 useful. Feel free to contact me at + jseward@bzip.org +if you have any suggestions or queries. Many people mailed me with +comments, suggestions and patches after the releases of bzip-0.15, +bzip-0.21, and bzip2 versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1 and +1.0.2, and the changes in bzip2 are largely a result of this feedback. +I thank you for your comments. + +At least for the time being, bzip2's "home" is (or can be reached via) +http://www.bzip.org + +Julian Seward +jseward@bzip.org + +Cambridge, UK. + +18 July 1996 (version 0.15) +25 August 1996 (version 0.21) + 7 August 1997 (bzip2, version 0.1) +29 August 1997 (bzip2, version 0.1pl2) +23 August 1998 (bzip2, version 0.9.0) + 8 June 1999 (bzip2, version 0.9.5) + 4 Sept 1999 (bzip2, version 0.9.5d) + 5 May 2000 (bzip2, version 1.0pre8) +30 December 2001 (bzip2, version 1.0.2pre1) +15 February 2005 (bzip2, version 1.0.3) + +############################################################################### +# Changes to the source of version 1.0.3 +############################################################################### +- Changed default installation to /usr/local +- Adjusted Makefile to separate testing from building, to allow chmem in + between +- Adjusted invocation of ar, as Minix ar does not support -q, even though the + documentation says it does diff --git a/commands/bzip2-1.0.3/README.ORIGINAL b/commands/bzip2-1.0.3/README.ORIGINAL new file mode 100644 index 000000000..1aff4487e --- /dev/null +++ b/commands/bzip2-1.0.3/README.ORIGINAL @@ -0,0 +1,185 @@ + +This is the README for bzip2, a block-sorting file compressor, version +1.0.3. This version is fully compatible with the previous public +releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1 and 1.0.2. + +bzip2-1.0.3 is distributed under a BSD-style license. For details, +see the file LICENSE. + +Complete documentation is available in Postscript form (manual.ps), +PDF (manual.pdf) or html (manual.html). A plain-text version of the +manual page is available as bzip2.txt. A statement about Y2K issues +is now included in the file Y2K_INFO. + + +HOW TO BUILD -- UNIX + +Type `make'. This builds the library libbz2.a and then the +programs bzip2 and bzip2recover. Six self-tests are run. +If the self-tests complete ok, carry on to installation: + +To install in /usr/bin, /usr/lib, /usr/man and /usr/include, type + make install +To install somewhere else, eg, /xxx/yyy/{bin,lib,man,include}, type + make install PREFIX=/xxx/yyy +If you are (justifiably) paranoid and want to see what 'make install' +is going to do, you can first do + make -n install or + make -n install PREFIX=/xxx/yyy respectively. +The -n instructs make to show the commands it would execute, but +not actually execute them. + + +HOW TO BUILD -- UNIX, shared library libbz2.so. + +Do 'make -f Makefile-libbz2_so'. This Makefile seems to work for +Linux-ELF (RedHat 7.2 on an x86 box), with gcc. I make no claims +that it works for any other platform, though I suspect it probably +will work for most platforms employing both ELF and gcc. + +bzip2-shared, a client of the shared library, is also built, but not +self-tested. So I suggest you also build using the normal Makefile, +since that conducts a self-test. A second reason to prefer the +version statically linked to the library is that, on x86 platforms, +building shared objects makes a valuable register (%ebx) unavailable +to gcc, resulting in a slowdown of 10%-20%, at least for bzip2. + +Important note for people upgrading .so's from 0.9.0/0.9.5 to version +1.0.X. All the functions in the library have been renamed, from (eg) +bzCompress to BZ2_bzCompress, to avoid namespace pollution. +Unfortunately this means that the libbz2.so created by +Makefile-libbz2_so will not work with any program which used an older +version of the library. Sorry. I do encourage library clients to +make the effort to upgrade to use version 1.0, since it is both faster +and more robust than previous versions. + + +HOW TO BUILD -- Windows 95, NT, DOS, Mac, etc. + +It's difficult for me to support compilation on all these platforms. +My approach is to collect binaries for these platforms, and put them +on the master web page (http://sources.redhat.com/bzip2). Look there. +However (FWIW), bzip2-1.0.X is very standard ANSI C and should compile +unmodified with MS Visual C. If you have difficulties building, you +might want to read README.COMPILATION.PROBLEMS. + +At least using MS Visual C++ 6, you can build from the unmodified +sources by issuing, in a command shell: + nmake -f makefile.msc +(you may need to first run the MSVC-provided script VCVARS32.BAT + so as to set up paths to the MSVC tools correctly). + + +VALIDATION + +Correct operation, in the sense that a compressed file can always be +decompressed to reproduce the original, is obviously of paramount +importance. To validate bzip2, I used a modified version of Mark +Nelson's churn program. Churn is an automated test driver which +recursively traverses a directory structure, using bzip2 to compress +and then decompress each file it encounters, and checking that the +decompressed data is the same as the original. + + + +Please read and be aware of the following: + +WARNING: + + This program (attempts to) compress data by performing several + non-trivial transformations on it. Unless you are 100% familiar + with *all* the algorithms contained herein, and with the + consequences of modifying them, you should NOT meddle with the + compression or decompression machinery. Incorrect changes can and + very likely *will* lead to disastrous loss of data. + + +DISCLAIMER: + + I TAKE NO RESPONSIBILITY FOR ANY LOSS OF DATA ARISING FROM THE + USE OF THIS PROGRAM, HOWSOEVER CAUSED. + + Every compression of a file implies an assumption that the + compressed file can be decompressed to reproduce the original. + Great efforts in design, coding and testing have been made to + ensure that this program works correctly. However, the complexity + of the algorithms, and, in particular, the presence of various + special cases in the code which occur with very low but non-zero + probability make it impossible to rule out the possibility of bugs + remaining in the program. DO NOT COMPRESS ANY DATA WITH THIS + PROGRAM UNLESS YOU ARE PREPARED TO ACCEPT THE POSSIBILITY, HOWEVER + SMALL, THAT THE DATA WILL NOT BE RECOVERABLE. + + That is not to say this program is inherently unreliable. Indeed, + I very much hope the opposite is true. bzip2 has been carefully + constructed and extensively tested. + + +PATENTS: + + To the best of my knowledge, bzip2 does not use any patented + algorithms. However, I do not have the resources to carry out + a patent search. Therefore I cannot give any guarantee of the + above statement. + +End of legalities. + + +WHAT'S NEW IN 0.9.0 (as compared to 0.1pl2) ? + + * Approx 10% faster compression, 30% faster decompression + * -t (test mode) is a lot quicker + * Can decompress concatenated compressed files + * Programming interface, so programs can directly read/write .bz2 files + * Less restrictive (BSD-style) licensing + * Flag handling more compatible with GNU gzip + * Much more documentation, i.e., a proper user manual + * Hopefully, improved portability (at least of the library) + +WHAT'S NEW IN 0.9.5 ? + + * Compression speed is much less sensitive to the input + data than in previous versions. Specifically, the very + slow performance caused by repetitive data is fixed. + * Many small improvements in file and flag handling. + * A Y2K statement. + +WHAT'S NEW IN 1.0.0 ? + + See the CHANGES file. + +WHAT'S NEW IN 1.0.2 ? + + See the CHANGES file. + +WHAT'S NEW IN 1.0.3 ? + + See the CHANGES file. + + +I hope you find bzip2 useful. Feel free to contact me at + jseward@bzip.org +if you have any suggestions or queries. Many people mailed me with +comments, suggestions and patches after the releases of bzip-0.15, +bzip-0.21, and bzip2 versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1 and +1.0.2, and the changes in bzip2 are largely a result of this feedback. +I thank you for your comments. + +At least for the time being, bzip2's "home" is (or can be reached via) +http://www.bzip.org + +Julian Seward +jseward@bzip.org + +Cambridge, UK. + +18 July 1996 (version 0.15) +25 August 1996 (version 0.21) + 7 August 1997 (bzip2, version 0.1) +29 August 1997 (bzip2, version 0.1pl2) +23 August 1998 (bzip2, version 0.9.0) + 8 June 1999 (bzip2, version 0.9.5) + 4 Sept 1999 (bzip2, version 0.9.5d) + 5 May 2000 (bzip2, version 1.0pre8) +30 December 2001 (bzip2, version 1.0.2pre1) +15 February 2005 (bzip2, version 1.0.3) diff --git a/commands/bzip2-1.0.3/README.XML.STUFF b/commands/bzip2-1.0.3/README.XML.STUFF new file mode 100644 index 000000000..0ff209f44 --- /dev/null +++ b/commands/bzip2-1.0.3/README.XML.STUFF @@ -0,0 +1,31 @@ +The script xmlproc.sh takes an xml file as input, +and processes it to create .pdf, .html or .ps output. +It uses format.pl, a perl script to format
 blocks nicely,
+ and add CDATA tags so writers do not have to use eg. < 
+
+The file "entities.xml" must be edited to reflect current
+version, year, etc.
+
+
+Usage:
+
+  xmlproc.sh -v manual.xml
+  Validates an xml file to ensure no dtd-compliance errors
+
+  xmlproc.sh -html manual.xml
+  Output: manual.html
+
+  xmlproc.sh -pdf manual.xml
+  Output: manual.pdf
+
+  xmlproc.sh -ps manual.xml
+  Output: manual.ps
+
+
+Notum bene: 
+- pdfxmltex barfs if given a filename with an underscore in it
+
+- xmltex won't work yet - there's a bug in passivetex
+    which we are all waiting for Sebastian to fix.
+  So we are going the xml -> pdf -> ps route for the time being,
+    using pdfxmltex.
diff --git a/commands/bzip2-1.0.3/Y2K_INFO b/commands/bzip2-1.0.3/Y2K_INFO
new file mode 100644
index 000000000..55fd56a2e
--- /dev/null
+++ b/commands/bzip2-1.0.3/Y2K_INFO
@@ -0,0 +1,34 @@
+
+Y2K status of bzip2 and libbzip2, versions 0.1, 0.9.0 and 0.9.5
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Informally speaking:
+   bzip2 is a compression program built on top of libbzip2, 
+   a library which does the real work of compression and 
+   decompression.  As far as I am aware, libbzip2 does not have 
+   any date-related code at all.
+
+   bzip2 itself copies dates from source to destination files 
+   when compressing or decompressing, using the 'stat' and 'utime' 
+   UNIX system calls.  It doesn't examine, manipulate or store the 
+   dates in any way.  So as far as I can see, there shouldn't be any 
+   problem with bzip2 providing 'stat' and 'utime' work correctly 
+   on your system.
+
+   On non-unix platforms (those for which BZ_UNIX in bzip2.c is
+   not set to 1), bzip2 doesn't even do the date copying.
+
+   Overall, informally speaking, I don't think bzip2 or libbzip2 
+   have a Y2K problem.
+
+Formally speaking:
+   I am not prepared to offer you any assurance whatsoever 
+   regarding Y2K issues in my software.  You alone assume the 
+   entire risk of using the software.  The disclaimer of liability 
+   in the LICENSE file in the bzip2 source distribution continues 
+   to apply on this issue as with every other issue pertaining 
+   to the software.
+
+Julian Seward
+Cambridge, UK
+25 August 1999
diff --git a/commands/bzip2-1.0.3/blocksort.c b/commands/bzip2-1.0.3/blocksort.c
new file mode 100644
index 000000000..33ec9f5dc
--- /dev/null
+++ b/commands/bzip2-1.0.3/blocksort.c
@@ -0,0 +1,1141 @@
+
+/*-------------------------------------------------------------*/
+/*--- Block sorting machinery                               ---*/
+/*---                                           blocksort.c ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+
+  To get some idea how the block sorting algorithms in this file 
+  work, read my paper 
+     On the Performance of BWT Sorting Algorithms
+  in Proceedings of the IEEE Data Compression Conference 2000,
+  Snowbird, Utah, USA, 27-30 March 2000.  The main sort in this
+  file implements the algorithm called  cache  in the paper.
+--*/
+
+
+#include "bzlib_private.h"
+
+/*---------------------------------------------*/
+/*--- Fallback O(N log(N)^2) sorting        ---*/
+/*--- algorithm, for repetitive blocks      ---*/
+/*---------------------------------------------*/
+
+/*---------------------------------------------*/
+static 
+__inline__
+void fallbackSimpleSort ( UInt32* fmap, 
+                          UInt32* eclass, 
+                          Int32   lo, 
+                          Int32   hi )
+{
+   Int32 i, j, tmp;
+   UInt32 ec_tmp;
+
+   if (lo == hi) return;
+
+   if (hi - lo > 3) {
+      for ( i = hi-4; i >= lo; i-- ) {
+         tmp = fmap[i];
+         ec_tmp = eclass[tmp];
+         for ( j = i+4; j <= hi && ec_tmp > eclass[fmap[j]]; j += 4 )
+            fmap[j-4] = fmap[j];
+         fmap[j-4] = tmp;
+      }
+   }
+
+   for ( i = hi-1; i >= lo; i-- ) {
+      tmp = fmap[i];
+      ec_tmp = eclass[tmp];
+      for ( j = i+1; j <= hi && ec_tmp > eclass[fmap[j]]; j++ )
+         fmap[j-1] = fmap[j];
+      fmap[j-1] = tmp;
+   }
+}
+
+
+/*---------------------------------------------*/
+#define fswap(zz1, zz2) \
+   { Int32 zztmp = zz1; zz1 = zz2; zz2 = zztmp; }
+
+#define fvswap(zzp1, zzp2, zzn)       \
+{                                     \
+   Int32 yyp1 = (zzp1);               \
+   Int32 yyp2 = (zzp2);               \
+   Int32 yyn  = (zzn);                \
+   while (yyn > 0) {                  \
+      fswap(fmap[yyp1], fmap[yyp2]);  \
+      yyp1++; yyp2++; yyn--;          \
+   }                                  \
+}
+
+
+#define fmin(a,b) ((a) < (b)) ? (a) : (b)
+
+#define fpush(lz,hz) { stackLo[sp] = lz; \
+                       stackHi[sp] = hz; \
+                       sp++; }
+
+#define fpop(lz,hz) { sp--;              \
+                      lz = stackLo[sp];  \
+                      hz = stackHi[sp]; }
+
+#define FALLBACK_QSORT_SMALL_THRESH 10
+#define FALLBACK_QSORT_STACK_SIZE   100
+
+
+static
+void fallbackQSort3 ( UInt32* fmap, 
+                      UInt32* eclass,
+                      Int32   loSt, 
+                      Int32   hiSt )
+{
+   Int32 unLo, unHi, ltLo, gtHi, n, m;
+   Int32 sp, lo, hi;
+   UInt32 med, r, r3;
+   Int32 stackLo[FALLBACK_QSORT_STACK_SIZE];
+   Int32 stackHi[FALLBACK_QSORT_STACK_SIZE];
+
+   r = 0;
+
+   sp = 0;
+   fpush ( loSt, hiSt );
+
+   while (sp > 0) {
+
+      AssertH ( sp < FALLBACK_QSORT_STACK_SIZE, 1004 );
+
+      fpop ( lo, hi );
+      if (hi - lo < FALLBACK_QSORT_SMALL_THRESH) {
+         fallbackSimpleSort ( fmap, eclass, lo, hi );
+         continue;
+      }
+
+      /* Random partitioning.  Median of 3 sometimes fails to
+         avoid bad cases.  Median of 9 seems to help but 
+         looks rather expensive.  This too seems to work but
+         is cheaper.  Guidance for the magic constants 
+         7621 and 32768 is taken from Sedgewick's algorithms
+         book, chapter 35.
+      */
+      r = ((r * 7621) + 1) % 32768;
+      r3 = r % 3;
+      if (r3 == 0) med = eclass[fmap[lo]]; else
+      if (r3 == 1) med = eclass[fmap[(lo+hi)>>1]]; else
+                   med = eclass[fmap[hi]];
+
+      unLo = ltLo = lo;
+      unHi = gtHi = hi;
+
+      while (1) {
+         while (1) {
+            if (unLo > unHi) break;
+            n = (Int32)eclass[fmap[unLo]] - (Int32)med;
+            if (n == 0) { 
+               fswap(fmap[unLo], fmap[ltLo]); 
+               ltLo++; unLo++; 
+               continue; 
+            };
+            if (n > 0) break;
+            unLo++;
+         }
+         while (1) {
+            if (unLo > unHi) break;
+            n = (Int32)eclass[fmap[unHi]] - (Int32)med;
+            if (n == 0) { 
+               fswap(fmap[unHi], fmap[gtHi]); 
+               gtHi--; unHi--; 
+               continue; 
+            };
+            if (n < 0) break;
+            unHi--;
+         }
+         if (unLo > unHi) break;
+         fswap(fmap[unLo], fmap[unHi]); unLo++; unHi--;
+      }
+
+      AssertD ( unHi == unLo-1, "fallbackQSort3(2)" );
+
+      if (gtHi < ltLo) continue;
+
+      n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
+      m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
+
+      n = lo + unLo - ltLo - 1;
+      m = hi - (gtHi - unHi) + 1;
+
+      if (n - lo > hi - m) {
+         fpush ( lo, n );
+         fpush ( m, hi );
+      } else {
+         fpush ( m, hi );
+         fpush ( lo, n );
+      }
+   }
+}
+
+#undef fmin
+#undef fpush
+#undef fpop
+#undef fswap
+#undef fvswap
+#undef FALLBACK_QSORT_SMALL_THRESH
+#undef FALLBACK_QSORT_STACK_SIZE
+
+
+/*---------------------------------------------*/
+/* Pre:
+      nblock > 0
+      eclass exists for [0 .. nblock-1]
+      ((UChar*)eclass) [0 .. nblock-1] holds block
+      ptr exists for [0 .. nblock-1]
+
+   Post:
+      ((UChar*)eclass) [0 .. nblock-1] holds block
+      All other areas of eclass destroyed
+      fmap [0 .. nblock-1] holds sorted order
+      bhtab [ 0 .. 2+(nblock/32) ] destroyed
+*/
+
+#define       SET_BH(zz)  bhtab[(zz) >> 5] |= (1 << ((zz) & 31))
+#define     CLEAR_BH(zz)  bhtab[(zz) >> 5] &= ~(1 << ((zz) & 31))
+#define     ISSET_BH(zz)  (bhtab[(zz) >> 5] & (1 << ((zz) & 31)))
+#define      WORD_BH(zz)  bhtab[(zz) >> 5]
+#define UNALIGNED_BH(zz)  ((zz) & 0x01f)
+
+static
+void fallbackSort ( UInt32* fmap, 
+                    UInt32* eclass, 
+                    UInt32* bhtab,
+                    Int32   nblock,
+                    Int32   verb )
+{
+   Int32 ftab[257];
+   Int32 ftabCopy[256];
+   Int32 H, i, j, k, l, r, cc, cc1;
+   Int32 nNotDone;
+   Int32 nBhtab;
+   UChar* eclass8 = (UChar*)eclass;
+
+   /*--
+      Initial 1-char radix sort to generate
+      initial fmap and initial BH bits.
+   --*/
+   if (verb >= 4)
+      VPrintf0 ( "        bucket sorting ...\n" );
+   for (i = 0; i < 257;    i++) ftab[i] = 0;
+   for (i = 0; i < nblock; i++) ftab[eclass8[i]]++;
+   for (i = 0; i < 256;    i++) ftabCopy[i] = ftab[i];
+   for (i = 1; i < 257;    i++) ftab[i] += ftab[i-1];
+
+   for (i = 0; i < nblock; i++) {
+      j = eclass8[i];
+      k = ftab[j] - 1;
+      ftab[j] = k;
+      fmap[k] = i;
+   }
+
+   nBhtab = 2 + (nblock / 32);
+   for (i = 0; i < nBhtab; i++) bhtab[i] = 0;
+   for (i = 0; i < 256; i++) SET_BH(ftab[i]);
+
+   /*--
+      Inductively refine the buckets.  Kind-of an
+      "exponential radix sort" (!), inspired by the
+      Manber-Myers suffix array construction algorithm.
+   --*/
+
+   /*-- set sentinel bits for block-end detection --*/
+   for (i = 0; i < 32; i++) { 
+      SET_BH(nblock + 2*i);
+      CLEAR_BH(nblock + 2*i + 1);
+   }
+
+   /*-- the log(N) loop --*/
+   H = 1;
+   while (1) {
+
+      if (verb >= 4) 
+         VPrintf1 ( "        depth %6d has ", H );
+
+      j = 0;
+      for (i = 0; i < nblock; i++) {
+         if (ISSET_BH(i)) j = i;
+         k = fmap[i] - H; if (k < 0) k += nblock;
+         eclass[k] = j;
+      }
+
+      nNotDone = 0;
+      r = -1;
+      while (1) {
+
+	 /*-- find the next non-singleton bucket --*/
+         k = r + 1;
+         while (ISSET_BH(k) && UNALIGNED_BH(k)) k++;
+         if (ISSET_BH(k)) {
+            while (WORD_BH(k) == 0xffffffff) k += 32;
+            while (ISSET_BH(k)) k++;
+         }
+         l = k - 1;
+         if (l >= nblock) break;
+         while (!ISSET_BH(k) && UNALIGNED_BH(k)) k++;
+         if (!ISSET_BH(k)) {
+            while (WORD_BH(k) == 0x00000000) k += 32;
+            while (!ISSET_BH(k)) k++;
+         }
+         r = k - 1;
+         if (r >= nblock) break;
+
+         /*-- now [l, r] bracket current bucket --*/
+         if (r > l) {
+            nNotDone += (r - l + 1);
+            fallbackQSort3 ( fmap, eclass, l, r );
+
+            /*-- scan bucket and generate header bits-- */
+            cc = -1;
+            for (i = l; i <= r; i++) {
+               cc1 = eclass[fmap[i]];
+               if (cc != cc1) { SET_BH(i); cc = cc1; };
+            }
+         }
+      }
+
+      if (verb >= 4) 
+         VPrintf1 ( "%6d unresolved strings\n", nNotDone );
+
+      H *= 2;
+      if (H > nblock || nNotDone == 0) break;
+   }
+
+   /*-- 
+      Reconstruct the original block in
+      eclass8 [0 .. nblock-1], since the
+      previous phase destroyed it.
+   --*/
+   if (verb >= 4)
+      VPrintf0 ( "        reconstructing block ...\n" );
+   j = 0;
+   for (i = 0; i < nblock; i++) {
+      while (ftabCopy[j] == 0) j++;
+      ftabCopy[j]--;
+      eclass8[fmap[i]] = (UChar)j;
+   }
+   AssertH ( j < 256, 1005 );
+}
+
+#undef       SET_BH
+#undef     CLEAR_BH
+#undef     ISSET_BH
+#undef      WORD_BH
+#undef UNALIGNED_BH
+
+
+/*---------------------------------------------*/
+/*--- The main, O(N^2 log(N)) sorting       ---*/
+/*--- algorithm.  Faster for "normal"       ---*/
+/*--- non-repetitive blocks.                ---*/
+/*---------------------------------------------*/
+
+/*---------------------------------------------*/
+static
+__inline__
+Bool mainGtU ( UInt32  i1, 
+               UInt32  i2,
+               UChar*  block, 
+               UInt16* quadrant,
+               UInt32  nblock,
+               Int32*  budget )
+{
+   Int32  k;
+   UChar  c1, c2;
+   UInt16 s1, s2;
+
+   AssertD ( i1 != i2, "mainGtU" );
+   /* 1 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 2 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 3 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 4 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 5 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 6 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 7 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 8 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 9 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 10 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 11 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+   /* 12 */
+   c1 = block[i1]; c2 = block[i2];
+   if (c1 != c2) return (c1 > c2);
+   i1++; i2++;
+
+   k = nblock + 8;
+
+   do {
+      /* 1 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+      /* 2 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+      /* 3 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+      /* 4 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+      /* 5 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+      /* 6 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+      /* 7 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+      /* 8 */
+      c1 = block[i1]; c2 = block[i2];
+      if (c1 != c2) return (c1 > c2);
+      s1 = quadrant[i1]; s2 = quadrant[i2];
+      if (s1 != s2) return (s1 > s2);
+      i1++; i2++;
+
+      if (i1 >= nblock) i1 -= nblock;
+      if (i2 >= nblock) i2 -= nblock;
+
+      k -= 8;
+      (*budget)--;
+   }
+      while (k >= 0);
+
+   return False;
+}
+
+
+/*---------------------------------------------*/
+/*--
+   Knuth's increments seem to work better
+   than Incerpi-Sedgewick here.  Possibly
+   because the number of elems to sort is
+   usually small, typically <= 20.
+--*/
+static
+Int32 incs[14] = { 1, 4, 13, 40, 121, 364, 1093, 3280,
+                   9841, 29524, 88573, 265720,
+                   797161, 2391484 };
+
+static
+void mainSimpleSort ( UInt32* ptr,
+                      UChar*  block,
+                      UInt16* quadrant,
+                      Int32   nblock,
+                      Int32   lo, 
+                      Int32   hi, 
+                      Int32   d,
+                      Int32*  budget )
+{
+   Int32 i, j, h, bigN, hp;
+   UInt32 v;
+
+   bigN = hi - lo + 1;
+   if (bigN < 2) return;
+
+   hp = 0;
+   while (incs[hp] < bigN) hp++;
+   hp--;
+
+   for (; hp >= 0; hp--) {
+      h = incs[hp];
+
+      i = lo + h;
+      while (True) {
+
+         /*-- copy 1 --*/
+         if (i > hi) break;
+         v = ptr[i];
+         j = i;
+         while ( mainGtU ( 
+                    ptr[j-h]+d, v+d, block, quadrant, nblock, budget 
+                 ) ) {
+            ptr[j] = ptr[j-h];
+            j = j - h;
+            if (j <= (lo + h - 1)) break;
+         }
+         ptr[j] = v;
+         i++;
+
+         /*-- copy 2 --*/
+         if (i > hi) break;
+         v = ptr[i];
+         j = i;
+         while ( mainGtU ( 
+                    ptr[j-h]+d, v+d, block, quadrant, nblock, budget 
+                 ) ) {
+            ptr[j] = ptr[j-h];
+            j = j - h;
+            if (j <= (lo + h - 1)) break;
+         }
+         ptr[j] = v;
+         i++;
+
+         /*-- copy 3 --*/
+         if (i > hi) break;
+         v = ptr[i];
+         j = i;
+         while ( mainGtU ( 
+                    ptr[j-h]+d, v+d, block, quadrant, nblock, budget 
+                 ) ) {
+            ptr[j] = ptr[j-h];
+            j = j - h;
+            if (j <= (lo + h - 1)) break;
+         }
+         ptr[j] = v;
+         i++;
+
+         if (*budget < 0) return;
+      }
+   }
+}
+
+
+/*---------------------------------------------*/
+/*--
+   The following is an implementation of
+   an elegant 3-way quicksort for strings,
+   described in a paper "Fast Algorithms for
+   Sorting and Searching Strings", by Robert
+   Sedgewick and Jon L. Bentley.
+--*/
+
+#define mswap(zz1, zz2) \
+   { Int32 zztmp = zz1; zz1 = zz2; zz2 = zztmp; }
+
+#define mvswap(zzp1, zzp2, zzn)       \
+{                                     \
+   Int32 yyp1 = (zzp1);               \
+   Int32 yyp2 = (zzp2);               \
+   Int32 yyn  = (zzn);                \
+   while (yyn > 0) {                  \
+      mswap(ptr[yyp1], ptr[yyp2]);    \
+      yyp1++; yyp2++; yyn--;          \
+   }                                  \
+}
+
+static 
+__inline__
+UChar mmed3 ( UChar a, UChar b, UChar c )
+{
+   UChar t;
+   if (a > b) { t = a; a = b; b = t; };
+   if (b > c) { 
+      b = c;
+      if (a > b) b = a;
+   }
+   return b;
+}
+
+#define mmin(a,b) ((a) < (b)) ? (a) : (b)
+
+#define mpush(lz,hz,dz) { stackLo[sp] = lz; \
+                          stackHi[sp] = hz; \
+                          stackD [sp] = dz; \
+                          sp++; }
+
+#define mpop(lz,hz,dz) { sp--;             \
+                         lz = stackLo[sp]; \
+                         hz = stackHi[sp]; \
+                         dz = stackD [sp]; }
+
+
+#define mnextsize(az) (nextHi[az]-nextLo[az])
+
+#define mnextswap(az,bz)                                        \
+   { Int32 tz;                                                  \
+     tz = nextLo[az]; nextLo[az] = nextLo[bz]; nextLo[bz] = tz; \
+     tz = nextHi[az]; nextHi[az] = nextHi[bz]; nextHi[bz] = tz; \
+     tz = nextD [az]; nextD [az] = nextD [bz]; nextD [bz] = tz; }
+
+
+#define MAIN_QSORT_SMALL_THRESH 20
+#define MAIN_QSORT_DEPTH_THRESH (BZ_N_RADIX + BZ_N_QSORT)
+#define MAIN_QSORT_STACK_SIZE 100
+
+static
+void mainQSort3 ( UInt32* ptr,
+                  UChar*  block,
+                  UInt16* quadrant,
+                  Int32   nblock,
+                  Int32   loSt, 
+                  Int32   hiSt, 
+                  Int32   dSt,
+                  Int32*  budget )
+{
+   Int32 unLo, unHi, ltLo, gtHi, n, m, med;
+   Int32 sp, lo, hi, d;
+
+   Int32 stackLo[MAIN_QSORT_STACK_SIZE];
+   Int32 stackHi[MAIN_QSORT_STACK_SIZE];
+   Int32 stackD [MAIN_QSORT_STACK_SIZE];
+
+   Int32 nextLo[3];
+   Int32 nextHi[3];
+   Int32 nextD [3];
+
+   sp = 0;
+   mpush ( loSt, hiSt, dSt );
+
+   while (sp > 0) {
+
+      AssertH ( sp < MAIN_QSORT_STACK_SIZE, 1001 );
+
+      mpop ( lo, hi, d );
+      if (hi - lo < MAIN_QSORT_SMALL_THRESH || 
+          d > MAIN_QSORT_DEPTH_THRESH) {
+         mainSimpleSort ( ptr, block, quadrant, nblock, lo, hi, d, budget );
+         if (*budget < 0) return;
+         continue;
+      }
+
+      med = (Int32) 
+            mmed3 ( block[ptr[ lo         ]+d],
+                    block[ptr[ hi         ]+d],
+                    block[ptr[ (lo+hi)>>1 ]+d] );
+
+      unLo = ltLo = lo;
+      unHi = gtHi = hi;
+
+      while (True) {
+         while (True) {
+            if (unLo > unHi) break;
+            n = ((Int32)block[ptr[unLo]+d]) - med;
+            if (n == 0) { 
+               mswap(ptr[unLo], ptr[ltLo]); 
+               ltLo++; unLo++; continue; 
+            };
+            if (n >  0) break;
+            unLo++;
+         }
+         while (True) {
+            if (unLo > unHi) break;
+            n = ((Int32)block[ptr[unHi]+d]) - med;
+            if (n == 0) { 
+               mswap(ptr[unHi], ptr[gtHi]); 
+               gtHi--; unHi--; continue; 
+            };
+            if (n <  0) break;
+            unHi--;
+         }
+         if (unLo > unHi) break;
+         mswap(ptr[unLo], ptr[unHi]); unLo++; unHi--;
+      }
+
+      AssertD ( unHi == unLo-1, "mainQSort3(2)" );
+
+      if (gtHi < ltLo) {
+         mpush(lo, hi, d+1 );
+         continue;
+      }
+
+      n = mmin(ltLo-lo, unLo-ltLo); mvswap(lo, unLo-n, n);
+      m = mmin(hi-gtHi, gtHi-unHi); mvswap(unLo, hi-m+1, m);
+
+      n = lo + unLo - ltLo - 1;
+      m = hi - (gtHi - unHi) + 1;
+
+      nextLo[0] = lo;  nextHi[0] = n;   nextD[0] = d;
+      nextLo[1] = m;   nextHi[1] = hi;  nextD[1] = d;
+      nextLo[2] = n+1; nextHi[2] = m-1; nextD[2] = d+1;
+
+      if (mnextsize(0) < mnextsize(1)) mnextswap(0,1);
+      if (mnextsize(1) < mnextsize(2)) mnextswap(1,2);
+      if (mnextsize(0) < mnextsize(1)) mnextswap(0,1);
+
+      AssertD (mnextsize(0) >= mnextsize(1), "mainQSort3(8)" );
+      AssertD (mnextsize(1) >= mnextsize(2), "mainQSort3(9)" );
+
+      mpush (nextLo[0], nextHi[0], nextD[0]);
+      mpush (nextLo[1], nextHi[1], nextD[1]);
+      mpush (nextLo[2], nextHi[2], nextD[2]);
+   }
+}
+
+#undef mswap
+#undef mvswap
+#undef mpush
+#undef mpop
+#undef mmin
+#undef mnextsize
+#undef mnextswap
+#undef MAIN_QSORT_SMALL_THRESH
+#undef MAIN_QSORT_DEPTH_THRESH
+#undef MAIN_QSORT_STACK_SIZE
+
+
+/*---------------------------------------------*/
+/* Pre:
+      nblock > N_OVERSHOOT
+      block32 exists for [0 .. nblock-1 +N_OVERSHOOT]
+      ((UChar*)block32) [0 .. nblock-1] holds block
+      ptr exists for [0 .. nblock-1]
+
+   Post:
+      ((UChar*)block32) [0 .. nblock-1] holds block
+      All other areas of block32 destroyed
+      ftab [0 .. 65536 ] destroyed
+      ptr [0 .. nblock-1] holds sorted order
+      if (*budget < 0), sorting was abandoned
+*/
+
+#define BIGFREQ(b) (ftab[((b)+1) << 8] - ftab[(b) << 8])
+#define SETMASK (1 << 21)
+#define CLEARMASK (~(SETMASK))
+
+static
+void mainSort ( UInt32* ptr, 
+                UChar*  block,
+                UInt16* quadrant, 
+                UInt32* ftab,
+                Int32   nblock,
+                Int32   verb,
+                Int32*  budget )
+{
+   Int32  i, j, k, ss, sb;
+   Int32  runningOrder[256];
+   Bool   bigDone[256];
+   Int32  copyStart[256];
+   Int32  copyEnd  [256];
+   UChar  c1;
+   Int32  numQSorted;
+   UInt16 s;
+   if (verb >= 4) VPrintf0 ( "        main sort initialise ...\n" );
+
+   /*-- set up the 2-byte frequency table --*/
+   for (i = 65536; i >= 0; i--) ftab[i] = 0;
+
+   j = block[0] << 8;
+   i = nblock-1;
+   for (; i >= 3; i -= 4) {
+      quadrant[i] = 0;
+      j = (j >> 8) | ( ((UInt16)block[i]) << 8);
+      ftab[j]++;
+      quadrant[i-1] = 0;
+      j = (j >> 8) | ( ((UInt16)block[i-1]) << 8);
+      ftab[j]++;
+      quadrant[i-2] = 0;
+      j = (j >> 8) | ( ((UInt16)block[i-2]) << 8);
+      ftab[j]++;
+      quadrant[i-3] = 0;
+      j = (j >> 8) | ( ((UInt16)block[i-3]) << 8);
+      ftab[j]++;
+   }
+   for (; i >= 0; i--) {
+      quadrant[i] = 0;
+      j = (j >> 8) | ( ((UInt16)block[i]) << 8);
+      ftab[j]++;
+   }
+
+   /*-- (emphasises close relationship of block & quadrant) --*/
+   for (i = 0; i < BZ_N_OVERSHOOT; i++) {
+      block   [nblock+i] = block[i];
+      quadrant[nblock+i] = 0;
+   }
+
+   if (verb >= 4) VPrintf0 ( "        bucket sorting ...\n" );
+
+   /*-- Complete the initial radix sort --*/
+   for (i = 1; i <= 65536; i++) ftab[i] += ftab[i-1];
+
+   s = block[0] << 8;
+   i = nblock-1;
+   for (; i >= 3; i -= 4) {
+      s = (s >> 8) | (block[i] << 8);
+      j = ftab[s] -1;
+      ftab[s] = j;
+      ptr[j] = i;
+      s = (s >> 8) | (block[i-1] << 8);
+      j = ftab[s] -1;
+      ftab[s] = j;
+      ptr[j] = i-1;
+      s = (s >> 8) | (block[i-2] << 8);
+      j = ftab[s] -1;
+      ftab[s] = j;
+      ptr[j] = i-2;
+      s = (s >> 8) | (block[i-3] << 8);
+      j = ftab[s] -1;
+      ftab[s] = j;
+      ptr[j] = i-3;
+   }
+   for (; i >= 0; i--) {
+      s = (s >> 8) | (block[i] << 8);
+      j = ftab[s] -1;
+      ftab[s] = j;
+      ptr[j] = i;
+   }
+
+   /*--
+      Now ftab contains the first loc of every small bucket.
+      Calculate the running order, from smallest to largest
+      big bucket.
+   --*/
+   for (i = 0; i <= 255; i++) {
+      bigDone     [i] = False;
+      runningOrder[i] = i;
+   }
+
+   {
+      Int32 vv;
+      Int32 h = 1;
+      do h = 3 * h + 1; while (h <= 256);
+      do {
+         h = h / 3;
+         for (i = h; i <= 255; i++) {
+            vv = runningOrder[i];
+            j = i;
+            while ( BIGFREQ(runningOrder[j-h]) > BIGFREQ(vv) ) {
+               runningOrder[j] = runningOrder[j-h];
+               j = j - h;
+               if (j <= (h - 1)) goto zero;
+            }
+            zero:
+            runningOrder[j] = vv;
+         }
+      } while (h != 1);
+   }
+
+   /*--
+      The main sorting loop.
+   --*/
+
+   numQSorted = 0;
+
+   for (i = 0; i <= 255; i++) {
+
+      /*--
+         Process big buckets, starting with the least full.
+         Basically this is a 3-step process in which we call
+         mainQSort3 to sort the small buckets [ss, j], but
+         also make a big effort to avoid the calls if we can.
+      --*/
+      ss = runningOrder[i];
+
+      /*--
+         Step 1:
+         Complete the big bucket [ss] by quicksorting
+         any unsorted small buckets [ss, j], for j != ss.  
+         Hopefully previous pointer-scanning phases have already
+         completed many of the small buckets [ss, j], so
+         we don't have to sort them at all.
+      --*/
+      for (j = 0; j <= 255; j++) {
+         if (j != ss) {
+            sb = (ss << 8) + j;
+            if ( ! (ftab[sb] & SETMASK) ) {
+               Int32 lo = ftab[sb]   & CLEARMASK;
+               Int32 hi = (ftab[sb+1] & CLEARMASK) - 1;
+               if (hi > lo) {
+                  if (verb >= 4)
+                     VPrintf4 ( "        qsort [0x%x, 0x%x]   "
+                                "done %d   this %d\n",
+                                ss, j, numQSorted, hi - lo + 1 );
+                  mainQSort3 ( 
+                     ptr, block, quadrant, nblock, 
+                     lo, hi, BZ_N_RADIX, budget 
+                  );   
+                  numQSorted += (hi - lo + 1);
+                  if (*budget < 0) return;
+               }
+            }
+            ftab[sb] |= SETMASK;
+         }
+      }
+
+      AssertH ( !bigDone[ss], 1006 );
+
+      /*--
+         Step 2:
+         Now scan this big bucket [ss] so as to synthesise the
+         sorted order for small buckets [t, ss] for all t,
+         including, magically, the bucket [ss,ss] too.
+         This will avoid doing Real Work in subsequent Step 1's.
+      --*/
+      {
+         for (j = 0; j <= 255; j++) {
+            copyStart[j] =  ftab[(j << 8) + ss]     & CLEARMASK;
+            copyEnd  [j] = (ftab[(j << 8) + ss + 1] & CLEARMASK) - 1;
+         }
+         for (j = ftab[ss << 8] & CLEARMASK; j < copyStart[ss]; j++) {
+            k = ptr[j]-1; if (k < 0) k += nblock;
+            c1 = block[k];
+            if (!bigDone[c1])
+               ptr[ copyStart[c1]++ ] = k;
+         }
+         for (j = (ftab[(ss+1) << 8] & CLEARMASK) - 1; j > copyEnd[ss]; j--) {
+            k = ptr[j]-1; if (k < 0) k += nblock;
+            c1 = block[k];
+            if (!bigDone[c1]) 
+               ptr[ copyEnd[c1]-- ] = k;
+         }
+      }
+
+      AssertH ( (copyStart[ss]-1 == copyEnd[ss])
+                || 
+                /* Extremely rare case missing in bzip2-1.0.0 and 1.0.1.
+                   Necessity for this case is demonstrated by compressing 
+                   a sequence of approximately 48.5 million of character 
+                   251; 1.0.0/1.0.1 will then die here. */
+                (copyStart[ss] == 0 && copyEnd[ss] == nblock-1),
+                1007 )
+
+      for (j = 0; j <= 255; j++) ftab[(j << 8) + ss] |= SETMASK;
+
+      /*--
+         Step 3:
+         The [ss] big bucket is now done.  Record this fact,
+         and update the quadrant descriptors.  Remember to
+         update quadrants in the overshoot area too, if
+         necessary.  The "if (i < 255)" test merely skips
+         this updating for the last bucket processed, since
+         updating for the last bucket is pointless.
+
+         The quadrant array provides a way to incrementally
+         cache sort orderings, as they appear, so as to 
+         make subsequent comparisons in fullGtU() complete
+         faster.  For repetitive blocks this makes a big
+         difference (but not big enough to be able to avoid
+         the fallback sorting mechanism, exponential radix sort).
+
+         The precise meaning is: at all times:
+
+            for 0 <= i < nblock and 0 <= j <= nblock
+
+            if block[i] != block[j], 
+
+               then the relative values of quadrant[i] and 
+                    quadrant[j] are meaningless.
+
+               else {
+                  if quadrant[i] < quadrant[j]
+                     then the string starting at i lexicographically
+                     precedes the string starting at j
+
+                  else if quadrant[i] > quadrant[j]
+                     then the string starting at j lexicographically
+                     precedes the string starting at i
+
+                  else
+                     the relative ordering of the strings starting
+                     at i and j has not yet been determined.
+               }
+      --*/
+      bigDone[ss] = True;
+
+      if (i < 255) {
+         Int32 bbStart  = ftab[ss << 8] & CLEARMASK;
+         Int32 bbSize   = (ftab[(ss+1) << 8] & CLEARMASK) - bbStart;
+         Int32 shifts   = 0;
+
+         while ((bbSize >> shifts) > 65534) shifts++;
+
+         for (j = bbSize-1; j >= 0; j--) {
+            Int32 a2update     = ptr[bbStart + j];
+            UInt16 qVal        = (UInt16)(j >> shifts);
+            quadrant[a2update] = qVal;
+            if (a2update < BZ_N_OVERSHOOT)
+               quadrant[a2update + nblock] = qVal;
+         }
+         AssertH ( ((bbSize-1) >> shifts) <= 65535, 1002 );
+      }
+
+   }
+
+   if (verb >= 4)
+      VPrintf3 ( "        %d pointers, %d sorted, %d scanned\n",
+                 nblock, numQSorted, nblock - numQSorted );
+}
+
+#undef BIGFREQ
+#undef SETMASK
+#undef CLEARMASK
+
+
+/*---------------------------------------------*/
+/* Pre:
+      nblock > 0
+      arr2 exists for [0 .. nblock-1 +N_OVERSHOOT]
+      ((UChar*)arr2)  [0 .. nblock-1] holds block
+      arr1 exists for [0 .. nblock-1]
+
+   Post:
+      ((UChar*)arr2) [0 .. nblock-1] holds block
+      All other areas of block destroyed
+      ftab [ 0 .. 65536 ] destroyed
+      arr1 [0 .. nblock-1] holds sorted order
+*/
+void BZ2_blockSort ( EState* s )
+{
+   UInt32* ptr    = s->ptr; 
+   UChar*  block  = s->block;
+   UInt32* ftab   = s->ftab;
+   Int32   nblock = s->nblock;
+   Int32   verb   = s->verbosity;
+   Int32   wfact  = s->workFactor;
+   UInt16* quadrant;
+   Int32   budget;
+   Int32   budgetInit;
+   Int32   i;
+
+   if (nblock < 10000) {
+      fallbackSort ( s->arr1, s->arr2, ftab, nblock, verb );
+   } else {
+      /* Calculate the location for quadrant, remembering to get
+         the alignment right.  Assumes that &(block[0]) is at least
+         2-byte aligned -- this should be ok since block is really
+         the first section of arr2.
+      */
+      i = nblock+BZ_N_OVERSHOOT;
+      if (i & 1) i++;
+      quadrant = (UInt16*)(&(block[i]));
+
+      /* (wfact-1) / 3 puts the default-factor-30
+         transition point at very roughly the same place as 
+         with v0.1 and v0.9.0.  
+         Not that it particularly matters any more, since the
+         resulting compressed stream is now the same regardless
+         of whether or not we use the main sort or fallback sort.
+      */
+      if (wfact < 1  ) wfact = 1;
+      if (wfact > 100) wfact = 100;
+      budgetInit = nblock * ((wfact-1) / 3);
+      budget = budgetInit;
+
+      mainSort ( ptr, block, quadrant, ftab, nblock, verb, &budget );
+      if (verb >= 3) 
+         VPrintf3 ( "      %d work, %d block, ratio %5.2f\n",
+                    budgetInit - budget,
+                    nblock, 
+                    (float)(budgetInit - budget) /
+                    (float)(nblock==0 ? 1 : nblock) ); 
+      if (budget < 0) {
+         if (verb >= 2) 
+            VPrintf0 ( "    too repetitive; using fallback"
+                       " sorting algorithm\n" );
+         fallbackSort ( s->arr1, s->arr2, ftab, nblock, verb );
+      }
+   }
+
+   s->origPtr = -1;
+   for (i = 0; i < s->nblock; i++)
+      if (ptr[i] == 0)
+         { s->origPtr = i; break; };
+
+   AssertH( s->origPtr != -1, 1003 );
+}
+
+
+/*-------------------------------------------------------------*/
+/*--- end                                       blocksort.c ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/bz-common.xsl b/commands/bzip2-1.0.3/bz-common.xsl
new file mode 100644
index 000000000..66fcd6fe0
--- /dev/null
+++ b/commands/bzip2-1.0.3/bz-common.xsl
@@ -0,0 +1,39 @@
+ 
+
+
+
+ 
+
+
+
+ 
+ 
+   
+    
+      
+     
+  
+
+
+
+
+set       toc,title
+book      toc,title,figure,table,example,equation
+chapter   toc,title
+section   toc
+sect1     toc
+sect2     toc
+sect3     toc
+sect4     nop
+sect5     nop
+qandaset  toc
+qandadiv  nop
+appendix  toc,title
+article/appendix  nop
+article   toc,title
+preface   toc,title
+reference toc,title
+
+
+
diff --git a/commands/bzip2-1.0.3/bz-fo.xsl b/commands/bzip2-1.0.3/bz-fo.xsl
new file mode 100644
index 000000000..7f2a7674f
--- /dev/null
+++ b/commands/bzip2-1.0.3/bz-fo.xsl
@@ -0,0 +1,257 @@
+ 
+
+
+
+
+
+
+
+
+
+
+
+
+      
+     
+   
+
+
+
+
+ 
+
+
+
+
+
+
+  
+
+
+
+
+  blue
+
+
+
+
+  
+    
+  
+
+
+
+  
+    
+  
+
+
+
+
+  
+  
+  
+    
+      
+    
+  
+  
+    
+      
+        
+          
+          
+          
+        
+      
+    
+    
+          
+    
+  
+  
+    
+      
+        
+      
+    
+    
+      
+        
+      
+    
+  
+
+
+
+
+  
+  
+  
+    
+      
+        
+      
+    
+    
+          
+    
+  
+  
+    
+      
+        
+      
+    
+    
+      
+        
+      
+    
+  
+
+
+
+
+
+  
+    
+  
+    
+  
+  
+    
+      
+    
+  
+
+
+
+
+
+  
+  
+  
+  
+    
+      0pt
+    
+  
+  
+    
+      
+      
+      
+        
+          
+            baseline
+             
+               
+            
+          
+          
+            baseline
+            
+              
+                
+                
+                
+                
+              
+            
+          
+        
+      
+    
+  
+  
+  
+    
+      
+    
+    
+      
+    
+    
+      
+    
+  
+
+
+
+
+
+  
+  
+  
+  
+    
+      0pt
+    
+  
+  
+    
+      
+        
+        
+        
+      
+      
+      
+      
+        
+          
+            baseline
+            
+               
+            
+          
+          
+            baseline
+            
+              
+                
+                
+                
+                
+              
+            
+          
+        
+      
+    
+  
+  
+  
+    
+      
+    
+    
+      
+    
+    
+      
+    
+  
+
+
+
+
diff --git a/commands/bzip2-1.0.3/bz-html.xsl b/commands/bzip2-1.0.3/bz-html.xsl
new file mode 100644
index 000000000..1785fffbc
--- /dev/null
+++ b/commands/bzip2-1.0.3/bz-html.xsl
@@ -0,0 +1,20 @@
+ 
+ ]>
+
+
+
+
+
+
+
+
+
+
+  
+  
+
+
+
diff --git a/commands/bzip2-1.0.3/bzdiff b/commands/bzip2-1.0.3/bzdiff
new file mode 100644
index 000000000..3c2eb859f
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzdiff
@@ -0,0 +1,76 @@
+#!/bin/sh
+# sh is buggy on RS/6000 AIX 3.2. Replace above line with #!/bin/ksh
+
+# Bzcmp/diff wrapped for bzip2, 
+# adapted from zdiff by Philippe Troin  for Debian GNU/Linux.
+
+# Bzcmp and bzdiff are used to invoke the cmp or the  diff  pro-
+# gram  on compressed files.  All options specified are passed
+# directly to cmp or diff.  If only 1 file is specified,  then
+# the  files  compared  are file1 and an uncompressed file1.gz.
+# If two files are specified, then they are  uncompressed  (if
+# necessary) and fed to cmp or diff.  The exit status from cmp
+# or diff is preserved.
+
+PATH="/usr/bin:$PATH"; export PATH
+prog=`echo $0 | sed 's|.*/||'`
+case "$prog" in
+  *cmp) comp=${CMP-cmp}   ;;
+  *)    comp=${DIFF-diff} ;;
+esac
+
+OPTIONS=
+FILES=
+for ARG
+do
+    case "$ARG" in
+    -*)	OPTIONS="$OPTIONS $ARG";;
+     *)	if test -f "$ARG"; then
+            FILES="$FILES $ARG"
+        else
+            echo "${prog}: $ARG not found or not a regular file"
+	    exit 1
+        fi ;;
+    esac
+done
+if test -z "$FILES"; then
+	echo "Usage: $prog [${comp}_options] file [file]"
+	exit 1
+fi
+tmp=`tempfile -d /tmp -p bz` || {
+      echo 'cannot create a temporary file' >&2
+      exit 1
+}
+set $FILES
+if test $# -eq 1; then
+	FILE=`echo "$1" | sed 's/.bz2$//'`
+	bzip2 -cd "$FILE.bz2" | $comp $OPTIONS - "$FILE"
+	STAT="$?"
+
+elif test $# -eq 2; then
+	case "$1" in
+        *.bz2)
+                case "$2" in
+	        *.bz2)
+			F=`echo "$2" | sed 's|.*/||;s|.bz2$||'`
+                        bzip2 -cdfq "$2" > $tmp
+                        bzip2 -cdfq "$1" | $comp $OPTIONS - $tmp
+                        STAT="$?"
+			/bin/rm -f $tmp;;
+
+                *)      bzip2 -cdfq "$1" | $comp $OPTIONS - "$2"
+                        STAT="$?";;
+                esac;;
+        *)      case "$2" in
+	        *.bz2)
+                        bzip2 -cdfq "$2" | $comp $OPTIONS "$1" -
+                        STAT="$?";;
+                *)      $comp $OPTIONS "$1" "$2"
+                        STAT="$?";;
+                esac;;
+	esac
+        exit "$STAT"
+else
+	echo "Usage: $prog [${comp}_options] file [file]"
+	exit 1
+fi
diff --git a/commands/bzip2-1.0.3/bzdiff.1 b/commands/bzip2-1.0.3/bzdiff.1
new file mode 100644
index 000000000..adb7a8e72
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzdiff.1
@@ -0,0 +1,47 @@
+\"Shamelessly copied from zmore.1 by Philippe Troin 
+\"for Debian GNU/Linux
+.TH BZDIFF 1
+.SH NAME
+bzcmp, bzdiff \- compare bzip2 compressed files
+.SH SYNOPSIS
+.B bzcmp
+[ cmp_options ] file1
+[ file2 ]
+.br
+.B bzdiff
+[ diff_options ] file1
+[ file2 ]
+.SH DESCRIPTION
+.I  Bzcmp
+and 
+.I bzdiff
+are used to invoke the
+.I cmp
+or the
+.I diff
+program on bzip2 compressed files.  All options specified are passed
+directly to
+.I cmp
+or
+.IR diff "."
+If only 1 file is specified, then the files compared are
+.I file1
+and an uncompressed
+.IR file1 ".bz2."
+If two files are specified, then they are uncompressed if necessary and fed to
+.I cmp
+or
+.IR diff "."
+The exit status from 
+.I cmp
+or
+.I diff
+is preserved.
+.SH "SEE ALSO"
+cmp(1), diff(1), bzmore(1), bzless(1), bzgrep(1), bzip2(1)
+.SH BUGS
+Messages from the
+.I cmp
+or
+.I diff
+programs refer to temporary filenames instead of those specified.
diff --git a/commands/bzip2-1.0.3/bzgrep b/commands/bzip2-1.0.3/bzgrep
new file mode 100644
index 000000000..dbfc00e8d
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzgrep
@@ -0,0 +1,71 @@
+#!/bin/sh
+
+# Bzgrep wrapped for bzip2, 
+# adapted from zgrep by Philippe Troin  for Debian GNU/Linux.
+## zgrep notice:
+## zgrep -- a wrapper around a grep program that decompresses files as needed
+## Adapted from a version sent by Charles Levert 
+
+PATH="/usr/bin:$PATH"; export PATH
+
+prog=`echo $0 | sed 's|.*/||'`
+case "$prog" in
+	*egrep)	grep=${EGREP-egrep}	;;
+	*fgrep)	grep=${FGREP-fgrep}	;;
+	*)	grep=${GREP-grep}	;;
+esac
+pat=""
+while test $# -ne 0; do
+  case "$1" in
+  -e | -f) opt="$opt $1"; shift; pat="$1"
+           if test "$grep" = grep; then  # grep is buggy with -e on SVR4
+             grep=egrep
+           fi;;
+  -A | -B) opt="$opt $1 $2"; shift;;
+  -*)	   opt="$opt $1";;
+   *)      if test -z "$pat"; then
+	     pat="$1"
+	   else
+	     break;
+           fi;;
+  esac
+  shift
+done
+
+if test -z "$pat"; then
+  echo "grep through bzip2 files"
+  echo "usage: $prog [grep_options] pattern [files]"
+  exit 1
+fi
+
+list=0
+silent=0
+op=`echo "$opt" | sed -e 's/ //g' -e 's/-//g'`
+case "$op" in
+  *l*) list=1
+esac
+case "$op" in
+  *h*) silent=1
+esac
+
+if test $# -eq 0; then
+  bzip2 -cdfq | $grep $opt "$pat"
+  exit $?
+fi
+
+res=0
+for i do
+  if test -f "$i"; then :; else if test -f "$i.bz2"; then i="$i.bz2"; fi; fi
+  if test $list -eq 1; then
+    bzip2 -cdfq "$i" | $grep $opt "$pat" 2>&1 > /dev/null && echo $i
+    r=$?
+  elif test $# -eq 1 -o $silent -eq 1; then
+    bzip2 -cdfq "$i" | $grep $opt "$pat"
+    r=$?
+  else
+    bzip2 -cdfq "$i" | $grep $opt "$pat" | sed "s|^|${i}:|"
+    r=$?
+  fi
+  test "$r" -ne 0 && res="$r"
+done
+exit $res
diff --git a/commands/bzip2-1.0.3/bzgrep.1 b/commands/bzip2-1.0.3/bzgrep.1
new file mode 100644
index 000000000..930af8c7f
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzgrep.1
@@ -0,0 +1,56 @@
+\"Shamelessly copied from zmore.1 by Philippe Troin 
+\"for Debian GNU/Linux
+.TH BZGREP 1
+.SH NAME
+bzgrep, bzfgrep, bzegrep \- search possibly bzip2 compressed files for a regular expression
+.SH SYNOPSIS
+.B bzgrep
+[ grep_options ]
+.BI  [\ -e\ ] " pattern"
+.IR filename ".\|.\|."
+.br
+.B bzegrep
+[ egrep_options ]
+.BI  [\ -e\ ] " pattern"
+.IR filename ".\|.\|."
+.br
+.B bzfgrep
+[ fgrep_options ]
+.BI  [\ -e\ ] " pattern"
+.IR filename ".\|.\|."
+.SH DESCRIPTION
+.IR  Bzgrep
+is used to invoke the
+.I grep
+on bzip2-compressed files. All options specified are passed directly to
+.I grep.
+If no file is specified, then the standard input is decompressed
+if necessary and fed to grep.
+Otherwise the given files are uncompressed if necessary and fed to
+.I grep.
+.PP
+If
+.I bzgrep
+is invoked as
+.I bzegrep
+or
+.I bzfgrep
+then
+.I egrep
+or
+.I fgrep
+is used instead of
+.I grep.
+If the GREP environment variable is set,
+.I bzgrep
+uses it as the
+.I grep
+program to be invoked. For example:
+
+    for sh:  GREP=fgrep  bzgrep string files
+    for csh: (setenv GREP fgrep; bzgrep string files)
+.SH AUTHOR
+Charles Levert (charles@comm.polymtl.ca). Adapted to bzip2 by Philippe
+Troin  for Debian GNU/Linux.
+.SH "SEE ALSO"
+grep(1), egrep(1), fgrep(1), bzdiff(1), bzmore(1), bzless(1), bzip2(1)
diff --git a/commands/bzip2-1.0.3/bzip.css b/commands/bzip2-1.0.3/bzip.css
new file mode 100644
index 000000000..43193d8db
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzip.css
@@ -0,0 +1,74 @@
+/* Colours:
+#74240f  dark brown      h1, h2, h3, h4
+#336699  medium blue     links
+#339999  turquoise       link hover colour
+#202020  almost black    general text
+#761596  purple          md5sum text
+#626262  dark gray       pre border
+#eeeeee  very light gray pre background
+#f2f2f9  very light blue nav table background
+#3366cc  medium blue     nav table border
+*/
+
+a, a:link, a:visited, a:active { color: #336699; }
+a:hover { color: #339999; }
+
+body { font: 80%/126% sans-serif; }
+h1, h2, h3, h4 { color: #74240f; }
+
+dt { color: #336699; font-weight: bold }
+dd { 
+ margin-left: 1.5em; 
+ padding-bottom: 0.8em;
+}
+
+/* -- ruler -- */
+div.hr_blue { 
+  height:  3px; 
+  background:#ffffff url("/images/hr_blue.png") repeat-x; }
+div.hr_blue hr { display:none; }
+
+/* release styles */
+#release p { margin-top: 0.4em; }
+#release .md5sum { color: #761596; }
+
+
+/* ------ styles for docs|manuals|howto ------ */
+/* -- lists -- */
+ul  { 
+ margin:     0px 4px 16px 16px;
+ padding:    0px;
+ list-style: url("/images/li-blue.png"); 
+}
+ul li { 
+ margin-bottom: 10px;
+}
+ul ul	{ 
+ list-style-type:  none; 
+ list-style-image: none; 
+ margin-left:      0px; 
+}
+
+/* header / footer nav tables */
+table.nav {
+ border:     solid 1px #3366cc;
+ background: #f2f2f9;
+ background-color: #f2f2f9;
+ margin-bottom: 0.5em;
+}
+/* don't have underlined links in chunked nav menus */
+table.nav a { text-decoration: none; }
+table.nav a:hover { text-decoration: underline; }
+table.nav td { font-size: 85%; }
+
+code, tt, pre { font-size: 120%; }
+code, tt { color: #761596; }
+
+div.literallayout, pre.programlisting, pre.screen {
+ color:      #000000;
+ padding:    0.5em;
+ background: #eeeeee;
+ border:     1px solid #626262;
+ background-color: #eeeeee;
+ margin: 4px 0px 4px 0px; 
+}
diff --git a/commands/bzip2-1.0.3/bzip2.1 b/commands/bzip2-1.0.3/bzip2.1
new file mode 100644
index 000000000..d2c066156
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzip2.1
@@ -0,0 +1,454 @@
+.PU
+.TH bzip2 1
+.SH NAME
+bzip2, bunzip2 \- a block-sorting file compressor, v1.0.3
+.br
+bzcat \- decompresses files to stdout
+.br
+bzip2recover \- recovers data from damaged bzip2 files
+
+.SH SYNOPSIS
+.ll +8
+.B bzip2
+.RB [ " \-cdfkqstvzVL123456789 " ]
+[
+.I "filenames \&..."
+]
+.ll -8
+.br
+.B bunzip2
+.RB [ " \-fkvsVL " ]
+[ 
+.I "filenames \&..."
+]
+.br
+.B bzcat
+.RB [ " \-s " ]
+[ 
+.I "filenames \&..."
+]
+.br
+.B bzip2recover
+.I "filename"
+
+.SH DESCRIPTION
+.I bzip2
+compresses files using the Burrows-Wheeler block sorting
+text compression algorithm, and Huffman coding.  Compression is
+generally considerably better than that achieved by more conventional
+LZ77/LZ78-based compressors, and approaches the performance of the PPM
+family of statistical compressors.
+
+The command-line options are deliberately very similar to 
+those of 
+.I GNU gzip, 
+but they are not identical.
+
+.I bzip2
+expects a list of file names to accompany the
+command-line flags.  Each file is replaced by a compressed version of
+itself, with the name "original_name.bz2".  
+Each compressed file
+has the same modification date, permissions, and, when possible,
+ownership as the corresponding original, so that these properties can
+be correctly restored at decompression time.  File name handling is
+naive in the sense that there is no mechanism for preserving original
+file names, permissions, ownerships or dates in filesystems which lack
+these concepts, or have serious file name length restrictions, such as
+MS-DOS.
+
+.I bzip2
+and
+.I bunzip2
+will by default not overwrite existing
+files.  If you want this to happen, specify the \-f flag.
+
+If no file names are specified,
+.I bzip2
+compresses from standard
+input to standard output.  In this case,
+.I bzip2
+will decline to
+write compressed output to a terminal, as this would be entirely
+incomprehensible and therefore pointless.
+
+.I bunzip2
+(or
+.I bzip2 \-d) 
+decompresses all
+specified files.  Files which were not created by 
+.I bzip2
+will be detected and ignored, and a warning issued.  
+.I bzip2
+attempts to guess the filename for the decompressed file 
+from that of the compressed file as follows:
+
+       filename.bz2    becomes   filename
+       filename.bz     becomes   filename
+       filename.tbz2   becomes   filename.tar
+       filename.tbz    becomes   filename.tar
+       anyothername    becomes   anyothername.out
+
+If the file does not end in one of the recognised endings, 
+.I .bz2, 
+.I .bz, 
+.I .tbz2
+or
+.I .tbz, 
+.I bzip2 
+complains that it cannot
+guess the name of the original file, and uses the original name
+with
+.I .out
+appended.
+
+As with compression, supplying no
+filenames causes decompression from 
+standard input to standard output.
+
+.I bunzip2 
+will correctly decompress a file which is the
+concatenation of two or more compressed files.  The result is the
+concatenation of the corresponding uncompressed files.  Integrity
+testing (\-t) 
+of concatenated 
+compressed files is also supported.
+
+You can also compress or decompress files to the standard output by
+giving the \-c flag.  Multiple files may be compressed and
+decompressed like this.  The resulting outputs are fed sequentially to
+stdout.  Compression of multiple files 
+in this manner generates a stream
+containing multiple compressed file representations.  Such a stream
+can be decompressed correctly only by
+.I bzip2 
+version 0.9.0 or
+later.  Earlier versions of
+.I bzip2
+will stop after decompressing
+the first file in the stream.
+
+.I bzcat
+(or
+.I bzip2 -dc) 
+decompresses all specified files to
+the standard output.
+
+.I bzip2
+will read arguments from the environment variables
+.I BZIP2
+and
+.I BZIP,
+in that order, and will process them
+before any arguments read from the command line.  This gives a 
+convenient way to supply default arguments.
+
+Compression is always performed, even if the compressed 
+file is slightly
+larger than the original.  Files of less than about one hundred bytes
+tend to get larger, since the compression mechanism has a constant
+overhead in the region of 50 bytes.  Random data (including the output
+of most file compressors) is coded at about 8.05 bits per byte, giving
+an expansion of around 0.5%.
+
+As a self-check for your protection, 
+.I 
+bzip2
+uses 32-bit CRCs to
+make sure that the decompressed version of a file is identical to the
+original.  This guards against corruption of the compressed data, and
+against undetected bugs in
+.I bzip2
+(hopefully very unlikely).  The
+chances of data corruption going undetected is microscopic, about one
+chance in four billion for each file processed.  Be aware, though, that
+the check occurs upon decompression, so it can only tell you that
+something is wrong.  It can't help you 
+recover the original uncompressed
+data.  You can use 
+.I bzip2recover
+to try to recover data from
+damaged files.
+
+Return values: 0 for a normal exit, 1 for environmental problems (file
+not found, invalid flags, I/O errors, &c), 2 to indicate a corrupt
+compressed file, 3 for an internal consistency error (eg, bug) which
+caused
+.I bzip2
+to panic.
+
+.SH OPTIONS
+.TP
+.B \-c --stdout
+Compress or decompress to standard output.
+.TP
+.B \-d --decompress
+Force decompression.  
+.I bzip2, 
+.I bunzip2 
+and
+.I bzcat 
+are
+really the same program, and the decision about what actions to take is
+done on the basis of which name is used.  This flag overrides that
+mechanism, and forces 
+.I bzip2
+to decompress.
+.TP
+.B \-z --compress
+The complement to \-d: forces compression, regardless of the
+invocation name.
+.TP
+.B \-t --test
+Check integrity of the specified file(s), but don't decompress them.
+This really performs a trial decompression and throws away the result.
+.TP
+.B \-f --force
+Force overwrite of output files.  Normally,
+.I bzip2 
+will not overwrite
+existing output files.  Also forces 
+.I bzip2 
+to break hard links
+to files, which it otherwise wouldn't do.
+
+bzip2 normally declines to decompress files which don't have the
+correct magic header bytes.  If forced (-f), however, it will pass
+such files through unmodified.  This is how GNU gzip behaves.
+.TP
+.B \-k --keep
+Keep (don't delete) input files during compression
+or decompression.
+.TP
+.B \-s --small
+Reduce memory usage, for compression, decompression and testing.  Files
+are decompressed and tested using a modified algorithm which only
+requires 2.5 bytes per block byte.  This means any file can be
+decompressed in 2300k of memory, albeit at about half the normal speed.
+
+During compression, \-s selects a block size of 200k, which limits
+memory use to around the same figure, at the expense of your compression
+ratio.  In short, if your machine is low on memory (8 megabytes or
+less), use \-s for everything.  See MEMORY MANAGEMENT below.
+.TP
+.B \-q --quiet
+Suppress non-essential warning messages.  Messages pertaining to
+I/O errors and other critical events will not be suppressed.
+.TP
+.B \-v --verbose
+Verbose mode -- show the compression ratio for each file processed.
+Further \-v's increase the verbosity level, spewing out lots of
+information which is primarily of interest for diagnostic purposes.
+.TP
+.B \-L --license -V --version
+Display the software version, license terms and conditions.
+.TP
+.B \-1 (or \-\-fast) to \-9 (or \-\-best)
+Set the block size to 100 k, 200 k ..  900 k when compressing.  Has no
+effect when decompressing.  See MEMORY MANAGEMENT below.
+The \-\-fast and \-\-best aliases are primarily for GNU gzip 
+compatibility.  In particular, \-\-fast doesn't make things
+significantly faster.  
+And \-\-best merely selects the default behaviour.
+.TP
+.B \--
+Treats all subsequent arguments as file names, even if they start
+with a dash.  This is so you can handle files with names beginning
+with a dash, for example: bzip2 \-- \-myfilename.
+.TP
+.B \--repetitive-fast --repetitive-best
+These flags are redundant in versions 0.9.5 and above.  They provided
+some coarse control over the behaviour of the sorting algorithm in
+earlier versions, which was sometimes useful.  0.9.5 and above have an
+improved algorithm which renders these flags irrelevant.
+
+.SH MEMORY MANAGEMENT
+.I bzip2 
+compresses large files in blocks.  The block size affects
+both the compression ratio achieved, and the amount of memory needed for
+compression and decompression.  The flags \-1 through \-9
+specify the block size to be 100,000 bytes through 900,000 bytes (the
+default) respectively.  At decompression time, the block size used for
+compression is read from the header of the compressed file, and
+.I bunzip2
+then allocates itself just enough memory to decompress
+the file.  Since block sizes are stored in compressed files, it follows
+that the flags \-1 to \-9 are irrelevant to and so ignored
+during decompression.
+
+Compression and decompression requirements, 
+in bytes, can be estimated as:
+
+       Compression:   400k + ( 8 x block size )
+
+       Decompression: 100k + ( 4 x block size ), or
+                      100k + ( 2.5 x block size )
+
+Larger block sizes give rapidly diminishing marginal returns.  Most of
+the compression comes from the first two or three hundred k of block
+size, a fact worth bearing in mind when using
+.I bzip2
+on small machines.
+It is also important to appreciate that the decompression memory
+requirement is set at compression time by the choice of block size.
+
+For files compressed with the default 900k block size,
+.I bunzip2
+will require about 3700 kbytes to decompress.  To support decompression
+of any file on a 4 megabyte machine, 
+.I bunzip2
+has an option to
+decompress using approximately half this amount of memory, about 2300
+kbytes.  Decompression speed is also halved, so you should use this
+option only where necessary.  The relevant flag is -s.
+
+In general, try and use the largest block size memory constraints allow,
+since that maximises the compression achieved.  Compression and
+decompression speed are virtually unaffected by block size.
+
+Another significant point applies to files which fit in a single block
+-- that means most files you'd encounter using a large block size.  The
+amount of real memory touched is proportional to the size of the file,
+since the file is smaller than a block.  For example, compressing a file
+20,000 bytes long with the flag -9 will cause the compressor to
+allocate around 7600k of memory, but only touch 400k + 20000 * 8 = 560
+kbytes of it.  Similarly, the decompressor will allocate 3700k but only
+touch 100k + 20000 * 4 = 180 kbytes.
+
+Here is a table which summarises the maximum memory usage for different
+block sizes.  Also recorded is the total compressed size for 14 files of
+the Calgary Text Compression Corpus totalling 3,141,622 bytes.  This
+column gives some feel for how compression varies with block size.
+These figures tend to understate the advantage of larger block sizes for
+larger files, since the Corpus is dominated by smaller files.
+
+           Compress   Decompress   Decompress   Corpus
+    Flag     usage      usage       -s usage     Size
+
+     -1      1200k       500k         350k      914704
+     -2      2000k       900k         600k      877703
+     -3      2800k      1300k         850k      860338
+     -4      3600k      1700k        1100k      846899
+     -5      4400k      2100k        1350k      845160
+     -6      5200k      2500k        1600k      838626
+     -7      6100k      2900k        1850k      834096
+     -8      6800k      3300k        2100k      828642
+     -9      7600k      3700k        2350k      828642
+
+.SH RECOVERING DATA FROM DAMAGED FILES
+.I bzip2
+compresses files in blocks, usually 900kbytes long.  Each
+block is handled independently.  If a media or transmission error causes
+a multi-block .bz2
+file to become damaged, it may be possible to
+recover data from the undamaged blocks in the file.
+
+The compressed representation of each block is delimited by a 48-bit
+pattern, which makes it possible to find the block boundaries with
+reasonable certainty.  Each block also carries its own 32-bit CRC, so
+damaged blocks can be distinguished from undamaged ones.
+
+.I bzip2recover
+is a simple program whose purpose is to search for
+blocks in .bz2 files, and write each block out into its own .bz2 
+file.  You can then use
+.I bzip2 
+\-t
+to test the
+integrity of the resulting files, and decompress those which are
+undamaged.
+
+.I bzip2recover
+takes a single argument, the name of the damaged file, 
+and writes a number of files "rec00001file.bz2",
+"rec00002file.bz2", etc, containing the  extracted  blocks.
+The  output  filenames  are  designed  so  that the use of
+wildcards in subsequent processing -- for example,  
+"bzip2 -dc  rec*file.bz2 > recovered_data" -- processes the files in
+the correct order.
+
+.I bzip2recover
+should be of most use dealing with large .bz2
+files,  as  these will contain many blocks.  It is clearly
+futile to use it on damaged single-block  files,  since  a
+damaged  block  cannot  be recovered.  If you wish to minimise 
+any potential data loss through media  or  transmission errors, 
+you might consider compressing with a smaller
+block size.
+
+.SH PERFORMANCE NOTES
+The sorting phase of compression gathers together similar strings in the
+file.  Because of this, files containing very long runs of repeated
+symbols, like "aabaabaabaab ..."  (repeated several hundred times) may
+compress more slowly than normal.  Versions 0.9.5 and above fare much
+better than previous versions in this respect.  The ratio between
+worst-case and average-case compression time is in the region of 10:1.
+For previous versions, this figure was more like 100:1.  You can use the
+\-vvvv option to monitor progress in great detail, if you want.
+
+Decompression speed is unaffected by these phenomena.
+
+.I bzip2
+usually allocates several megabytes of memory to operate
+in, and then charges all over it in a fairly random fashion.  This means
+that performance, both for compressing and decompressing, is largely
+determined by the speed at which your machine can service cache misses.
+Because of this, small changes to the code to reduce the miss rate have
+been observed to give disproportionately large performance improvements.
+I imagine 
+.I bzip2
+will perform best on machines with very large caches.
+
+.SH CAVEATS
+I/O error messages are not as helpful as they could be.
+.I bzip2
+tries hard to detect I/O errors and exit cleanly, but the details of
+what the problem is sometimes seem rather misleading.
+
+This manual page pertains to version 1.0.3 of
+.I bzip2.  
+Compressed data created by this version is entirely forwards and
+backwards compatible with the previous public releases, versions
+0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1 and 1.0.2, but with the following
+exception: 0.9.0 and above can correctly decompress multiple
+concatenated compressed files.  0.1pl2 cannot do this; it will stop
+after decompressing just the first file in the stream.
+
+.I bzip2recover
+versions prior to 1.0.2 used 32-bit integers to represent
+bit positions in compressed files, so they could not handle compressed
+files more than 512 megabytes long.  Versions 1.0.2 and above use
+64-bit ints on some platforms which support them (GNU supported
+targets, and Windows).  To establish whether or not bzip2recover was
+built with such a limitation, run it without arguments.  In any event
+you can build yourself an unlimited version if you can recompile it
+with MaybeUInt64 set to be an unsigned 64-bit integer.
+
+
+
+.SH AUTHOR
+Julian Seward, jsewardbzip.org.
+
+http://www.bzip.org
+
+The ideas embodied in
+.I bzip2
+are due to (at least) the following
+people: Michael Burrows and David Wheeler (for the block sorting
+transformation), David Wheeler (again, for the Huffman coder), Peter
+Fenwick (for the structured coding model in the original
+.I bzip,
+and many refinements), and Alistair Moffat, Radford Neal and Ian Witten
+(for the arithmetic coder in the original
+.I bzip).  
+I am much
+indebted for their help, support and advice.  See the manual in the
+source distribution for pointers to sources of documentation.  Christian
+von Roques encouraged me to look for faster sorting algorithms, so as to
+speed up compression.  Bela Lubkin encouraged me to improve the
+worst-case compression performance.  
+Donna Robinson XMLised the documentation.
+The bz* scripts are derived from those of GNU gzip.
+Many people sent patches, helped
+with portability problems, lent machines, gave advice and were generally
+helpful.
diff --git a/commands/bzip2-1.0.3/bzip2.1.preformatted b/commands/bzip2-1.0.3/bzip2.1.preformatted
new file mode 100644
index 000000000..129ca835c
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzip2.1.preformatted
@@ -0,0 +1,399 @@
+bzip2(1)                                                 bzip2(1)
+
+
+
+NNAAMMEE
+       bzip2, bunzip2 − a block‐sorting file compressor, v1.0.3
+       bzcat − decompresses files to stdout
+       bzip2recover − recovers data from damaged bzip2 files
+
+
+SSYYNNOOPPSSIISS
+       bbzziipp22 [ −−ccddffkkqqssttvvzzVVLL112233445566778899 ] [ _f_i_l_e_n_a_m_e_s _._._.  ]
+       bbuunnzziipp22 [ −−ffkkvvssVVLL ] [ _f_i_l_e_n_a_m_e_s _._._.  ]
+       bbzzccaatt [ −−ss ] [ _f_i_l_e_n_a_m_e_s _._._.  ]
+       bbzziipp22rreeccoovveerr _f_i_l_e_n_a_m_e
+
+
+DDEESSCCRRIIPPTTIIOONN
+       _b_z_i_p_2  compresses  files  using  the Burrows‐Wheeler block
+       sorting text compression algorithm,  and  Huffman  coding.
+       Compression  is  generally  considerably  better than that
+       achieved by more conventional LZ77/LZ78‐based compressors,
+       and  approaches  the performance of the PPM family of sta­
+       tistical compressors.
+
+       The command‐line options are deliberately very similar  to
+       those of _G_N_U _g_z_i_p_, but they are not identical.
+
+       _b_z_i_p_2  expects  a list of file names to accompany the com­
+       mand‐line flags.  Each file is replaced  by  a  compressed
+       version  of  itself,  with  the  name "original_name.bz2".
+       Each compressed file has the same modification date,  per­
+       missions, and, when possible, ownership as the correspond­
+       ing original, so that these properties  can  be  correctly
+       restored  at  decompression  time.   File name handling is
+       naive in the sense that there is no mechanism for preserv­
+       ing  original file names, permissions, ownerships or dates
+       in filesystems which lack these concepts, or have  serious
+       file name length restrictions, such as MS‐DOS.
+
+       _b_z_i_p_2  and  _b_u_n_z_i_p_2 will by default not overwrite existing
+       files.  If you want this to happen, specify the −f flag.
+
+       If no file names  are  specified,  _b_z_i_p_2  compresses  from
+       standard  input  to  standard output.  In this case, _b_z_i_p_2
+       will decline to write compressed output to a terminal,  as
+       this  would  be  entirely  incomprehensible  and therefore
+       pointless.
+
+       _b_u_n_z_i_p_2 (or _b_z_i_p_2 _−_d_) decompresses  all  specified  files.
+       Files which were not created by _b_z_i_p_2 will be detected and
+       ignored, and a warning issued.  _b_z_i_p_2  attempts  to  guess
+       the  filename  for  the decompressed file from that of the
+       compressed file as follows:
+
+              filename.bz2    becomes   filename
+              filename.bz     becomes   filename
+              filename.tbz2   becomes   filename.tar
+              filename.tbz    becomes   filename.tar
+              anyothername    becomes   anyothername.out
+
+       If the file does not end in one of the recognised endings,
+       _._b_z_2_,  _._b_z_,  _._t_b_z_2 or _._t_b_z_, _b_z_i_p_2 complains that it cannot
+       guess the name of the original file, and uses the original
+       name with _._o_u_t appended.
+
+       As  with compression, supplying no filenames causes decom­
+       pression from standard input to standard output.
+
+       _b_u_n_z_i_p_2 will correctly decompress a file which is the con­
+       catenation of two or more compressed files.  The result is
+       the concatenation of the corresponding uncompressed files.
+       Integrity testing (−t) of concatenated compressed files is
+       also supported.
+
+       You can also compress or decompress files to the  standard
+       output  by giving the −c flag.  Multiple files may be com­
+       pressed and decompressed like this.  The resulting outputs
+       are  fed  sequentially to stdout.  Compression of multiple
+       files in this manner generates a stream containing  multi­
+       ple compressed file representations.  Such a stream can be
+       decompressed correctly only  by  _b_z_i_p_2  version  0.9.0  or
+       later.   Earlier  versions of _b_z_i_p_2 will stop after decom­
+       pressing the first file in the stream.
+
+       _b_z_c_a_t (or _b_z_i_p_2 _‐_d_c_) decompresses all specified  files  to
+       the standard output.
+
+       _b_z_i_p_2  will  read arguments from the environment variables
+       _B_Z_I_P_2 and _B_Z_I_P_, in  that  order,  and  will  process  them
+       before  any  arguments  read  from the command line.  This
+       gives a convenient way to supply default arguments.
+
+       Compression is always performed, even  if  the  compressed
+       file  is slightly larger than the original.  Files of less
+       than about one hundred bytes tend to get larger, since the
+       compression  mechanism  has  a  constant  overhead  in the
+       region of 50 bytes.  Random data (including the output  of
+       most  file  compressors)  is  coded at about 8.05 bits per
+       byte, giving an expansion of around 0.5%.
+
+       As a self‐check for your  protection,  _b_z_i_p_2  uses  32‐bit
+       CRCs  to make sure that the decompressed version of a file
+       is identical to the original.  This guards against corrup­
+       tion  of  the compressed data, and against undetected bugs
+       in _b_z_i_p_2 (hopefully very unlikely).  The chances  of  data
+       corruption  going  undetected  is  microscopic,  about one
+       chance in four billion for each file processed.  Be aware,
+       though,  that  the  check occurs upon decompression, so it
+       can only tell you that something is wrong.  It can’t  help
+       you  recover  the original uncompressed data.  You can use
+       _b_z_i_p_2_r_e_c_o_v_e_r to try to recover data from damaged files.
+
+       Return values: 0 for a normal exit,  1  for  environmental
+       problems  (file not found, invalid flags, I/O errors, &c),
+       2 to indicate a corrupt compressed file, 3 for an internal
+       consistency error (eg, bug) which caused _b_z_i_p_2 to panic.
+
+
+OOPPTTIIOONNSS
+       −−cc ‐‐‐‐ssttddoouutt
+              Compress or decompress to standard output.
+
+       −−dd ‐‐‐‐ddeeccoommpprreessss
+              Force  decompression.  _b_z_i_p_2_, _b_u_n_z_i_p_2 and _b_z_c_a_t are
+              really the same program,  and  the  decision  about
+              what  actions to take is done on the basis of which
+              name is used.  This flag overrides that  mechanism,
+              and forces _b_z_i_p_2 to decompress.
+
+       −−zz ‐‐‐‐ccoommpprreessss
+              The   complement   to   −d:   forces   compression,
+              regardless of the invocation name.
+
+       −−tt ‐‐‐‐tteesstt
+              Check integrity of the specified file(s), but don’t
+              decompress  them.   This  really  performs  a trial
+              decompression and throws away the result.
+
+       −−ff ‐‐‐‐ffoorrccee
+              Force overwrite of output files.   Normally,  _b_z_i_p_2
+              will  not  overwrite  existing  output files.  Also
+              forces _b_z_i_p_2 to break hard links to files, which it
+              otherwise wouldn’t do.
+
+              bzip2  normally  declines to decompress files which
+              don’t have the  correct  magic  header  bytes.   If
+              forced  (‐f),  however,  it  will  pass  such files
+              through unmodified.  This is how GNU gzip  behaves.
+
+       −−kk ‐‐‐‐kkeeeepp
+              Keep  (don’t delete) input files during compression
+              or decompression.
+
+       −−ss ‐‐‐‐ssmmaallll
+              Reduce memory usage, for compression, decompression
+              and  testing.   Files  are  decompressed and tested
+              using a modified algorithm which only requires  2.5
+              bytes  per  block byte.  This means any file can be
+              decompressed in 2300k of memory,  albeit  at  about
+              half the normal speed.
+
+              During  compression,  −s  selects  a  block size of
+              200k, which limits memory use to  around  the  same
+              figure,  at  the expense of your compression ratio.
+              In short, if your  machine  is  low  on  memory  (8
+              megabytes  or  less),  use  −s for everything.  See
+              MEMORY MANAGEMENT below.
+
+       −−qq ‐‐‐‐qquuiieett
+              Suppress non‐essential warning messages.   Messages
+              pertaining  to I/O errors and other critical events
+              will not be suppressed.
+
+       −−vv ‐‐‐‐vveerrbboossee
+              Verbose mode ‐‐ show the compression ratio for each
+              file  processed.   Further  −v’s  increase the ver­
+              bosity level, spewing out lots of information which
+              is primarily of interest for diagnostic purposes.
+
+       −−LL ‐‐‐‐lliicceennssee ‐‐VV ‐‐‐‐vveerrssiioonn
+              Display  the  software  version,  license terms and
+              conditions.
+
+       −−11 ((oorr −−−−ffaasstt)) ttoo −−99 ((oorr −−−−bbeesstt))
+              Set the block size to 100 k, 200 k ..  900  k  when
+              compressing.   Has  no  effect  when decompressing.
+              See MEMORY MANAGEMENT below.  The −−fast and −−best
+              aliases  are  primarily for GNU gzip compatibility.
+              In particular, −−fast doesn’t make things  signifi­
+              cantly  faster.   And  −−best  merely  selects  the
+              default behaviour.
+
+       −−‐‐     Treats all subsequent arguments as file names, even
+              if they start with a dash.  This is so you can han­
+              dle files with names beginning  with  a  dash,  for
+              example: bzip2 −‐ −myfilename.
+
+       −−‐‐rreeppeettiittiivvee‐‐ffaasstt ‐‐‐‐rreeppeettiittiivvee‐‐bbeesstt
+              These  flags  are  redundant  in versions 0.9.5 and
+              above.  They provided some coarse control over  the
+              behaviour  of the sorting algorithm in earlier ver­
+              sions, which was sometimes useful.  0.9.5 and above
+              have  an  improved  algorithm  which  renders these
+              flags irrelevant.
+
+
+MMEEMMOORRYY MMAANNAAGGEEMMEENNTT
+       _b_z_i_p_2 compresses large files in blocks.   The  block  size
+       affects  both  the  compression  ratio  achieved,  and the
+       amount of memory needed for compression and decompression.
+       The  flags  −1  through  −9  specify  the block size to be
+       100,000 bytes through 900,000 bytes (the default)  respec­
+       tively.   At  decompression  time, the block size used for
+       compression is read from  the  header  of  the  compressed
+       file, and _b_u_n_z_i_p_2 then allocates itself just enough memory
+       to decompress the file.  Since block sizes are  stored  in
+       compressed  files,  it follows that the flags −1 to −9 are
+       irrelevant to and so ignored during decompression.
+
+       Compression and decompression requirements, in bytes,  can
+       be estimated as:
+
+              Compression:   400k + ( 8 x block size )
+
+              Decompression: 100k + ( 4 x block size ), or
+                             100k + ( 2.5 x block size )
+
+       Larger  block  sizes  give  rapidly  diminishing  marginal
+       returns.  Most of the compression comes from the first two
+       or  three hundred k of block size, a fact worth bearing in
+       mind when using _b_z_i_p_2  on  small  machines.   It  is  also
+       important  to  appreciate  that  the  decompression memory
+       requirement is set at compression time by  the  choice  of
+       block size.
+
+       For  files  compressed  with  the default 900k block size,
+       _b_u_n_z_i_p_2 will require about 3700 kbytes to decompress.   To
+       support decompression of any file on a 4 megabyte machine,
+       _b_u_n_z_i_p_2 has an option to  decompress  using  approximately
+       half this amount of memory, about 2300 kbytes.  Decompres­
+       sion speed is also halved, so you should use  this  option
+       only where necessary.  The relevant flag is ‐s.
+
+       In general, try and use the largest block size memory con­
+       straints  allow,  since  that  maximises  the  compression
+       achieved.   Compression and decompression speed are virtu­
+       ally unaffected by block size.
+
+       Another significant point applies to files which fit in  a
+       single  block  ‐‐  that  means  most files you’d encounter
+       using a large block  size.   The  amount  of  real  memory
+       touched is proportional to the size of the file, since the
+       file is smaller than a block.  For example, compressing  a
+       file  20,000  bytes  long  with the flag ‐9 will cause the
+       compressor to allocate around 7600k of  memory,  but  only
+       touch 400k + 20000 * 8 = 560 kbytes of it.  Similarly, the
+       decompressor will allocate 3700k but  only  touch  100k  +
+       20000 * 4 = 180 kbytes.
+
+       Here  is a table which summarises the maximum memory usage
+       for different block sizes.  Also  recorded  is  the  total
+       compressed  size for 14 files of the Calgary Text Compres­
+       sion Corpus totalling 3,141,622 bytes.  This column  gives
+       some  feel  for  how  compression  varies with block size.
+       These figures tend to understate the advantage  of  larger
+       block  sizes  for  larger files, since the Corpus is domi­
+       nated by smaller files.
+
+                  Compress   Decompress   Decompress   Corpus
+           Flag     usage      usage       ‐s usage     Size
+
+            ‐1      1200k       500k         350k      914704
+            ‐2      2000k       900k         600k      877703
+            ‐3      2800k      1300k         850k      860338
+            ‐4      3600k      1700k        1100k      846899
+            ‐5      4400k      2100k        1350k      845160
+            ‐6      5200k      2500k        1600k      838626
+            ‐7      6100k      2900k        1850k      834096
+            ‐8      6800k      3300k        2100k      828642
+            ‐9      7600k      3700k        2350k      828642
+
+
+RREECCOOVVEERRIINNGG DDAATTAA FFRROOMM DDAAMMAAGGEEDD FFIILLEESS
+       _b_z_i_p_2 compresses files in blocks, usually 900kbytes  long.
+       Each block is handled independently.  If a media or trans­
+       mission error causes a multi‐block  .bz2  file  to  become
+       damaged,  it  may  be  possible  to  recover data from the
+       undamaged blocks in the file.
+
+       The compressed representation of each block  is  delimited
+       by  a  48‐bit pattern, which makes it possible to find the
+       block boundaries with reasonable  certainty.   Each  block
+       also  carries its own 32‐bit CRC, so damaged blocks can be
+       distinguished from undamaged ones.
+
+       _b_z_i_p_2_r_e_c_o_v_e_r is a  simple  program  whose  purpose  is  to
+       search  for blocks in .bz2 files, and write each block out
+       into its own .bz2 file.  You can then use _b_z_i_p_2 −t to test
+       the integrity of the resulting files, and decompress those
+       which are undamaged.
+
+       _b_z_i_p_2_r_e_c_o_v_e_r takes a single argument, the name of the dam­
+       aged    file,    and    writes    a    number   of   files
+       "rec00001file.bz2",  "rec00002file.bz2",  etc,  containing
+       the   extracted   blocks.   The   output   filenames   are
+       designed  so  that the use of wildcards in subsequent pro­
+       cessing  ‐‐ for example, "bzip2 ‐dc  rec*file.bz2 > recov­
+       ered_data" ‐‐ processes the files in the correct order.
+
+       _b_z_i_p_2_r_e_c_o_v_e_r should be of most use dealing with large .bz2
+       files,  as  these will contain many blocks.  It is clearly
+       futile to use it on damaged single‐block  files,  since  a
+       damaged  block  cannot  be recovered.  If you wish to min­
+       imise any potential data loss through media  or  transmis­
+       sion errors, you might consider compressing with a smaller
+       block size.
+
+
+PPEERRFFOORRMMAANNCCEE NNOOTTEESS
+       The sorting phase of compression gathers together  similar
+       strings  in  the  file.  Because of this, files containing
+       very long runs of  repeated  symbols,  like  "aabaabaabaab
+       ..."   (repeated  several hundred times) may compress more
+       slowly than normal.  Versions 0.9.5 and  above  fare  much
+       better  than previous versions in this respect.  The ratio
+       between worst‐case and average‐case compression time is in
+       the  region  of  10:1.  For previous versions, this figure
+       was more like 100:1.  You can use the −vvvv option to mon­
+       itor progress in great detail, if you want.
+
+       Decompression speed is unaffected by these phenomena.
+
+       _b_z_i_p_2  usually  allocates  several  megabytes of memory to
+       operate in, and then charges all over it in a fairly  ran­
+       dom  fashion.   This means that performance, both for com­
+       pressing and decompressing, is largely determined  by  the
+       speed  at  which  your  machine  can service cache misses.
+       Because of this, small changes to the code to  reduce  the
+       miss  rate  have  been observed to give disproportionately
+       large performance improvements.  I imagine _b_z_i_p_2 will per­
+       form best on machines with very large caches.
+
+
+CCAAVVEEAATTSS
+       I/O  error  messages  are not as helpful as they could be.
+       _b_z_i_p_2 tries hard to detect I/O errors  and  exit  cleanly,
+       but  the  details  of  what  the problem is sometimes seem
+       rather misleading.
+
+       This manual page pertains to version 1.0.3 of _b_z_i_p_2_.  Com­
+       pressed  data created by this version is entirely forwards
+       and  backwards  compatible  with   the   previous   public
+       releases,  versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1 and
+       1.0.2, but with the following exception: 0.9.0  and  above
+       can  correctly decompress multiple concatenated compressed
+       files.  0.1pl2 cannot do this; it will stop  after  decom­
+       pressing just the first file in the stream.
+
+       _b_z_i_p_2_r_e_c_o_v_e_r  versions prior to 1.0.2 used 32‐bit integers
+       to represent bit positions in compressed  files,  so  they
+       could  not handle compressed files more than 512 megabytes
+       long.  Versions 1.0.2 and above use 64‐bit  ints  on  some
+       platforms  which  support them (GNU supported targets, and
+       Windows).  To establish whether or  not  bzip2recover  was
+       built  with  such  a limitation, run it without arguments.
+       In any event you can build yourself an  unlimited  version
+       if  you  can  recompile  it  with MaybeUInt64 set to be an
+       unsigned 64‐bit integer.
+
+
+
+
+AAUUTTHHOORR
+       Julian Seward, jsewardbzip.org.
+
+       http://www.bzip.org
+
+       The ideas embodied in _b_z_i_p_2 are due to (at least) the fol­
+       lowing  people: Michael Burrows and David Wheeler (for the
+       block sorting transformation), David Wheeler  (again,  for
+       the Huffman coder), Peter Fenwick (for the structured cod­
+       ing model in the original _b_z_i_p_, and many refinements), and
+       Alistair  Moffat,  Radford  Neal  and  Ian Witten (for the
+       arithmetic  coder  in  the  original  _b_z_i_p_)_.   I  am  much
+       indebted for their help, support and advice.  See the man­
+       ual in the source distribution for pointers to sources  of
+       documentation.  Christian von Roques encouraged me to look
+       for faster sorting algorithms, so as to speed up  compres­
+       sion.  Bela Lubkin encouraged me to improve the worst‐case
+       compression performance.  Donna Robinson XMLised the docu­
+       mentation.   The bz* scripts are derived from those of GNU
+       gzip.  Many people sent patches, helped  with  portability
+       problems,  lent  machines,  gave advice and were generally
+       helpful.
+
+
+
+                                                         bzip2(1)
diff --git a/commands/bzip2-1.0.3/bzip2.c b/commands/bzip2-1.0.3/bzip2.c
new file mode 100644
index 000000000..79f87a519
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzip2.c
@@ -0,0 +1,2107 @@
+
+/*-----------------------------------------------------------*/
+/*--- A block-sorting, lossless compressor        bzip2.c ---*/
+/*-----------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+
+/*----------------------------------------------------*/
+/*--- IMPORTANT                                    ---*/
+/*----------------------------------------------------*/
+
+/*--
+   WARNING:
+      This program and library (attempts to) compress data by 
+      performing several non-trivial transformations on it.  
+      Unless you are 100% familiar with *all* the algorithms 
+      contained herein, and with the consequences of modifying them, 
+      you should NOT meddle with the compression or decompression 
+      machinery.  Incorrect changes can and very likely *will* 
+      lead to disasterous loss of data.
+
+   DISCLAIMER:
+      I TAKE NO RESPONSIBILITY FOR ANY LOSS OF DATA ARISING FROM THE
+      USE OF THIS PROGRAM, HOWSOEVER CAUSED.
+
+      Every compression of a file implies an assumption that the
+      compressed file can be decompressed to reproduce the original.
+      Great efforts in design, coding and testing have been made to
+      ensure that this program works correctly.  However, the
+      complexity of the algorithms, and, in particular, the presence
+      of various special cases in the code which occur with very low
+      but non-zero probability make it impossible to rule out the
+      possibility of bugs remaining in the program.  DO NOT COMPRESS
+      ANY DATA WITH THIS PROGRAM AND/OR LIBRARY UNLESS YOU ARE PREPARED 
+      TO ACCEPT THE POSSIBILITY, HOWEVER SMALL, THAT THE DATA WILL 
+      NOT BE RECOVERABLE.
+
+      That is not to say this program is inherently unreliable.
+      Indeed, I very much hope the opposite is true.  bzip2/libbzip2
+      has been carefully constructed and extensively tested.
+
+   PATENTS:
+      To the best of my knowledge, bzip2/libbzip2 does not use any 
+      patented algorithms.  However, I do not have the resources 
+      available to carry out a full patent search.  Therefore I cannot 
+      give any guarantee of the above statement.
+--*/
+
+
+
+/*----------------------------------------------------*/
+/*--- and now for something much more pleasant :-) ---*/
+/*----------------------------------------------------*/
+
+/*---------------------------------------------*/
+/*--
+  Place a 1 beside your platform, and 0 elsewhere.
+--*/
+
+/*--
+  Generic 32-bit Unix.
+  Also works on 64-bit Unix boxes.
+  This is the default.
+--*/
+#define BZ_UNIX      1
+
+/*--
+  Win32, as seen by Jacob Navia's excellent
+  port of (Chris Fraser & David Hanson)'s excellent
+  lcc compiler.  Or with MS Visual C.
+  This is selected automatically if compiled by a compiler which
+  defines _WIN32, not including the Cygwin GCC.
+--*/
+#define BZ_LCCWIN32  0
+
+#if defined(_WIN32) && !defined(__CYGWIN__)
+#undef  BZ_LCCWIN32
+#define BZ_LCCWIN32 1
+#undef  BZ_UNIX
+#define BZ_UNIX 0
+#endif
+
+
+/*---------------------------------------------*/
+/*--
+  Some stuff for all platforms.
+--*/
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include "bzlib.h"
+
+#define ERROR_IF_EOF(i)       { if ((i) == EOF)  ioError(); }
+#define ERROR_IF_NOT_ZERO(i)  { if ((i) != 0)    ioError(); }
+#define ERROR_IF_MINUS_ONE(i) { if ((i) == (-1)) ioError(); }
+
+
+/*---------------------------------------------*/
+/*--
+   Platform-specific stuff.
+--*/
+
+#if BZ_UNIX
+#   include 
+#   include 
+#   include 
+#   include 
+#   include 
+#   include 
+
+#   define PATH_SEP    '/'
+#   define MY_LSTAT    lstat
+#   define MY_STAT     stat
+#   define MY_S_ISREG  S_ISREG
+#   define MY_S_ISDIR  S_ISDIR
+
+#   define APPEND_FILESPEC(root, name) \
+      root=snocString((root), (name))
+
+#   define APPEND_FLAG(root, name) \
+      root=snocString((root), (name))
+
+#   define SET_BINARY_MODE(fd) /**/
+
+#   ifdef __GNUC__
+#      define NORETURN __attribute__ ((noreturn))
+#   else
+#      define NORETURN /**/
+#   endif
+
+#   ifdef __DJGPP__
+#     include 
+#     include 
+#     undef MY_LSTAT
+#     undef MY_STAT
+#     define MY_LSTAT stat
+#     define MY_STAT stat
+#     undef SET_BINARY_MODE
+#     define SET_BINARY_MODE(fd)                        \
+        do {                                            \
+           int retVal = setmode ( fileno ( fd ),        \
+                                  O_BINARY );           \
+           ERROR_IF_MINUS_ONE ( retVal );               \
+        } while ( 0 )
+#   endif
+
+#   ifdef __CYGWIN__
+#     include 
+#     include 
+#     undef SET_BINARY_MODE
+#     define SET_BINARY_MODE(fd)                        \
+        do {                                            \
+           int retVal = setmode ( fileno ( fd ),        \
+                                  O_BINARY );           \
+           ERROR_IF_MINUS_ONE ( retVal );               \
+        } while ( 0 )
+#   endif
+#endif /* BZ_UNIX */
+
+
+
+#if BZ_LCCWIN32
+#   include 
+#   include 
+#   include 
+
+#   define NORETURN       /**/
+#   define PATH_SEP       '\\'
+#   define MY_LSTAT       _stat
+#   define MY_STAT        _stat
+#   define MY_S_ISREG(x)  ((x) & _S_IFREG)
+#   define MY_S_ISDIR(x)  ((x) & _S_IFDIR)
+
+#   define APPEND_FLAG(root, name) \
+      root=snocString((root), (name))
+
+#   define APPEND_FILESPEC(root, name)                \
+      root = snocString ((root), (name))
+
+#   define SET_BINARY_MODE(fd)                        \
+      do {                                            \
+         int retVal = setmode ( fileno ( fd ),        \
+                                O_BINARY );           \
+         ERROR_IF_MINUS_ONE ( retVal );               \
+      } while ( 0 )
+
+#endif /* BZ_LCCWIN32 */
+
+
+/*---------------------------------------------*/
+/*--
+  Some more stuff for all platforms :-)
+--*/
+
+typedef char            Char;
+typedef unsigned char   Bool;
+typedef unsigned char   UChar;
+typedef int             Int32;
+typedef unsigned int    UInt32;
+typedef short           Int16;
+typedef unsigned short  UInt16;
+                                       
+#define True  ((Bool)1)
+#define False ((Bool)0)
+
+/*--
+  IntNative is your platform's `native' int size.
+  Only here to avoid probs with 64-bit platforms.
+--*/
+typedef int IntNative;
+
+
+/*---------------------------------------------------*/
+/*--- Misc (file handling) data decls             ---*/
+/*---------------------------------------------------*/
+
+Int32   verbosity;
+Bool    keepInputFiles, smallMode, deleteOutputOnInterrupt;
+Bool    forceOverwrite, testFailsExist, unzFailsExist, noisy;
+Int32   numFileNames, numFilesProcessed, blockSize100k;
+Int32   exitValue;
+
+/*-- source modes; F==file, I==stdin, O==stdout --*/
+#define SM_I2O           1
+#define SM_F2O           2
+#define SM_F2F           3
+
+/*-- operation modes --*/
+#define OM_Z             1
+#define OM_UNZ           2
+#define OM_TEST          3
+
+Int32   opMode;
+Int32   srcMode;
+
+#define FILE_NAME_LEN 1034
+
+Int32   longestFileName;
+Char    inName [FILE_NAME_LEN];
+Char    outName[FILE_NAME_LEN];
+Char    tmpName[FILE_NAME_LEN];
+Char    *progName;
+Char    progNameReally[FILE_NAME_LEN];
+FILE    *outputHandleJustInCase;
+Int32   workFactor;
+
+static void    panic                 ( Char* )   NORETURN;
+static void    ioError               ( void )    NORETURN;
+static void    outOfMemory           ( void )    NORETURN;
+static void    configError           ( void )    NORETURN;
+static void    crcError              ( void )    NORETURN;
+static void    cleanUpAndFail        ( Int32 )   NORETURN;
+static void    compressedStreamEOF   ( void )    NORETURN;
+
+static void    copyFileName ( Char*, Char* );
+static void*   myMalloc     ( Int32 );
+
+
+
+/*---------------------------------------------------*/
+/*--- An implementation of 64-bit ints.  Sigh.    ---*/
+/*--- Roll on widespread deployment of ANSI C9X ! ---*/
+/*---------------------------------------------------*/
+
+typedef
+   struct { UChar b[8]; } 
+   UInt64;
+
+
+static
+void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 )
+{
+   n->b[7] = (UChar)((hi32 >> 24) & 0xFF);
+   n->b[6] = (UChar)((hi32 >> 16) & 0xFF);
+   n->b[5] = (UChar)((hi32 >> 8)  & 0xFF);
+   n->b[4] = (UChar) (hi32        & 0xFF);
+   n->b[3] = (UChar)((lo32 >> 24) & 0xFF);
+   n->b[2] = (UChar)((lo32 >> 16) & 0xFF);
+   n->b[1] = (UChar)((lo32 >> 8)  & 0xFF);
+   n->b[0] = (UChar) (lo32        & 0xFF);
+}
+
+
+static
+double uInt64_to_double ( UInt64* n )
+{
+   Int32  i;
+   double base = 1.0;
+   double sum  = 0.0;
+   for (i = 0; i < 8; i++) {
+      sum  += base * (double)(n->b[i]);
+      base *= 256.0;
+   }
+   return sum;
+}
+
+
+static
+Bool uInt64_isZero ( UInt64* n )
+{
+   Int32 i;
+   for (i = 0; i < 8; i++)
+      if (n->b[i] != 0) return 0;
+   return 1;
+}
+
+
+/* Divide *n by 10, and return the remainder.  */
+static 
+Int32 uInt64_qrm10 ( UInt64* n )
+{
+   UInt32 rem, tmp;
+   Int32  i;
+   rem = 0;
+   for (i = 7; i >= 0; i--) {
+      tmp = rem * 256 + n->b[i];
+      n->b[i] = tmp / 10;
+      rem = tmp % 10;
+   }
+   return rem;
+}
+
+
+/* ... and the Whole Entire Point of all this UInt64 stuff is
+   so that we can supply the following function.
+*/
+static
+void uInt64_toAscii ( char* outbuf, UInt64* n )
+{
+   Int32  i, q;
+   UChar  buf[32];
+   Int32  nBuf   = 0;
+   UInt64 n_copy = *n;
+   do {
+      q = uInt64_qrm10 ( &n_copy );
+      buf[nBuf] = q + '0';
+      nBuf++;
+   } while (!uInt64_isZero(&n_copy));
+   outbuf[nBuf] = 0;
+   for (i = 0; i < nBuf; i++) 
+      outbuf[i] = buf[nBuf-i-1];
+}
+
+
+/*---------------------------------------------------*/
+/*--- Processing of complete files and streams    ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------*/
+static 
+Bool myfeof ( FILE* f )
+{
+   Int32 c = fgetc ( f );
+   if (c == EOF) return True;
+   ungetc ( c, f );
+   return False;
+}
+
+
+/*---------------------------------------------*/
+static 
+void compressStream ( FILE *stream, FILE *zStream )
+{
+   BZFILE* bzf = NULL;
+   UChar   ibuf[5000];
+   Int32   nIbuf;
+   UInt32  nbytes_in_lo32, nbytes_in_hi32;
+   UInt32  nbytes_out_lo32, nbytes_out_hi32;
+   Int32   bzerr, bzerr_dummy, ret;
+
+   SET_BINARY_MODE(stream);
+   SET_BINARY_MODE(zStream);
+
+   if (ferror(stream)) goto errhandler_io;
+   if (ferror(zStream)) goto errhandler_io;
+
+   bzf = BZ2_bzWriteOpen ( &bzerr, zStream, 
+                           blockSize100k, verbosity, workFactor );   
+   if (bzerr != BZ_OK) goto errhandler;
+
+   if (verbosity >= 2) fprintf ( stderr, "\n" );
+
+   while (True) {
+
+      if (myfeof(stream)) break;
+      nIbuf = fread ( ibuf, sizeof(UChar), 5000, stream );
+      if (ferror(stream)) goto errhandler_io;
+      if (nIbuf > 0) BZ2_bzWrite ( &bzerr, bzf, (void*)ibuf, nIbuf );
+      if (bzerr != BZ_OK) goto errhandler;
+
+   }
+
+   BZ2_bzWriteClose64 ( &bzerr, bzf, 0, 
+                        &nbytes_in_lo32, &nbytes_in_hi32,
+                        &nbytes_out_lo32, &nbytes_out_hi32 );
+   if (bzerr != BZ_OK) goto errhandler;
+
+   if (ferror(zStream)) goto errhandler_io;
+   ret = fflush ( zStream );
+   if (ret == EOF) goto errhandler_io;
+   if (zStream != stdout) {
+      ret = fclose ( zStream );
+      outputHandleJustInCase = NULL;
+      if (ret == EOF) goto errhandler_io;
+   }
+   outputHandleJustInCase = NULL;
+   if (ferror(stream)) goto errhandler_io;
+   ret = fclose ( stream );
+   if (ret == EOF) goto errhandler_io;
+
+   if (verbosity >= 1) {
+      if (nbytes_in_lo32 == 0 && nbytes_in_hi32 == 0) {
+	 fprintf ( stderr, " no data compressed.\n");
+      } else {
+	 Char   buf_nin[32], buf_nout[32];
+	 UInt64 nbytes_in,   nbytes_out;
+	 double nbytes_in_d, nbytes_out_d;
+	 uInt64_from_UInt32s ( &nbytes_in, 
+			       nbytes_in_lo32, nbytes_in_hi32 );
+	 uInt64_from_UInt32s ( &nbytes_out, 
+			       nbytes_out_lo32, nbytes_out_hi32 );
+	 nbytes_in_d  = uInt64_to_double ( &nbytes_in );
+	 nbytes_out_d = uInt64_to_double ( &nbytes_out );
+	 uInt64_toAscii ( buf_nin, &nbytes_in );
+	 uInt64_toAscii ( buf_nout, &nbytes_out );
+	 fprintf ( stderr, "%6.3f:1, %6.3f bits/byte, "
+		   "%5.2f%% saved, %s in, %s out.\n",
+		   nbytes_in_d / nbytes_out_d,
+		   (8.0 * nbytes_out_d) / nbytes_in_d,
+		   100.0 * (1.0 - nbytes_out_d / nbytes_in_d),
+		   buf_nin,
+		   buf_nout
+		 );
+      }
+   }
+
+   return;
+
+   errhandler:
+   BZ2_bzWriteClose64 ( &bzerr_dummy, bzf, 1, 
+                        &nbytes_in_lo32, &nbytes_in_hi32,
+                        &nbytes_out_lo32, &nbytes_out_hi32 );
+   switch (bzerr) {
+      case BZ_CONFIG_ERROR:
+         configError(); break;
+      case BZ_MEM_ERROR:
+         outOfMemory (); break;
+      case BZ_IO_ERROR:
+         errhandler_io:
+         ioError(); break;
+      default:
+         panic ( "compress:unexpected error" );
+   }
+
+   panic ( "compress:end" );
+   /*notreached*/
+}
+
+
+
+/*---------------------------------------------*/
+static 
+Bool uncompressStream ( FILE *zStream, FILE *stream )
+{
+   BZFILE* bzf = NULL;
+   Int32   bzerr, bzerr_dummy, ret, nread, streamNo, i;
+   UChar   obuf[5000];
+   UChar   unused[BZ_MAX_UNUSED];
+   Int32   nUnused;
+   void*   unusedTmpV;
+   UChar*  unusedTmp;
+
+   nUnused = 0;
+   streamNo = 0;
+
+   SET_BINARY_MODE(stream);
+   SET_BINARY_MODE(zStream);
+
+   if (ferror(stream)) goto errhandler_io;
+   if (ferror(zStream)) goto errhandler_io;
+
+   while (True) {
+
+      bzf = BZ2_bzReadOpen ( 
+               &bzerr, zStream, verbosity, 
+               (int)smallMode, unused, nUnused
+            );
+      if (bzf == NULL || bzerr != BZ_OK) goto errhandler;
+      streamNo++;
+
+      while (bzerr == BZ_OK) {
+         nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
+         if (bzerr == BZ_DATA_ERROR_MAGIC) goto trycat;
+         if ((bzerr == BZ_OK || bzerr == BZ_STREAM_END) && nread > 0)
+            fwrite ( obuf, sizeof(UChar), nread, stream );
+         if (ferror(stream)) goto errhandler_io;
+      }
+      if (bzerr != BZ_STREAM_END) goto errhandler;
+
+      BZ2_bzReadGetUnused ( &bzerr, bzf, &unusedTmpV, &nUnused );
+      if (bzerr != BZ_OK) panic ( "decompress:bzReadGetUnused" );
+
+      unusedTmp = (UChar*)unusedTmpV;
+      for (i = 0; i < nUnused; i++) unused[i] = unusedTmp[i];
+
+      BZ2_bzReadClose ( &bzerr, bzf );
+      if (bzerr != BZ_OK) panic ( "decompress:bzReadGetUnused" );
+
+      if (nUnused == 0 && myfeof(zStream)) break;
+   }
+
+   closeok:
+   if (ferror(zStream)) goto errhandler_io;
+   ret = fclose ( zStream );
+   if (ret == EOF) goto errhandler_io;
+
+   if (ferror(stream)) goto errhandler_io;
+   ret = fflush ( stream );
+   if (ret != 0) goto errhandler_io;
+   if (stream != stdout) {
+      ret = fclose ( stream );
+      outputHandleJustInCase = NULL;
+      if (ret == EOF) goto errhandler_io;
+   }
+   outputHandleJustInCase = NULL;
+   if (verbosity >= 2) fprintf ( stderr, "\n    " );
+   return True;
+
+   trycat: 
+   if (forceOverwrite) {
+      rewind(zStream);
+      while (True) {
+      	 if (myfeof(zStream)) break;
+      	 nread = fread ( obuf, sizeof(UChar), 5000, zStream );
+      	 if (ferror(zStream)) goto errhandler_io;
+      	 if (nread > 0) fwrite ( obuf, sizeof(UChar), nread, stream );
+      	 if (ferror(stream)) goto errhandler_io;
+      }
+      goto closeok;
+   }
+  
+   errhandler:
+   BZ2_bzReadClose ( &bzerr_dummy, bzf );
+   switch (bzerr) {
+      case BZ_CONFIG_ERROR:
+         configError(); break;
+      case BZ_IO_ERROR:
+         errhandler_io:
+         ioError(); break;
+      case BZ_DATA_ERROR:
+         crcError();
+      case BZ_MEM_ERROR:
+         outOfMemory();
+      case BZ_UNEXPECTED_EOF:
+         compressedStreamEOF();
+      case BZ_DATA_ERROR_MAGIC:
+         if (zStream != stdin) fclose(zStream);
+         if (stream != stdout) fclose(stream);
+         if (streamNo == 1) {
+            return False;
+         } else {
+            if (noisy)
+            fprintf ( stderr, 
+                      "\n%s: %s: trailing garbage after EOF ignored\n",
+                      progName, inName );
+            return True;       
+         }
+      default:
+         panic ( "decompress:unexpected error" );
+   }
+
+   panic ( "decompress:end" );
+   return True; /*notreached*/
+}
+
+
+/*---------------------------------------------*/
+static 
+Bool testStream ( FILE *zStream )
+{
+   BZFILE* bzf = NULL;
+   Int32   bzerr, bzerr_dummy, ret, nread, streamNo, i;
+   UChar   obuf[5000];
+   UChar   unused[BZ_MAX_UNUSED];
+   Int32   nUnused;
+   void*   unusedTmpV;
+   UChar*  unusedTmp;
+
+   nUnused = 0;
+   streamNo = 0;
+
+   SET_BINARY_MODE(zStream);
+   if (ferror(zStream)) goto errhandler_io;
+
+   while (True) {
+
+      bzf = BZ2_bzReadOpen ( 
+               &bzerr, zStream, verbosity, 
+               (int)smallMode, unused, nUnused
+            );
+      if (bzf == NULL || bzerr != BZ_OK) goto errhandler;
+      streamNo++;
+
+      while (bzerr == BZ_OK) {
+         nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
+         if (bzerr == BZ_DATA_ERROR_MAGIC) goto errhandler;
+      }
+      if (bzerr != BZ_STREAM_END) goto errhandler;
+
+      BZ2_bzReadGetUnused ( &bzerr, bzf, &unusedTmpV, &nUnused );
+      if (bzerr != BZ_OK) panic ( "test:bzReadGetUnused" );
+
+      unusedTmp = (UChar*)unusedTmpV;
+      for (i = 0; i < nUnused; i++) unused[i] = unusedTmp[i];
+
+      BZ2_bzReadClose ( &bzerr, bzf );
+      if (bzerr != BZ_OK) panic ( "test:bzReadGetUnused" );
+      if (nUnused == 0 && myfeof(zStream)) break;
+
+   }
+
+   if (ferror(zStream)) goto errhandler_io;
+   ret = fclose ( zStream );
+   if (ret == EOF) goto errhandler_io;
+
+   if (verbosity >= 2) fprintf ( stderr, "\n    " );
+   return True;
+
+   errhandler:
+   BZ2_bzReadClose ( &bzerr_dummy, bzf );
+   if (verbosity == 0) 
+      fprintf ( stderr, "%s: %s: ", progName, inName );
+   switch (bzerr) {
+      case BZ_CONFIG_ERROR:
+         configError(); break;
+      case BZ_IO_ERROR:
+         errhandler_io:
+         ioError(); break;
+      case BZ_DATA_ERROR:
+         fprintf ( stderr,
+                   "data integrity (CRC) error in data\n" );
+         return False;
+      case BZ_MEM_ERROR:
+         outOfMemory();
+      case BZ_UNEXPECTED_EOF:
+         fprintf ( stderr,
+                   "file ends unexpectedly\n" );
+         return False;
+      case BZ_DATA_ERROR_MAGIC:
+         if (zStream != stdin) fclose(zStream);
+         if (streamNo == 1) {
+          fprintf ( stderr, 
+                    "bad magic number (file not created by bzip2)\n" );
+            return False;
+         } else {
+            if (noisy)
+            fprintf ( stderr, 
+                      "trailing garbage after EOF ignored\n" );
+            return True;       
+         }
+      default:
+         panic ( "test:unexpected error" );
+   }
+
+   panic ( "test:end" );
+   return True; /*notreached*/
+}
+
+
+/*---------------------------------------------------*/
+/*--- Error [non-] handling grunge                ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------*/
+static
+void setExit ( Int32 v )
+{
+   if (v > exitValue) exitValue = v;
+}
+
+
+/*---------------------------------------------*/
+static 
+void cadvise ( void )
+{
+   if (noisy)
+   fprintf (
+      stderr,
+      "\nIt is possible that the compressed file(s) have become corrupted.\n"
+        "You can use the -tvv option to test integrity of such files.\n\n"
+        "You can use the `bzip2recover' program to attempt to recover\n"
+        "data from undamaged sections of corrupted files.\n\n"
+    );
+}
+
+
+/*---------------------------------------------*/
+static 
+void showFileNames ( void )
+{
+   if (noisy)
+   fprintf (
+      stderr,
+      "\tInput file = %s, output file = %s\n",
+      inName, outName 
+   );
+}
+
+
+/*---------------------------------------------*/
+static 
+void cleanUpAndFail ( Int32 ec )
+{
+   IntNative      retVal;
+   struct MY_STAT statBuf;
+
+   if ( srcMode == SM_F2F 
+        && opMode != OM_TEST
+        && deleteOutputOnInterrupt ) {
+
+      /* Check whether input file still exists.  Delete output file
+         only if input exists to avoid loss of data.  Joerg Prante, 5
+         January 2002.  (JRS 06-Jan-2002: other changes in 1.0.2 mean
+         this is less likely to happen.  But to be ultra-paranoid, we
+         do the check anyway.)  */
+      retVal = MY_STAT ( inName, &statBuf );
+      if (retVal == 0) {
+         if (noisy)
+            fprintf ( stderr, 
+                      "%s: Deleting output file %s, if it exists.\n",
+                      progName, outName );
+         if (outputHandleJustInCase != NULL)
+            fclose ( outputHandleJustInCase );
+         retVal = remove ( outName );
+         if (retVal != 0)
+            fprintf ( stderr,
+                      "%s: WARNING: deletion of output file "
+                      "(apparently) failed.\n",
+                      progName );
+      } else {
+         fprintf ( stderr,
+                   "%s: WARNING: deletion of output file suppressed\n",
+                    progName );
+         fprintf ( stderr,
+                   "%s:    since input file no longer exists.  Output file\n",
+                   progName );
+         fprintf ( stderr,
+                   "%s:    `%s' may be incomplete.\n",
+                   progName, outName );
+         fprintf ( stderr, 
+                   "%s:    I suggest doing an integrity test (bzip2 -tv)"
+                   " of it.\n",
+                   progName );
+      }
+   }
+
+   if (noisy && numFileNames > 0 && numFilesProcessed < numFileNames) {
+      fprintf ( stderr, 
+                "%s: WARNING: some files have not been processed:\n"
+                "%s:    %d specified on command line, %d not processed yet.\n\n",
+                progName, progName,
+                numFileNames, numFileNames - numFilesProcessed );
+   }
+   setExit(ec);
+   exit(exitValue);
+}
+
+
+/*---------------------------------------------*/
+static 
+void panic ( Char* s )
+{
+   fprintf ( stderr,
+             "\n%s: PANIC -- internal consistency error:\n"
+             "\t%s\n"
+             "\tThis is a BUG.  Please report it to me at:\n"
+             "\tjseward@bzip.org\n",
+             progName, s );
+   showFileNames();
+   cleanUpAndFail( 3 );
+}
+
+
+/*---------------------------------------------*/
+static 
+void crcError ( void )
+{
+   fprintf ( stderr,
+             "\n%s: Data integrity error when decompressing.\n",
+             progName );
+   showFileNames();
+   cadvise();
+   cleanUpAndFail( 2 );
+}
+
+
+/*---------------------------------------------*/
+static 
+void compressedStreamEOF ( void )
+{
+  if (noisy) {
+    fprintf ( stderr,
+	      "\n%s: Compressed file ends unexpectedly;\n\t"
+	      "perhaps it is corrupted?  *Possible* reason follows.\n",
+	      progName );
+    perror ( progName );
+    showFileNames();
+    cadvise();
+  }
+  cleanUpAndFail( 2 );
+}
+
+
+/*---------------------------------------------*/
+static 
+void ioError ( void )
+{
+   fprintf ( stderr,
+             "\n%s: I/O or other error, bailing out.  "
+             "Possible reason follows.\n",
+             progName );
+   perror ( progName );
+   showFileNames();
+   cleanUpAndFail( 1 );
+}
+
+
+/*---------------------------------------------*/
+static 
+void mySignalCatcher ( IntNative n )
+{
+   fprintf ( stderr,
+             "\n%s: Control-C or similar caught, quitting.\n",
+             progName );
+   cleanUpAndFail(1);
+}
+
+
+/*---------------------------------------------*/
+static 
+void mySIGSEGVorSIGBUScatcher ( IntNative n )
+{
+   if (opMode == OM_Z)
+      fprintf ( 
+      stderr,
+      "\n%s: Caught a SIGSEGV or SIGBUS whilst compressing.\n"
+      "\n"
+      "   Possible causes are (most likely first):\n"
+      "   (1) This computer has unreliable memory or cache hardware\n"
+      "       (a surprisingly common problem; try a different machine.)\n"
+      "   (2) A bug in the compiler used to create this executable\n"
+      "       (unlikely, if you didn't compile bzip2 yourself.)\n"
+      "   (3) A real bug in bzip2 -- I hope this should never be the case.\n"
+      "   The user's manual, Section 4.3, has more info on (1) and (2).\n"
+      "   \n"
+      "   If you suspect this is a bug in bzip2, or are unsure about (1)\n"
+      "   or (2), feel free to report it to me at: jseward@bzip.org.\n"
+      "   Section 4.3 of the user's manual describes the info a useful\n"
+      "   bug report should have.  If the manual is available on your\n"
+      "   system, please try and read it before mailing me.  If you don't\n"
+      "   have the manual or can't be bothered to read it, mail me anyway.\n"
+      "\n",
+      progName );
+      else
+      fprintf ( 
+      stderr,
+      "\n%s: Caught a SIGSEGV or SIGBUS whilst decompressing.\n"
+      "\n"
+      "   Possible causes are (most likely first):\n"
+      "   (1) The compressed data is corrupted, and bzip2's usual checks\n"
+      "       failed to detect this.  Try bzip2 -tvv my_file.bz2.\n"
+      "   (2) This computer has unreliable memory or cache hardware\n"
+      "       (a surprisingly common problem; try a different machine.)\n"
+      "   (3) A bug in the compiler used to create this executable\n"
+      "       (unlikely, if you didn't compile bzip2 yourself.)\n"
+      "   (4) A real bug in bzip2 -- I hope this should never be the case.\n"
+      "   The user's manual, Section 4.3, has more info on (2) and (3).\n"
+      "   \n"
+      "   If you suspect this is a bug in bzip2, or are unsure about (2)\n"
+      "   or (3), feel free to report it to me at: jseward@bzip.org.\n"
+      "   Section 4.3 of the user's manual describes the info a useful\n"
+      "   bug report should have.  If the manual is available on your\n"
+      "   system, please try and read it before mailing me.  If you don't\n"
+      "   have the manual or can't be bothered to read it, mail me anyway.\n"
+      "\n",
+      progName );
+
+   showFileNames();
+   if (opMode == OM_Z)
+      cleanUpAndFail( 3 ); else
+      { cadvise(); cleanUpAndFail( 2 ); }
+}
+
+
+/*---------------------------------------------*/
+static 
+void outOfMemory ( void )
+{
+   fprintf ( stderr,
+             "\n%s: couldn't allocate enough memory\n",
+             progName );
+   showFileNames();
+   cleanUpAndFail(1);
+}
+
+
+/*---------------------------------------------*/
+static 
+void configError ( void )
+{
+   fprintf ( stderr,
+             "bzip2: I'm not configured correctly for this platform!\n"
+             "\tI require Int32, Int16 and Char to have sizes\n"
+             "\tof 4, 2 and 1 bytes to run properly, and they don't.\n"
+             "\tProbably you can fix this by defining them correctly,\n"
+             "\tand recompiling.  Bye!\n" );
+   setExit(3);
+   exit(exitValue);
+}
+
+
+/*---------------------------------------------------*/
+/*--- The main driver machinery                   ---*/
+/*---------------------------------------------------*/
+
+/* All rather crufty.  The main problem is that input files
+   are stat()d multiple times before use.  This should be
+   cleaned up. 
+*/
+
+/*---------------------------------------------*/
+static 
+void pad ( Char *s )
+{
+   Int32 i;
+   if ( (Int32)strlen(s) >= longestFileName ) return;
+   for (i = 1; i <= longestFileName - (Int32)strlen(s); i++)
+      fprintf ( stderr, " " );
+}
+
+
+/*---------------------------------------------*/
+static 
+void copyFileName ( Char* to, Char* from ) 
+{
+   if ( strlen(from) > FILE_NAME_LEN-10 )  {
+      fprintf (
+         stderr,
+         "bzip2: file name\n`%s'\n"
+         "is suspiciously (more than %d chars) long.\n"
+         "Try using a reasonable file name instead.  Sorry! :-)\n",
+         from, FILE_NAME_LEN-10
+      );
+      setExit(1);
+      exit(exitValue);
+   }
+
+  strncpy(to,from,FILE_NAME_LEN-10);
+  to[FILE_NAME_LEN-10]='\0';
+}
+
+
+/*---------------------------------------------*/
+static 
+Bool fileExists ( Char* name )
+{
+   FILE *tmp   = fopen ( name, "rb" );
+   Bool exists = (tmp != NULL);
+   if (tmp != NULL) fclose ( tmp );
+   return exists;
+}
+
+
+/*---------------------------------------------*/
+/* Open an output file safely with O_EXCL and good permissions.
+   This avoids a race condition in versions < 1.0.2, in which
+   the file was first opened and then had its interim permissions
+   set safely.  We instead use open() to create the file with
+   the interim permissions required. (--- --- rw-).
+
+   For non-Unix platforms, if we are not worrying about
+   security issues, simple this simply behaves like fopen.
+*/
+FILE* fopen_output_safely ( Char* name, const char* mode )
+{
+#  if BZ_UNIX
+   FILE*     fp;
+   IntNative fh;
+   fh = open(name, O_WRONLY|O_CREAT|O_EXCL, S_IWUSR|S_IRUSR);
+   if (fh == -1) return NULL;
+   fp = fdopen(fh, mode);
+   if (fp == NULL) close(fh);
+   return fp;
+#  else
+   return fopen(name, mode);
+#  endif
+}
+
+
+/*---------------------------------------------*/
+/*--
+  if in doubt, return True
+--*/
+static 
+Bool notAStandardFile ( Char* name )
+{
+   IntNative      i;
+   struct MY_STAT statBuf;
+
+   i = MY_LSTAT ( name, &statBuf );
+   if (i != 0) return True;
+   if (MY_S_ISREG(statBuf.st_mode)) return False;
+   return True;
+}
+
+
+/*---------------------------------------------*/
+/*--
+  rac 11/21/98 see if file has hard links to it
+--*/
+static 
+Int32 countHardLinks ( Char* name )
+{  
+   IntNative      i;
+   struct MY_STAT statBuf;
+
+   i = MY_LSTAT ( name, &statBuf );
+   if (i != 0) return 0;
+   return (statBuf.st_nlink - 1);
+}
+
+
+/*---------------------------------------------*/
+/* Copy modification date, access date, permissions and owner from the
+   source to destination file.  We have to copy this meta-info off
+   into fileMetaInfo before starting to compress / decompress it,
+   because doing it afterwards means we get the wrong access time.
+
+   To complicate matters, in compress() and decompress() below, the
+   sequence of tests preceding the call to saveInputFileMetaInfo()
+   involves calling fileExists(), which in turn establishes its result
+   by attempting to fopen() the file, and if successful, immediately
+   fclose()ing it again.  So we have to assume that the fopen() call
+   does not cause the access time field to be updated.
+
+   Reading of the man page for stat() (man 2 stat) on RedHat 7.2 seems
+   to imply that merely doing open() will not affect the access time.
+   Therefore we merely need to hope that the C library only does
+   open() as a result of fopen(), and not any kind of read()-ahead
+   cleverness.
+
+   It sounds pretty fragile to me.  Whether this carries across
+   robustly to arbitrary Unix-like platforms (or even works robustly
+   on this one, RedHat 7.2) is unknown to me.  Nevertheless ...  
+*/
+#if BZ_UNIX
+static 
+struct MY_STAT fileMetaInfo;
+#endif
+
+static 
+void saveInputFileMetaInfo ( Char *srcName )
+{
+#  if BZ_UNIX
+   IntNative retVal;
+   /* Note use of stat here, not lstat. */
+   retVal = MY_STAT( srcName, &fileMetaInfo );
+   ERROR_IF_NOT_ZERO ( retVal );
+#  endif
+}
+
+
+static 
+void applySavedMetaInfoToOutputFile ( Char *dstName )
+{
+#  if BZ_UNIX
+   IntNative      retVal;
+   struct utimbuf uTimBuf;
+
+   uTimBuf.actime = fileMetaInfo.st_atime;
+   uTimBuf.modtime = fileMetaInfo.st_mtime;
+
+   retVal = chmod ( dstName, fileMetaInfo.st_mode );
+   ERROR_IF_NOT_ZERO ( retVal );
+
+   retVal = utime ( dstName, &uTimBuf );
+   ERROR_IF_NOT_ZERO ( retVal );
+
+   retVal = chown ( dstName, fileMetaInfo.st_uid, fileMetaInfo.st_gid );
+   /* chown() will in many cases return with EPERM, which can
+      be safely ignored.
+   */
+#  endif
+}
+
+
+/*---------------------------------------------*/
+static 
+Bool containsDubiousChars ( Char* name )
+{
+#  if BZ_UNIX
+   /* On unix, files can contain any characters and the file expansion
+    * is performed by the shell.
+    */
+   return False;
+#  else /* ! BZ_UNIX */
+   /* On non-unix (Win* platforms), wildcard characters are not allowed in 
+    * filenames.
+    */
+   for (; *name != '\0'; name++)
+      if (*name == '?' || *name == '*') return True;
+   return False;
+#  endif /* BZ_UNIX */
+}
+
+
+/*---------------------------------------------*/
+#define BZ_N_SUFFIX_PAIRS 4
+
+Char* zSuffix[BZ_N_SUFFIX_PAIRS] 
+   = { ".bz2", ".bz", ".tbz2", ".tbz" };
+Char* unzSuffix[BZ_N_SUFFIX_PAIRS] 
+   = { "", "", ".tar", ".tar" };
+
+static 
+Bool hasSuffix ( Char* s, Char* suffix )
+{
+   Int32 ns = strlen(s);
+   Int32 nx = strlen(suffix);
+   if (ns < nx) return False;
+   if (strcmp(s + ns - nx, suffix) == 0) return True;
+   return False;
+}
+
+static 
+Bool mapSuffix ( Char* name, 
+                 Char* oldSuffix, Char* newSuffix )
+{
+   if (!hasSuffix(name,oldSuffix)) return False;
+   name[strlen(name)-strlen(oldSuffix)] = 0;
+   strcat ( name, newSuffix );
+   return True;
+}
+
+
+/*---------------------------------------------*/
+static 
+void compress ( Char *name )
+{
+   FILE  *inStr;
+   FILE  *outStr;
+   Int32 n, i;
+   struct MY_STAT statBuf;
+
+   deleteOutputOnInterrupt = False;
+
+   if (name == NULL && srcMode != SM_I2O)
+      panic ( "compress: bad modes\n" );
+
+   switch (srcMode) {
+      case SM_I2O: 
+         copyFileName ( inName, "(stdin)" );
+         copyFileName ( outName, "(stdout)" ); 
+         break;
+      case SM_F2F: 
+         copyFileName ( inName, name );
+         copyFileName ( outName, name );
+         strcat ( outName, ".bz2" ); 
+         break;
+      case SM_F2O: 
+         copyFileName ( inName, name );
+         copyFileName ( outName, "(stdout)" ); 
+         break;
+   }
+
+   if ( srcMode != SM_I2O && containsDubiousChars ( inName ) ) {
+      if (noisy)
+      fprintf ( stderr, "%s: There are no files matching `%s'.\n",
+                progName, inName );
+      setExit(1);
+      return;
+   }
+   if ( srcMode != SM_I2O && !fileExists ( inName ) ) {
+      fprintf ( stderr, "%s: Can't open input file %s: %s.\n",
+                progName, inName, strerror(errno) );
+      setExit(1);
+      return;
+   }
+   for (i = 0; i < BZ_N_SUFFIX_PAIRS; i++) {
+      if (hasSuffix(inName, zSuffix[i])) {
+         if (noisy)
+         fprintf ( stderr, 
+                   "%s: Input file %s already has %s suffix.\n",
+                   progName, inName, zSuffix[i] );
+         setExit(1);
+         return;
+      }
+   }
+   if ( srcMode == SM_F2F || srcMode == SM_F2O ) {
+      MY_STAT(inName, &statBuf);
+      if ( MY_S_ISDIR(statBuf.st_mode) ) {
+         fprintf( stderr,
+                  "%s: Input file %s is a directory.\n",
+                  progName,inName);
+         setExit(1);
+         return;
+      }
+   }
+   if ( srcMode == SM_F2F && !forceOverwrite && notAStandardFile ( inName )) {
+      if (noisy)
+      fprintf ( stderr, "%s: Input file %s is not a normal file.\n",
+                progName, inName );
+      setExit(1);
+      return;
+   }
+   if ( srcMode == SM_F2F && fileExists ( outName ) ) {
+      if (forceOverwrite) {
+	 remove(outName);
+      } else {
+	 fprintf ( stderr, "%s: Output file %s already exists.\n",
+		   progName, outName );
+	 setExit(1);
+	 return;
+      }
+   }
+   if ( srcMode == SM_F2F && !forceOverwrite &&
+        (n=countHardLinks ( inName )) > 0) {
+      fprintf ( stderr, "%s: Input file %s has %d other link%s.\n",
+                progName, inName, n, n > 1 ? "s" : "" );
+      setExit(1);
+      return;
+   }
+
+   if ( srcMode == SM_F2F ) {
+      /* Save the file's meta-info before we open it.  Doing it later
+         means we mess up the access times. */
+      saveInputFileMetaInfo ( inName );
+   }
+
+   switch ( srcMode ) {
+
+      case SM_I2O:
+         inStr = stdin;
+         outStr = stdout;
+         if ( isatty ( fileno ( stdout ) ) ) {
+            fprintf ( stderr,
+                      "%s: I won't write compressed data to a terminal.\n",
+                      progName );
+            fprintf ( stderr, "%s: For help, type: `%s --help'.\n",
+                              progName, progName );
+            setExit(1);
+            return;
+         };
+         break;
+
+      case SM_F2O:
+         inStr = fopen ( inName, "rb" );
+         outStr = stdout;
+         if ( isatty ( fileno ( stdout ) ) ) {
+            fprintf ( stderr,
+                      "%s: I won't write compressed data to a terminal.\n",
+                      progName );
+            fprintf ( stderr, "%s: For help, type: `%s --help'.\n",
+                              progName, progName );
+            if ( inStr != NULL ) fclose ( inStr );
+            setExit(1);
+            return;
+         };
+         if ( inStr == NULL ) {
+            fprintf ( stderr, "%s: Can't open input file %s: %s.\n",
+                      progName, inName, strerror(errno) );
+            setExit(1);
+            return;
+         };
+         break;
+
+      case SM_F2F:
+         inStr = fopen ( inName, "rb" );
+         outStr = fopen_output_safely ( outName, "wb" );
+         if ( outStr == NULL) {
+            fprintf ( stderr, "%s: Can't create output file %s: %s.\n",
+                      progName, outName, strerror(errno) );
+            if ( inStr != NULL ) fclose ( inStr );
+            setExit(1);
+            return;
+         }
+         if ( inStr == NULL ) {
+            fprintf ( stderr, "%s: Can't open input file %s: %s.\n",
+                      progName, inName, strerror(errno) );
+            if ( outStr != NULL ) fclose ( outStr );
+            setExit(1);
+            return;
+         };
+         break;
+
+      default:
+         panic ( "compress: bad srcMode" );
+         break;
+   }
+
+   if (verbosity >= 1) {
+      fprintf ( stderr,  "  %s: ", inName );
+      pad ( inName );
+      fflush ( stderr );
+   }
+
+   /*--- Now the input and output handles are sane.  Do the Biz. ---*/
+   outputHandleJustInCase = outStr;
+   deleteOutputOnInterrupt = True;
+   compressStream ( inStr, outStr );
+   outputHandleJustInCase = NULL;
+
+   /*--- If there was an I/O error, we won't get here. ---*/
+   if ( srcMode == SM_F2F ) {
+      applySavedMetaInfoToOutputFile ( outName );
+      deleteOutputOnInterrupt = False;
+      if ( !keepInputFiles ) {
+         IntNative retVal = remove ( inName );
+         ERROR_IF_NOT_ZERO ( retVal );
+      }
+   }
+
+   deleteOutputOnInterrupt = False;
+}
+
+
+/*---------------------------------------------*/
+static 
+void uncompress ( Char *name )
+{
+   FILE  *inStr;
+   FILE  *outStr;
+   Int32 n, i;
+   Bool  magicNumberOK;
+   Bool  cantGuess;
+   struct MY_STAT statBuf;
+
+   deleteOutputOnInterrupt = False;
+
+   if (name == NULL && srcMode != SM_I2O)
+      panic ( "uncompress: bad modes\n" );
+
+   cantGuess = False;
+   switch (srcMode) {
+      case SM_I2O: 
+         copyFileName ( inName, "(stdin)" );
+         copyFileName ( outName, "(stdout)" ); 
+         break;
+      case SM_F2F: 
+         copyFileName ( inName, name );
+         copyFileName ( outName, name );
+         for (i = 0; i < BZ_N_SUFFIX_PAIRS; i++)
+            if (mapSuffix(outName,zSuffix[i],unzSuffix[i]))
+               goto zzz; 
+         cantGuess = True;
+         strcat ( outName, ".out" );
+         break;
+      case SM_F2O: 
+         copyFileName ( inName, name );
+         copyFileName ( outName, "(stdout)" ); 
+         break;
+   }
+
+   zzz:
+   if ( srcMode != SM_I2O && containsDubiousChars ( inName ) ) {
+      if (noisy)
+      fprintf ( stderr, "%s: There are no files matching `%s'.\n",
+                progName, inName );
+      setExit(1);
+      return;
+   }
+   if ( srcMode != SM_I2O && !fileExists ( inName ) ) {
+      fprintf ( stderr, "%s: Can't open input file %s: %s.\n",
+                progName, inName, strerror(errno) );
+      setExit(1);
+      return;
+   }
+   if ( srcMode == SM_F2F || srcMode == SM_F2O ) {
+      MY_STAT(inName, &statBuf);
+      if ( MY_S_ISDIR(statBuf.st_mode) ) {
+         fprintf( stderr,
+                  "%s: Input file %s is a directory.\n",
+                  progName,inName);
+         setExit(1);
+         return;
+      }
+   }
+   if ( srcMode == SM_F2F && !forceOverwrite && notAStandardFile ( inName )) {
+      if (noisy)
+      fprintf ( stderr, "%s: Input file %s is not a normal file.\n",
+                progName, inName );
+      setExit(1);
+      return;
+   }
+   if ( /* srcMode == SM_F2F implied && */ cantGuess ) {
+      if (noisy)
+      fprintf ( stderr, 
+                "%s: Can't guess original name for %s -- using %s\n",
+                progName, inName, outName );
+      /* just a warning, no return */
+   }   
+   if ( srcMode == SM_F2F && fileExists ( outName ) ) {
+      if (forceOverwrite) {
+	remove(outName);
+      } else {
+        fprintf ( stderr, "%s: Output file %s already exists.\n",
+                  progName, outName );
+        setExit(1);
+        return;
+      }
+   }
+   if ( srcMode == SM_F2F && !forceOverwrite &&
+        (n=countHardLinks ( inName ) ) > 0) {
+      fprintf ( stderr, "%s: Input file %s has %d other link%s.\n",
+                progName, inName, n, n > 1 ? "s" : "" );
+      setExit(1);
+      return;
+   }
+
+   if ( srcMode == SM_F2F ) {
+      /* Save the file's meta-info before we open it.  Doing it later
+         means we mess up the access times. */
+      saveInputFileMetaInfo ( inName );
+   }
+
+   switch ( srcMode ) {
+
+      case SM_I2O:
+         inStr = stdin;
+         outStr = stdout;
+         if ( isatty ( fileno ( stdin ) ) ) {
+            fprintf ( stderr,
+                      "%s: I won't read compressed data from a terminal.\n",
+                      progName );
+            fprintf ( stderr, "%s: For help, type: `%s --help'.\n",
+                              progName, progName );
+            setExit(1);
+            return;
+         };
+         break;
+
+      case SM_F2O:
+         inStr = fopen ( inName, "rb" );
+         outStr = stdout;
+         if ( inStr == NULL ) {
+            fprintf ( stderr, "%s: Can't open input file %s:%s.\n",
+                      progName, inName, strerror(errno) );
+            if ( inStr != NULL ) fclose ( inStr );
+            setExit(1);
+            return;
+         };
+         break;
+
+      case SM_F2F:
+         inStr = fopen ( inName, "rb" );
+         outStr = fopen_output_safely ( outName, "wb" );
+         if ( outStr == NULL) {
+            fprintf ( stderr, "%s: Can't create output file %s: %s.\n",
+                      progName, outName, strerror(errno) );
+            if ( inStr != NULL ) fclose ( inStr );
+            setExit(1);
+            return;
+         }
+         if ( inStr == NULL ) {
+            fprintf ( stderr, "%s: Can't open input file %s: %s.\n",
+                      progName, inName, strerror(errno) );
+            if ( outStr != NULL ) fclose ( outStr );
+            setExit(1);
+            return;
+         };
+         break;
+
+      default:
+         panic ( "uncompress: bad srcMode" );
+         break;
+   }
+
+   if (verbosity >= 1) {
+      fprintf ( stderr, "  %s: ", inName );
+      pad ( inName );
+      fflush ( stderr );
+   }
+
+   /*--- Now the input and output handles are sane.  Do the Biz. ---*/
+   outputHandleJustInCase = outStr;
+   deleteOutputOnInterrupt = True;
+   magicNumberOK = uncompressStream ( inStr, outStr );
+   outputHandleJustInCase = NULL;
+
+   /*--- If there was an I/O error, we won't get here. ---*/
+   if ( magicNumberOK ) {
+      if ( srcMode == SM_F2F ) {
+         applySavedMetaInfoToOutputFile ( outName );
+         deleteOutputOnInterrupt = False;
+         if ( !keepInputFiles ) {
+            IntNative retVal = remove ( inName );
+            ERROR_IF_NOT_ZERO ( retVal );
+         }
+      }
+   } else {
+      unzFailsExist = True;
+      deleteOutputOnInterrupt = False;
+      if ( srcMode == SM_F2F ) {
+         IntNative retVal = remove ( outName );
+         ERROR_IF_NOT_ZERO ( retVal );
+      }
+   }
+   deleteOutputOnInterrupt = False;
+
+   if ( magicNumberOK ) {
+      if (verbosity >= 1)
+         fprintf ( stderr, "done\n" );
+   } else {
+      setExit(2);
+      if (verbosity >= 1)
+         fprintf ( stderr, "not a bzip2 file.\n" ); else
+         fprintf ( stderr,
+                   "%s: %s is not a bzip2 file.\n",
+                   progName, inName );
+   }
+
+}
+
+
+/*---------------------------------------------*/
+static 
+void testf ( Char *name )
+{
+   FILE *inStr;
+   Bool allOK;
+   struct MY_STAT statBuf;
+
+   deleteOutputOnInterrupt = False;
+
+   if (name == NULL && srcMode != SM_I2O)
+      panic ( "testf: bad modes\n" );
+
+   copyFileName ( outName, "(none)" );
+   switch (srcMode) {
+      case SM_I2O: copyFileName ( inName, "(stdin)" ); break;
+      case SM_F2F: copyFileName ( inName, name ); break;
+      case SM_F2O: copyFileName ( inName, name ); break;
+   }
+
+   if ( srcMode != SM_I2O && containsDubiousChars ( inName ) ) {
+      if (noisy)
+      fprintf ( stderr, "%s: There are no files matching `%s'.\n",
+                progName, inName );
+      setExit(1);
+      return;
+   }
+   if ( srcMode != SM_I2O && !fileExists ( inName ) ) {
+      fprintf ( stderr, "%s: Can't open input %s: %s.\n",
+                progName, inName, strerror(errno) );
+      setExit(1);
+      return;
+   }
+   if ( srcMode != SM_I2O ) {
+      MY_STAT(inName, &statBuf);
+      if ( MY_S_ISDIR(statBuf.st_mode) ) {
+         fprintf( stderr,
+                  "%s: Input file %s is a directory.\n",
+                  progName,inName);
+         setExit(1);
+         return;
+      }
+   }
+
+   switch ( srcMode ) {
+
+      case SM_I2O:
+         if ( isatty ( fileno ( stdin ) ) ) {
+            fprintf ( stderr,
+                      "%s: I won't read compressed data from a terminal.\n",
+                      progName );
+            fprintf ( stderr, "%s: For help, type: `%s --help'.\n",
+                              progName, progName );
+            setExit(1);
+            return;
+         };
+         inStr = stdin;
+         break;
+
+      case SM_F2O: case SM_F2F:
+         inStr = fopen ( inName, "rb" );
+         if ( inStr == NULL ) {
+            fprintf ( stderr, "%s: Can't open input file %s:%s.\n",
+                      progName, inName, strerror(errno) );
+            setExit(1);
+            return;
+         };
+         break;
+
+      default:
+         panic ( "testf: bad srcMode" );
+         break;
+   }
+
+   if (verbosity >= 1) {
+      fprintf ( stderr, "  %s: ", inName );
+      pad ( inName );
+      fflush ( stderr );
+   }
+
+   /*--- Now the input handle is sane.  Do the Biz. ---*/
+   outputHandleJustInCase = NULL;
+   allOK = testStream ( inStr );
+
+   if (allOK && verbosity >= 1) fprintf ( stderr, "ok\n" );
+   if (!allOK) testFailsExist = True;
+}
+
+
+/*---------------------------------------------*/
+static 
+void license ( void )
+{
+   fprintf ( stderr,
+
+    "bzip2, a block-sorting file compressor.  "
+    "Version %s.\n"
+    "   \n"
+    "   Copyright (C) 1996-2005 by Julian Seward.\n"
+    "   \n"
+    "   This program is free software; you can redistribute it and/or modify\n"
+    "   it under the terms set out in the LICENSE file, which is included\n"
+    "   in the bzip2-1.0 source distribution.\n"
+    "   \n"
+    "   This program is distributed in the hope that it will be useful,\n"
+    "   but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+    "   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
+    "   LICENSE file for more details.\n"
+    "   \n",
+    BZ2_bzlibVersion()
+   );
+}
+
+
+/*---------------------------------------------*/
+static 
+void usage ( Char *fullProgName )
+{
+   fprintf (
+      stderr,
+      "bzip2, a block-sorting file compressor.  "
+      "Version %s.\n"
+      "\n   usage: %s [flags and input files in any order]\n"
+      "\n"
+      "   -h --help           print this message\n"
+      "   -d --decompress     force decompression\n"
+      "   -z --compress       force compression\n"
+      "   -k --keep           keep (don't delete) input files\n"
+      "   -f --force          overwrite existing output files\n"
+      "   -t --test           test compressed file integrity\n"
+      "   -c --stdout         output to standard out\n"
+      "   -q --quiet          suppress noncritical error messages\n"
+      "   -v --verbose        be verbose (a 2nd -v gives more)\n"
+      "   -L --license        display software version & license\n"
+      "   -V --version        display software version & license\n"
+      "   -s --small          use less memory (at most 2500k)\n"
+      "   -1 .. -9            set block size to 100k .. 900k\n"
+      "   --fast              alias for -1\n"
+      "   --best              alias for -9\n"
+      "\n"
+      "   If invoked as `bzip2', default action is to compress.\n"
+      "              as `bunzip2',  default action is to decompress.\n"
+      "              as `bzcat', default action is to decompress to stdout.\n"
+      "\n"
+      "   If no file names are given, bzip2 compresses or decompresses\n"
+      "   from standard input to standard output.  You can combine\n"
+      "   short flags, so `-v -4' means the same as -v4 or -4v, &c.\n"
+#     if BZ_UNIX
+      "\n"
+#     endif
+      ,
+
+      BZ2_bzlibVersion(),
+      fullProgName
+   );
+}
+
+
+/*---------------------------------------------*/
+static 
+void redundant ( Char* flag )
+{
+   fprintf ( 
+      stderr, 
+      "%s: %s is redundant in versions 0.9.5 and above\n",
+      progName, flag );
+}
+
+
+/*---------------------------------------------*/
+/*--
+  All the garbage from here to main() is purely to
+  implement a linked list of command-line arguments,
+  into which main() copies argv[1 .. argc-1].
+
+  The purpose of this exercise is to facilitate 
+  the expansion of wildcard characters * and ? in 
+  filenames for OSs which don't know how to do it
+  themselves, like MSDOS, Windows 95 and NT.
+
+  The actual Dirty Work is done by the platform-
+  specific macro APPEND_FILESPEC.
+--*/
+
+typedef
+   struct zzzz {
+      Char        *name;
+      struct zzzz *link;
+   }
+   Cell;
+
+
+/*---------------------------------------------*/
+static 
+void *myMalloc ( Int32 n )
+{
+   void* p;
+
+   p = malloc ( (size_t)n );
+   if (p == NULL) outOfMemory ();
+   return p;
+}
+
+
+/*---------------------------------------------*/
+static 
+Cell *mkCell ( void )
+{
+   Cell *c;
+
+   c = (Cell*) myMalloc ( sizeof ( Cell ) );
+   c->name = NULL;
+   c->link = NULL;
+   return c;
+}
+
+
+/*---------------------------------------------*/
+static 
+Cell *snocString ( Cell *root, Char *name )
+{
+   if (root == NULL) {
+      Cell *tmp = mkCell();
+      tmp->name = (Char*) myMalloc ( 5 + strlen(name) );
+      strcpy ( tmp->name, name );
+      return tmp;
+   } else {
+      Cell *tmp = root;
+      while (tmp->link != NULL) tmp = tmp->link;
+      tmp->link = snocString ( tmp->link, name );
+      return root;
+   }
+}
+
+
+/*---------------------------------------------*/
+static 
+void addFlagsFromEnvVar ( Cell** argList, Char* varName ) 
+{
+   Int32 i, j, k;
+   Char *envbase, *p;
+
+   envbase = getenv(varName);
+   if (envbase != NULL) {
+      p = envbase;
+      i = 0;
+      while (True) {
+         if (p[i] == 0) break;
+         p += i;
+         i = 0;
+         while (isspace((Int32)(p[0]))) p++;
+         while (p[i] != 0 && !isspace((Int32)(p[i]))) i++;
+         if (i > 0) {
+            k = i; if (k > FILE_NAME_LEN-10) k = FILE_NAME_LEN-10;
+            for (j = 0; j < k; j++) tmpName[j] = p[j];
+            tmpName[k] = 0;
+            APPEND_FLAG(*argList, tmpName);
+         }
+      }
+   }
+}
+
+
+/*---------------------------------------------*/
+#define ISFLAG(s) (strcmp(aa->name, (s))==0)
+
+IntNative main ( IntNative argc, Char *argv[] )
+{
+   Int32  i, j;
+   Char   *tmp;
+   Cell   *argList;
+   Cell   *aa;
+   Bool   decode;
+
+   /*-- Be really really really paranoid :-) --*/
+   if (sizeof(Int32) != 4 || sizeof(UInt32) != 4  ||
+       sizeof(Int16) != 2 || sizeof(UInt16) != 2  ||
+       sizeof(Char)  != 1 || sizeof(UChar)  != 1)
+      configError();
+
+   /*-- Initialise --*/
+   outputHandleJustInCase  = NULL;
+   smallMode               = False;
+   keepInputFiles          = False;
+   forceOverwrite          = False;
+   noisy                   = True;
+   verbosity               = 0;
+   blockSize100k           = 9;
+   testFailsExist          = False;
+   unzFailsExist           = False;
+   numFileNames            = 0;
+   numFilesProcessed       = 0;
+   workFactor              = 30;
+   deleteOutputOnInterrupt = False;
+   exitValue               = 0;
+   i = j = 0; /* avoid bogus warning from egcs-1.1.X */
+
+   /*-- Set up signal handlers for mem access errors --*/
+   signal (SIGSEGV, mySIGSEGVorSIGBUScatcher);
+#  if BZ_UNIX
+#  ifndef __DJGPP__
+   signal (SIGBUS,  mySIGSEGVorSIGBUScatcher);
+#  endif
+#  endif
+
+   copyFileName ( inName,  "(none)" );
+   copyFileName ( outName, "(none)" );
+
+   copyFileName ( progNameReally, argv[0] );
+   progName = &progNameReally[0];
+   for (tmp = &progNameReally[0]; *tmp != '\0'; tmp++)
+      if (*tmp == PATH_SEP) progName = tmp + 1;
+
+
+   /*-- Copy flags from env var BZIP2, and 
+        expand filename wildcards in arg list.
+   --*/
+   argList = NULL;
+   addFlagsFromEnvVar ( &argList,  "BZIP2" );
+   addFlagsFromEnvVar ( &argList,  "BZIP" );
+   for (i = 1; i <= argc-1; i++)
+      APPEND_FILESPEC(argList, argv[i]);
+
+
+   /*-- Find the length of the longest filename --*/
+   longestFileName = 7;
+   numFileNames    = 0;
+   decode          = True;
+   for (aa = argList; aa != NULL; aa = aa->link) {
+      if (ISFLAG("--")) { decode = False; continue; }
+      if (aa->name[0] == '-' && decode) continue;
+      numFileNames++;
+      if (longestFileName < (Int32)strlen(aa->name) )
+         longestFileName = (Int32)strlen(aa->name);
+   }
+
+
+   /*-- Determine source modes; flag handling may change this too. --*/
+   if (numFileNames == 0)
+      srcMode = SM_I2O; else srcMode = SM_F2F;
+
+
+   /*-- Determine what to do (compress/uncompress/test/cat). --*/
+   /*-- Note that subsequent flag handling may change this. --*/
+   opMode = OM_Z;
+
+   if ( (strstr ( progName, "unzip" ) != 0) ||
+        (strstr ( progName, "UNZIP" ) != 0) )
+      opMode = OM_UNZ;
+
+   if ( (strstr ( progName, "z2cat" ) != 0) ||
+        (strstr ( progName, "Z2CAT" ) != 0) ||
+        (strstr ( progName, "zcat" ) != 0)  ||
+        (strstr ( progName, "ZCAT" ) != 0) )  {
+      opMode = OM_UNZ;
+      srcMode = (numFileNames == 0) ? SM_I2O : SM_F2O;
+   }
+
+
+   /*-- Look at the flags. --*/
+   for (aa = argList; aa != NULL; aa = aa->link) {
+      if (ISFLAG("--")) break;
+      if (aa->name[0] == '-' && aa->name[1] != '-') {
+         for (j = 1; aa->name[j] != '\0'; j++) {
+            switch (aa->name[j]) {
+               case 'c': srcMode          = SM_F2O; break;
+               case 'd': opMode           = OM_UNZ; break;
+               case 'z': opMode           = OM_Z; break;
+               case 'f': forceOverwrite   = True; break;
+               case 't': opMode           = OM_TEST; break;
+               case 'k': keepInputFiles   = True; break;
+               case 's': smallMode        = True; break;
+               case 'q': noisy            = False; break;
+               case '1': blockSize100k    = 1; break;
+               case '2': blockSize100k    = 2; break;
+               case '3': blockSize100k    = 3; break;
+               case '4': blockSize100k    = 4; break;
+               case '5': blockSize100k    = 5; break;
+               case '6': blockSize100k    = 6; break;
+               case '7': blockSize100k    = 7; break;
+               case '8': blockSize100k    = 8; break;
+               case '9': blockSize100k    = 9; break;
+               case 'V':
+               case 'L': license();            break;
+               case 'v': verbosity++; break;
+               case 'h': usage ( progName );
+                         exit ( 0 );
+                         break;
+               default:  fprintf ( stderr, "%s: Bad flag `%s'\n",
+                                   progName, aa->name );
+                         usage ( progName );
+                         exit ( 1 );
+                         break;
+            }
+         }
+      }
+   }
+   
+   /*-- And again ... --*/
+   for (aa = argList; aa != NULL; aa = aa->link) {
+      if (ISFLAG("--")) break;
+      if (ISFLAG("--stdout"))            srcMode          = SM_F2O;  else
+      if (ISFLAG("--decompress"))        opMode           = OM_UNZ;  else
+      if (ISFLAG("--compress"))          opMode           = OM_Z;    else
+      if (ISFLAG("--force"))             forceOverwrite   = True;    else
+      if (ISFLAG("--test"))              opMode           = OM_TEST; else
+      if (ISFLAG("--keep"))              keepInputFiles   = True;    else
+      if (ISFLAG("--small"))             smallMode        = True;    else
+      if (ISFLAG("--quiet"))             noisy            = False;   else
+      if (ISFLAG("--version"))           license();                  else
+      if (ISFLAG("--license"))           license();                  else
+      if (ISFLAG("--exponential"))       workFactor = 1;             else 
+      if (ISFLAG("--repetitive-best"))   redundant(aa->name);        else
+      if (ISFLAG("--repetitive-fast"))   redundant(aa->name);        else
+      if (ISFLAG("--fast"))              blockSize100k = 1;          else
+      if (ISFLAG("--best"))              blockSize100k = 9;          else
+      if (ISFLAG("--verbose"))           verbosity++;                else
+      if (ISFLAG("--help"))              { usage ( progName ); exit ( 0 ); }
+         else
+         if (strncmp ( aa->name, "--", 2) == 0) {
+            fprintf ( stderr, "%s: Bad flag `%s'\n", progName, aa->name );
+            usage ( progName );
+            exit ( 1 );
+         }
+   }
+
+   if (verbosity > 4) verbosity = 4;
+   if (opMode == OM_Z && smallMode && blockSize100k > 2) 
+      blockSize100k = 2;
+
+   if (opMode == OM_TEST && srcMode == SM_F2O) {
+      fprintf ( stderr, "%s: -c and -t cannot be used together.\n",
+                progName );
+      exit ( 1 );
+   }
+
+   if (srcMode == SM_F2O && numFileNames == 0)
+      srcMode = SM_I2O;
+
+   if (opMode != OM_Z) blockSize100k = 0;
+
+   if (srcMode == SM_F2F) {
+      signal (SIGINT,  mySignalCatcher);
+      signal (SIGTERM, mySignalCatcher);
+#     if BZ_UNIX
+      signal (SIGHUP,  mySignalCatcher);
+#     endif
+   }
+
+   if (opMode == OM_Z) {
+     if (srcMode == SM_I2O) {
+        compress ( NULL );
+     } else {
+        decode = True;
+        for (aa = argList; aa != NULL; aa = aa->link) {
+           if (ISFLAG("--")) { decode = False; continue; }
+           if (aa->name[0] == '-' && decode) continue;
+           numFilesProcessed++;
+           compress ( aa->name );
+        }
+     }
+   } 
+   else
+
+   if (opMode == OM_UNZ) {
+      unzFailsExist = False;
+      if (srcMode == SM_I2O) {
+         uncompress ( NULL );
+      } else {
+         decode = True;
+         for (aa = argList; aa != NULL; aa = aa->link) {
+            if (ISFLAG("--")) { decode = False; continue; }
+            if (aa->name[0] == '-' && decode) continue;
+            numFilesProcessed++;
+            uncompress ( aa->name );
+         }      
+      }
+      if (unzFailsExist) { 
+         setExit(2); 
+         exit(exitValue);
+      }
+   } 
+
+   else {
+      testFailsExist = False;
+      if (srcMode == SM_I2O) {
+         testf ( NULL );
+      } else {
+         decode = True;
+         for (aa = argList; aa != NULL; aa = aa->link) {
+	    if (ISFLAG("--")) { decode = False; continue; }
+            if (aa->name[0] == '-' && decode) continue;
+            numFilesProcessed++;
+            testf ( aa->name );
+	 }
+      }
+      if (testFailsExist && noisy) {
+         fprintf ( stderr,
+           "\n"
+           "You can use the `bzip2recover' program to attempt to recover\n"
+           "data from undamaged sections of corrupted files.\n\n"
+         );
+         setExit(2);
+         exit(exitValue);
+      }
+   }
+
+   /* Free the argument list memory to mollify leak detectors 
+      (eg) Purify, Checker.  Serves no other useful purpose.
+   */
+   aa = argList;
+   while (aa != NULL) {
+      Cell* aa2 = aa->link;
+      if (aa->name != NULL) free(aa->name);
+      free(aa);
+      aa = aa2;
+   }
+
+   return exitValue;
+}
+
+
+/*-----------------------------------------------------------*/
+/*--- end                                         bzip2.c ---*/
+/*-----------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/bzip2.txt b/commands/bzip2-1.0.3/bzip2.txt
new file mode 100644
index 000000000..bf895b6cb
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzip2.txt
@@ -0,0 +1,391 @@
+
+NAME
+       bzip2, bunzip2 - a block-sorting file compressor, v1.0.3
+       bzcat - decompresses files to stdout
+       bzip2recover - recovers data from damaged bzip2 files
+
+
+SYNOPSIS
+       bzip2 [ -cdfkqstvzVL123456789 ] [ filenames ...  ]
+       bunzip2 [ -fkvsVL ] [ filenames ...  ]
+       bzcat [ -s ] [ filenames ...  ]
+       bzip2recover filename
+
+
+DESCRIPTION
+       bzip2  compresses  files  using  the Burrows-Wheeler block
+       sorting text compression algorithm,  and  Huffman  coding.
+       Compression  is  generally  considerably  better than that
+       achieved by more conventional LZ77/LZ78-based compressors,
+       and  approaches  the performance of the PPM family of sta-
+       tistical compressors.
+
+       The command-line options are deliberately very similar  to
+       those of GNU gzip, but they are not identical.
+
+       bzip2  expects  a list of file names to accompany the com-
+       mand-line flags.  Each file is replaced  by  a  compressed
+       version  of  itself,  with  the  name "original_name.bz2".
+       Each compressed file has the same modification date,  per-
+       missions, and, when possible, ownership as the correspond-
+       ing original, so that these properties  can  be  correctly
+       restored  at  decompression  time.   File name handling is
+       naive in the sense that there is no mechanism for preserv-
+       ing  original file names, permissions, ownerships or dates
+       in filesystems which lack these concepts, or have  serious
+       file name length restrictions, such as MS-DOS.
+
+       bzip2  and  bunzip2 will by default not overwrite existing
+       files.  If you want this to happen, specify the -f flag.
+
+       If no file names  are  specified,  bzip2  compresses  from
+       standard  input  to  standard output.  In this case, bzip2
+       will decline to write compressed output to a terminal,  as
+       this  would  be  entirely  incomprehensible  and therefore
+       pointless.
+
+       bunzip2 (or bzip2 -d) decompresses  all  specified  files.
+       Files which were not created by bzip2 will be detected and
+       ignored, and a warning issued.  bzip2  attempts  to  guess
+       the  filename  for  the decompressed file from that of the
+       compressed file as follows:
+
+              filename.bz2    becomes   filename
+              filename.bz     becomes   filename
+              filename.tbz2   becomes   filename.tar
+              filename.tbz    becomes   filename.tar
+              anyothername    becomes   anyothername.out
+
+       If the file does not end in one of the recognised endings,
+       .bz2,  .bz,  .tbz2 or .tbz, bzip2 complains that it cannot
+       guess the name of the original file, and uses the original
+       name with .out appended.
+
+       As  with compression, supplying no filenames causes decom-
+       pression from standard input to standard output.
+
+       bunzip2 will correctly decompress a file which is the con-
+       catenation of two or more compressed files.  The result is
+       the concatenation of the corresponding uncompressed files.
+       Integrity testing (-t) of concatenated compressed files is
+       also supported.
+
+       You can also compress or decompress files to the  standard
+       output  by giving the -c flag.  Multiple files may be com-
+       pressed and decompressed like this.  The resulting outputs
+       are  fed  sequentially to stdout.  Compression of multiple
+       files in this manner generates a stream containing  multi-
+       ple compressed file representations.  Such a stream can be
+       decompressed correctly only  by  bzip2  version  0.9.0  or
+       later.   Earlier  versions of bzip2 will stop after decom-
+       pressing the first file in the stream.
+
+       bzcat (or bzip2 -dc) decompresses all specified  files  to
+       the standard output.
+
+       bzip2  will  read arguments from the environment variables
+       BZIP2 and BZIP, in  that  order,  and  will  process  them
+       before  any  arguments  read  from the command line.  This
+       gives a convenient way to supply default arguments.
+
+       Compression is always performed, even  if  the  compressed
+       file  is slightly larger than the original.  Files of less
+       than about one hundred bytes tend to get larger, since the
+       compression  mechanism  has  a  constant  overhead  in the
+       region of 50 bytes.  Random data (including the output  of
+       most  file  compressors)  is  coded at about 8.05 bits per
+       byte, giving an expansion of around 0.5%.
+
+       As a self-check for your  protection,  bzip2  uses  32-bit
+       CRCs  to make sure that the decompressed version of a file
+       is identical to the original.  This guards against corrup-
+       tion  of  the compressed data, and against undetected bugs
+       in bzip2 (hopefully very unlikely).  The chances  of  data
+       corruption  going  undetected  is  microscopic,  about one
+       chance in four billion for each file processed.  Be aware,
+       though,  that  the  check occurs upon decompression, so it
+       can only tell you that something is wrong.  It can't  help
+       you  recover  the original uncompressed data.  You can use
+       bzip2recover to try to recover data from damaged files.
+
+       Return values: 0 for a normal exit,  1  for  environmental
+       problems  (file not found, invalid flags, I/O errors, &c),
+       2 to indicate a corrupt compressed file, 3 for an internal
+       consistency error (eg, bug) which caused bzip2 to panic.
+
+
+OPTIONS
+       -c --stdout
+              Compress or decompress to standard output.
+
+       -d --decompress
+              Force  decompression.  bzip2, bunzip2 and bzcat are
+              really the same program,  and  the  decision  about
+              what  actions to take is done on the basis of which
+              name is used.  This flag overrides that  mechanism,
+              and forces bzip2 to decompress.
+
+       -z --compress
+              The   complement   to   -d:   forces   compression,
+              regardless of the invocation name.
+
+       -t --test
+              Check integrity of the specified file(s), but don't
+              decompress  them.   This  really  performs  a trial
+              decompression and throws away the result.
+
+       -f --force
+              Force overwrite of output files.   Normally,  bzip2
+              will  not  overwrite  existing  output files.  Also
+              forces bzip2 to break hard links to files, which it
+              otherwise wouldn't do.
+
+              bzip2  normally  declines to decompress files which
+              don't have the  correct  magic  header  bytes.   If
+              forced  (-f),  however,  it  will  pass  such files
+              through unmodified.  This is how GNU gzip  behaves.
+
+       -k --keep
+              Keep  (don't delete) input files during compression
+              or decompression.
+
+       -s --small
+              Reduce memory usage, for compression, decompression
+              and  testing.   Files  are  decompressed and tested
+              using a modified algorithm which only requires  2.5
+              bytes  per  block byte.  This means any file can be
+              decompressed in 2300k of memory,  albeit  at  about
+              half the normal speed.
+
+              During  compression,  -s  selects  a  block size of
+              200k, which limits memory use to  around  the  same
+              figure,  at  the expense of your compression ratio.
+              In short, if your  machine  is  low  on  memory  (8
+              megabytes  or  less),  use  -s for everything.  See
+              MEMORY MANAGEMENT below.
+
+       -q --quiet
+              Suppress non-essential warning messages.   Messages
+              pertaining  to I/O errors and other critical events
+              will not be suppressed.
+
+       -v --verbose
+              Verbose mode -- show the compression ratio for each
+              file  processed.   Further  -v's  increase the ver-
+              bosity level, spewing out lots of information which
+              is primarily of interest for diagnostic purposes.
+
+       -L --license -V --version
+              Display  the  software  version,  license terms and
+              conditions.
+
+       -1 (or --fast) to -9 (or --best)
+              Set the block size to 100 k, 200 k ..  900  k  when
+              compressing.   Has  no  effect  when decompressing.
+              See MEMORY MANAGEMENT below.  The --fast and --best
+              aliases  are  primarily for GNU gzip compatibility.
+              In particular, --fast doesn't make things  signifi-
+              cantly  faster.   And  --best  merely  selects  the
+              default behaviour.
+
+       --     Treats all subsequent arguments as file names, even
+              if they start with a dash.  This is so you can han-
+              dle files with names beginning  with  a  dash,  for
+              example: bzip2 -- -myfilename.
+
+       --repetitive-fast --repetitive-best
+              These  flags  are  redundant  in versions 0.9.5 and
+              above.  They provided some coarse control over  the
+              behaviour  of the sorting algorithm in earlier ver-
+              sions, which was sometimes useful.  0.9.5 and above
+              have  an  improved  algorithm  which  renders these
+              flags irrelevant.
+
+
+MEMORY MANAGEMENT
+       bzip2 compresses large files in blocks.   The  block  size
+       affects  both  the  compression  ratio  achieved,  and the
+       amount of memory needed for compression and decompression.
+       The  flags  -1  through  -9  specify  the block size to be
+       100,000 bytes through 900,000 bytes (the default)  respec-
+       tively.   At  decompression  time, the block size used for
+       compression is read from  the  header  of  the  compressed
+       file, and bunzip2 then allocates itself just enough memory
+       to decompress the file.  Since block sizes are  stored  in
+       compressed  files,  it follows that the flags -1 to -9 are
+       irrelevant to and so ignored during decompression.
+
+       Compression and decompression requirements, in bytes,  can
+       be estimated as:
+
+              Compression:   400k + ( 8 x block size )
+
+              Decompression: 100k + ( 4 x block size ), or
+                             100k + ( 2.5 x block size )
+
+       Larger  block  sizes  give  rapidly  diminishing  marginal
+       returns.  Most of the compression comes from the first two
+       or  three hundred k of block size, a fact worth bearing in
+       mind when using bzip2  on  small  machines.   It  is  also
+       important  to  appreciate  that  the  decompression memory
+       requirement is set at compression time by  the  choice  of
+       block size.
+
+       For  files  compressed  with  the default 900k block size,
+       bunzip2 will require about 3700 kbytes to decompress.   To
+       support decompression of any file on a 4 megabyte machine,
+       bunzip2 has an option to  decompress  using  approximately
+       half this amount of memory, about 2300 kbytes.  Decompres-
+       sion speed is also halved, so you should use  this  option
+       only where necessary.  The relevant flag is -s.
+
+       In general, try and use the largest block size memory con-
+       straints  allow,  since  that  maximises  the  compression
+       achieved.   Compression and decompression speed are virtu-
+       ally unaffected by block size.
+
+       Another significant point applies to files which fit in  a
+       single  block  --  that  means  most files you'd encounter
+       using a large block  size.   The  amount  of  real  memory
+       touched is proportional to the size of the file, since the
+       file is smaller than a block.  For example, compressing  a
+       file  20,000  bytes  long  with the flag -9 will cause the
+       compressor to allocate around 7600k of  memory,  but  only
+       touch 400k + 20000 * 8 = 560 kbytes of it.  Similarly, the
+       decompressor will allocate 3700k but  only  touch  100k  +
+       20000 * 4 = 180 kbytes.
+
+       Here  is a table which summarises the maximum memory usage
+       for different block sizes.  Also  recorded  is  the  total
+       compressed  size for 14 files of the Calgary Text Compres-
+       sion Corpus totalling 3,141,622 bytes.  This column  gives
+       some  feel  for  how  compression  varies with block size.
+       These figures tend to understate the advantage  of  larger
+       block  sizes  for  larger files, since the Corpus is domi-
+       nated by smaller files.
+
+                  Compress   Decompress   Decompress   Corpus
+           Flag     usage      usage       -s usage     Size
+
+            -1      1200k       500k         350k      914704
+            -2      2000k       900k         600k      877703
+            -3      2800k      1300k         850k      860338
+            -4      3600k      1700k        1100k      846899
+            -5      4400k      2100k        1350k      845160
+            -6      5200k      2500k        1600k      838626
+            -7      6100k      2900k        1850k      834096
+            -8      6800k      3300k        2100k      828642
+            -9      7600k      3700k        2350k      828642
+
+
+RECOVERING DATA FROM DAMAGED FILES
+       bzip2 compresses files in blocks, usually 900kbytes  long.
+       Each block is handled independently.  If a media or trans-
+       mission error causes a multi-block  .bz2  file  to  become
+       damaged,  it  may  be  possible  to  recover data from the
+       undamaged blocks in the file.
+
+       The compressed representation of each block  is  delimited
+       by  a  48-bit pattern, which makes it possible to find the
+       block boundaries with reasonable  certainty.   Each  block
+       also  carries its own 32-bit CRC, so damaged blocks can be
+       distinguished from undamaged ones.
+
+       bzip2recover is a  simple  program  whose  purpose  is  to
+       search  for blocks in .bz2 files, and write each block out
+       into its own .bz2 file.  You can then use bzip2 -t to test
+       the integrity of the resulting files, and decompress those
+       which are undamaged.
+
+       bzip2recover takes a single argument, the name of the dam-
+       aged    file,    and    writes    a    number   of   files
+       "rec00001file.bz2",  "rec00002file.bz2",  etc,  containing
+       the   extracted   blocks.   The   output   filenames   are
+       designed  so  that the use of wildcards in subsequent pro-
+       cessing  -- for example, "bzip2 -dc  rec*file.bz2 > recov-
+       ered_data" -- processes the files in the correct order.
+
+       bzip2recover should be of most use dealing with large .bz2
+       files,  as  these will contain many blocks.  It is clearly
+       futile to use it on damaged single-block  files,  since  a
+       damaged  block  cannot  be recovered.  If you wish to min-
+       imise any potential data loss through media  or  transmis-
+       sion errors, you might consider compressing with a smaller
+       block size.
+
+
+PERFORMANCE NOTES
+       The sorting phase of compression gathers together  similar
+       strings  in  the  file.  Because of this, files containing
+       very long runs of  repeated  symbols,  like  "aabaabaabaab
+       ..."   (repeated  several hundred times) may compress more
+       slowly than normal.  Versions 0.9.5 and  above  fare  much
+       better  than previous versions in this respect.  The ratio
+       between worst-case and average-case compression time is in
+       the  region  of  10:1.  For previous versions, this figure
+       was more like 100:1.  You can use the -vvvv option to mon-
+       itor progress in great detail, if you want.
+
+       Decompression speed is unaffected by these phenomena.
+
+       bzip2  usually  allocates  several  megabytes of memory to
+       operate in, and then charges all over it in a fairly  ran-
+       dom  fashion.   This means that performance, both for com-
+       pressing and decompressing, is largely determined  by  the
+       speed  at  which  your  machine  can service cache misses.
+       Because of this, small changes to the code to  reduce  the
+       miss  rate  have  been observed to give disproportionately
+       large performance improvements.  I imagine bzip2 will per-
+       form best on machines with very large caches.
+
+
+CAVEATS
+       I/O  error  messages  are not as helpful as they could be.
+       bzip2 tries hard to detect I/O errors  and  exit  cleanly,
+       but  the  details  of  what  the problem is sometimes seem
+       rather misleading.
+
+       This manual page pertains to version 1.0.3 of bzip2.  Com-
+       pressed  data created by this version is entirely forwards
+       and  backwards  compatible  with   the   previous   public
+       releases,  versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1 and
+       1.0.2, but with the following exception: 0.9.0  and  above
+       can  correctly decompress multiple concatenated compressed
+       files.  0.1pl2 cannot do this; it will stop  after  decom-
+       pressing just the first file in the stream.
+
+       bzip2recover  versions prior to 1.0.2 used 32-bit integers
+       to represent bit positions in compressed  files,  so  they
+       could  not handle compressed files more than 512 megabytes
+       long.  Versions 1.0.2 and above use 64-bit  ints  on  some
+       platforms  which  support them (GNU supported targets, and
+       Windows).  To establish whether or  not  bzip2recover  was
+       built  with  such  a limitation, run it without arguments.
+       In any event you can build yourself an  unlimited  version
+       if  you  can  recompile  it  with MaybeUInt64 set to be an
+       unsigned 64-bit integer.
+
+
+AUTHOR
+       Julian Seward, jsewardbzip.org.
+
+       http://www.bzip.org
+
+       The ideas embodied in bzip2 are due to (at least) the fol-
+       lowing  people: Michael Burrows and David Wheeler (for the
+       block sorting transformation), David Wheeler  (again,  for
+       the Huffman coder), Peter Fenwick (for the structured cod-
+       ing model in the original bzip, and many refinements), and
+       Alistair  Moffat,  Radford  Neal  and  Ian Witten (for the
+       arithmetic  coder  in  the  original  bzip).   I  am  much
+       indebted for their help, support and advice.  See the man-
+       ual in the source distribution for pointers to sources  of
+       documentation.  Christian von Roques encouraged me to look
+       for faster sorting algorithms, so as to speed up  compres-
+       sion.  Bela Lubkin encouraged me to improve the worst-case
+       compression performance.  Donna Robinson XMLised the docu-
+       mentation.   The bz* scripts are derived from those of GNU
+       gzip.  Many people sent patches, helped  with  portability
+       problems,  lent  machines,  gave advice and were generally
+       helpful.
+
diff --git a/commands/bzip2-1.0.3/bzip2recover.c b/commands/bzip2-1.0.3/bzip2recover.c
new file mode 100644
index 000000000..5cd405dd4
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzip2recover.c
@@ -0,0 +1,546 @@
+
+/*-----------------------------------------------------------*/
+/*--- Block recoverer program for bzip2                   ---*/
+/*---                                      bzip2recover.c ---*/
+/*-----------------------------------------------------------*/
+
+/*--
+  This program is bzip2recover, a program to attempt data 
+  salvage from damaged files created by the accompanying
+  bzip2-1.0.3 program.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0.3 of 15 February 2005
+--*/
+
+/*--
+  This program is a complete hack and should be rewritten
+  properly.  It isn't very complicated.
+--*/
+
+#include 
+#include 
+#include 
+#include 
+
+
+/* This program records bit locations in the file to be recovered.
+   That means that if 64-bit ints are not supported, we will not
+   be able to recover .bz2 files over 512MB (2^32 bits) long.
+   On GNU supported platforms, we take advantage of the 64-bit
+   int support to circumvent this problem.  Ditto MSVC.
+
+   This change occurred in version 1.0.2; all prior versions have
+   the 512MB limitation.
+*/
+#ifdef __GNUC__
+   typedef  unsigned long long int  MaybeUInt64;
+#  define MaybeUInt64_FMT "%Lu"
+#else
+#ifdef _MSC_VER
+   typedef  unsigned __int64  MaybeUInt64;
+#  define MaybeUInt64_FMT "%I64u"
+#else
+   typedef  unsigned int   MaybeUInt64;
+#  define MaybeUInt64_FMT "%u"
+#endif
+#endif
+
+typedef  unsigned int   UInt32;
+typedef  int            Int32;
+typedef  unsigned char  UChar;
+typedef  char           Char;
+typedef  unsigned char  Bool;
+#define True    ((Bool)1)
+#define False   ((Bool)0)
+
+
+#define BZ_MAX_FILENAME 2000
+
+Char inFileName[BZ_MAX_FILENAME];
+Char outFileName[BZ_MAX_FILENAME];
+Char progName[BZ_MAX_FILENAME];
+
+MaybeUInt64 bytesOut = 0;
+MaybeUInt64 bytesIn  = 0;
+
+
+/*---------------------------------------------------*/
+/*--- Header bytes                                ---*/
+/*---------------------------------------------------*/
+
+#define BZ_HDR_B 0x42                         /* 'B' */
+#define BZ_HDR_Z 0x5a                         /* 'Z' */
+#define BZ_HDR_h 0x68                         /* 'h' */
+#define BZ_HDR_0 0x30                         /* '0' */
+ 
+
+/*---------------------------------------------------*/
+/*--- I/O errors                                  ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------*/
+void readError ( void )
+{
+   fprintf ( stderr,
+             "%s: I/O error reading `%s', possible reason follows.\n",
+            progName, inFileName );
+   perror ( progName );
+   fprintf ( stderr, "%s: warning: output file(s) may be incomplete.\n",
+             progName );
+   exit ( 1 );
+}
+
+
+/*---------------------------------------------*/
+void writeError ( void )
+{
+   fprintf ( stderr,
+             "%s: I/O error reading `%s', possible reason follows.\n",
+            progName, inFileName );
+   perror ( progName );
+   fprintf ( stderr, "%s: warning: output file(s) may be incomplete.\n",
+             progName );
+   exit ( 1 );
+}
+
+
+/*---------------------------------------------*/
+void mallocFail ( Int32 n )
+{
+   fprintf ( stderr,
+             "%s: malloc failed on request for %d bytes.\n",
+            progName, n );
+   fprintf ( stderr, "%s: warning: output file(s) may be incomplete.\n",
+             progName );
+   exit ( 1 );
+}
+
+
+/*---------------------------------------------*/
+void tooManyBlocks ( Int32 max_handled_blocks )
+{
+   fprintf ( stderr,
+             "%s: `%s' appears to contain more than %d blocks\n",
+            progName, inFileName, max_handled_blocks );
+   fprintf ( stderr,
+             "%s: and cannot be handled.  To fix, increase\n",
+             progName );
+   fprintf ( stderr, 
+             "%s: BZ_MAX_HANDLED_BLOCKS in bzip2recover.c, and recompile.\n",
+             progName );
+   exit ( 1 );
+}
+
+
+
+/*---------------------------------------------------*/
+/*--- Bit stream I/O                              ---*/
+/*---------------------------------------------------*/
+
+typedef
+   struct {
+      FILE*  handle;
+      Int32  buffer;
+      Int32  buffLive;
+      Char   mode;
+   }
+   BitStream;
+
+
+/*---------------------------------------------*/
+BitStream* bsOpenReadStream ( FILE* stream )
+{
+   BitStream *bs = malloc ( sizeof(BitStream) );
+   if (bs == NULL) mallocFail ( sizeof(BitStream) );
+   bs->handle = stream;
+   bs->buffer = 0;
+   bs->buffLive = 0;
+   bs->mode = 'r';
+   return bs;
+}
+
+
+/*---------------------------------------------*/
+BitStream* bsOpenWriteStream ( FILE* stream )
+{
+   BitStream *bs = malloc ( sizeof(BitStream) );
+   if (bs == NULL) mallocFail ( sizeof(BitStream) );
+   bs->handle = stream;
+   bs->buffer = 0;
+   bs->buffLive = 0;
+   bs->mode = 'w';
+   return bs;
+}
+
+
+/*---------------------------------------------*/
+void bsPutBit ( BitStream* bs, Int32 bit )
+{
+   if (bs->buffLive == 8) {
+      Int32 retVal = putc ( (UChar) bs->buffer, bs->handle );
+      if (retVal == EOF) writeError();
+      bytesOut++;
+      bs->buffLive = 1;
+      bs->buffer = bit & 0x1;
+   } else {
+      bs->buffer = ( (bs->buffer << 1) | (bit & 0x1) );
+      bs->buffLive++;
+   };
+}
+
+
+/*---------------------------------------------*/
+/*--
+   Returns 0 or 1, or 2 to indicate EOF.
+--*/
+Int32 bsGetBit ( BitStream* bs )
+{
+   if (bs->buffLive > 0) {
+      bs->buffLive --;
+      return ( ((bs->buffer) >> (bs->buffLive)) & 0x1 );
+   } else {
+      Int32 retVal = getc ( bs->handle );
+      if ( retVal == EOF ) {
+         if (errno != 0) readError();
+         return 2;
+      }
+      bs->buffLive = 7;
+      bs->buffer = retVal;
+      return ( ((bs->buffer) >> 7) & 0x1 );
+   }
+}
+
+
+/*---------------------------------------------*/
+void bsClose ( BitStream* bs )
+{
+   Int32 retVal;
+
+   if ( bs->mode == 'w' ) {
+      while ( bs->buffLive < 8 ) {
+         bs->buffLive++;
+         bs->buffer <<= 1;
+      };
+      retVal = putc ( (UChar) (bs->buffer), bs->handle );
+      if (retVal == EOF) writeError();
+      bytesOut++;
+      retVal = fflush ( bs->handle );
+      if (retVal == EOF) writeError();
+   }
+   retVal = fclose ( bs->handle );
+   if (retVal == EOF) {
+      if (bs->mode == 'w') writeError(); else readError();
+   }
+   free ( bs );
+}
+
+
+/*---------------------------------------------*/
+void bsPutUChar ( BitStream* bs, UChar c )
+{
+   Int32 i;
+   for (i = 7; i >= 0; i--)
+      bsPutBit ( bs, (((UInt32) c) >> i) & 0x1 );
+}
+
+
+/*---------------------------------------------*/
+void bsPutUInt32 ( BitStream* bs, UInt32 c )
+{
+   Int32 i;
+
+   for (i = 31; i >= 0; i--)
+      bsPutBit ( bs, (c >> i) & 0x1 );
+}
+
+
+/*---------------------------------------------*/
+Bool endsInBz2 ( Char* name )
+{
+   Int32 n = strlen ( name );
+   if (n <= 4) return False;
+   return
+      (name[n-4] == '.' &&
+       name[n-3] == 'b' &&
+       name[n-2] == 'z' &&
+       name[n-1] == '2');
+}
+
+
+/*---------------------------------------------------*/
+/*---                                             ---*/
+/*---------------------------------------------------*/
+
+/* This logic isn't really right when it comes to Cygwin. */
+#ifdef _WIN32
+#  define  BZ_SPLIT_SYM  '\\'  /* path splitter on Windows platform */
+#else
+#  define  BZ_SPLIT_SYM  '/'   /* path splitter on Unix platform */
+#endif
+
+#define BLOCK_HEADER_HI  0x00003141UL
+#define BLOCK_HEADER_LO  0x59265359UL
+
+#define BLOCK_ENDMARK_HI 0x00001772UL
+#define BLOCK_ENDMARK_LO 0x45385090UL
+
+/* Increase if necessary.  However, a .bz2 file with > 50000 blocks
+   would have an uncompressed size of at least 40GB, so the chances
+   are low you'll need to up this.
+*/
+#define BZ_MAX_HANDLED_BLOCKS 50000
+
+MaybeUInt64 bStart [BZ_MAX_HANDLED_BLOCKS];
+MaybeUInt64 bEnd   [BZ_MAX_HANDLED_BLOCKS];
+MaybeUInt64 rbStart[BZ_MAX_HANDLED_BLOCKS];
+MaybeUInt64 rbEnd  [BZ_MAX_HANDLED_BLOCKS];
+
+Int32 main ( Int32 argc, Char** argv )
+{
+   FILE*       inFile;
+   FILE*       outFile;
+   BitStream*  bsIn, *bsWr;
+   Int32       b, wrBlock, currBlock, rbCtr;
+   MaybeUInt64 bitsRead;
+
+   UInt32      buffHi, buffLo, blockCRC;
+   Char*       p;
+
+   strcpy ( progName, argv[0] );
+   inFileName[0] = outFileName[0] = 0;
+
+   fprintf ( stderr, 
+             "bzip2recover 1.0.3: extracts blocks from damaged .bz2 files.\n" );
+
+   if (argc != 2) {
+      fprintf ( stderr, "%s: usage is `%s damaged_file_name'.\n",
+                        progName, progName );
+      switch (sizeof(MaybeUInt64)) {
+         case 8:
+            fprintf(stderr, 
+                    "\trestrictions on size of recovered file: None\n");
+            break;
+         case 4:
+            fprintf(stderr, 
+                    "\trestrictions on size of recovered file: 512 MB\n");
+            fprintf(stderr, 
+                    "\tto circumvent, recompile with MaybeUInt64 as an\n"
+                    "\tunsigned 64-bit int.\n");
+            break;
+         default:
+            fprintf(stderr, 
+                    "\tsizeof(MaybeUInt64) is not 4 or 8 -- "
+                    "configuration error.\n");
+            break;
+      }
+      exit(1);
+   }
+
+   if (strlen(argv[1]) >= BZ_MAX_FILENAME-20) {
+      fprintf ( stderr, 
+                "%s: supplied filename is suspiciously (>= %d chars) long.  Bye!\n",
+                progName, (int)strlen(argv[1]) );
+      exit(1);
+   }
+
+   strcpy ( inFileName, argv[1] );
+
+   inFile = fopen ( inFileName, "rb" );
+   if (inFile == NULL) {
+      fprintf ( stderr, "%s: can't read `%s'\n", progName, inFileName );
+      exit(1);
+   }
+
+   bsIn = bsOpenReadStream ( inFile );
+   fprintf ( stderr, "%s: searching for block boundaries ...\n", progName );
+
+   bitsRead = 0;
+   buffHi = buffLo = 0;
+   currBlock = 0;
+   bStart[currBlock] = 0;
+
+   rbCtr = 0;
+
+   while (True) {
+      b = bsGetBit ( bsIn );
+      bitsRead++;
+      if (b == 2) {
+         if (bitsRead >= bStart[currBlock] &&
+            (bitsRead - bStart[currBlock]) >= 40) {
+            bEnd[currBlock] = bitsRead-1;
+            if (currBlock > 0)
+               fprintf ( stderr, "   block %d runs from " MaybeUInt64_FMT 
+                                 " to " MaybeUInt64_FMT " (incomplete)\n",
+                         currBlock,  bStart[currBlock], bEnd[currBlock] );
+         } else
+            currBlock--;
+         break;
+      }
+      buffHi = (buffHi << 1) | (buffLo >> 31);
+      buffLo = (buffLo << 1) | (b & 1);
+      if ( ( (buffHi & 0x0000ffff) == BLOCK_HEADER_HI 
+             && buffLo == BLOCK_HEADER_LO)
+           || 
+           ( (buffHi & 0x0000ffff) == BLOCK_ENDMARK_HI 
+             && buffLo == BLOCK_ENDMARK_LO)
+         ) {
+         if (bitsRead > 49) {
+            bEnd[currBlock] = bitsRead-49;
+         } else {
+            bEnd[currBlock] = 0;
+         }
+         if (currBlock > 0 &&
+	     (bEnd[currBlock] - bStart[currBlock]) >= 130) {
+            fprintf ( stderr, "   block %d runs from " MaybeUInt64_FMT 
+                              " to " MaybeUInt64_FMT "\n",
+                      rbCtr+1,  bStart[currBlock], bEnd[currBlock] );
+            rbStart[rbCtr] = bStart[currBlock];
+            rbEnd[rbCtr] = bEnd[currBlock];
+            rbCtr++;
+         }
+         if (currBlock >= BZ_MAX_HANDLED_BLOCKS)
+            tooManyBlocks(BZ_MAX_HANDLED_BLOCKS);
+         currBlock++;
+
+         bStart[currBlock] = bitsRead;
+      }
+   }
+
+   bsClose ( bsIn );
+
+   /*-- identified blocks run from 1 to rbCtr inclusive. --*/
+
+   if (rbCtr < 1) {
+      fprintf ( stderr,
+                "%s: sorry, I couldn't find any block boundaries.\n",
+                progName );
+      exit(1);
+   };
+
+   fprintf ( stderr, "%s: splitting into blocks\n", progName );
+
+   inFile = fopen ( inFileName, "rb" );
+   if (inFile == NULL) {
+      fprintf ( stderr, "%s: can't open `%s'\n", progName, inFileName );
+      exit(1);
+   }
+   bsIn = bsOpenReadStream ( inFile );
+
+   /*-- placate gcc's dataflow analyser --*/
+   blockCRC = 0; bsWr = 0;
+
+   bitsRead = 0;
+   outFile = NULL;
+   wrBlock = 0;
+   while (True) {
+      b = bsGetBit(bsIn);
+      if (b == 2) break;
+      buffHi = (buffHi << 1) | (buffLo >> 31);
+      buffLo = (buffLo << 1) | (b & 1);
+      if (bitsRead == 47+rbStart[wrBlock]) 
+         blockCRC = (buffHi << 16) | (buffLo >> 16);
+
+      if (outFile != NULL && bitsRead >= rbStart[wrBlock]
+                          && bitsRead <= rbEnd[wrBlock]) {
+         bsPutBit ( bsWr, b );
+      }
+
+      bitsRead++;
+
+      if (bitsRead == rbEnd[wrBlock]+1) {
+         if (outFile != NULL) {
+            bsPutUChar ( bsWr, 0x17 ); bsPutUChar ( bsWr, 0x72 );
+            bsPutUChar ( bsWr, 0x45 ); bsPutUChar ( bsWr, 0x38 );
+            bsPutUChar ( bsWr, 0x50 ); bsPutUChar ( bsWr, 0x90 );
+            bsPutUInt32 ( bsWr, blockCRC );
+            bsClose ( bsWr );
+         }
+         if (wrBlock >= rbCtr) break;
+         wrBlock++;
+      } else
+      if (bitsRead == rbStart[wrBlock]) {
+         /* Create the output file name, correctly handling leading paths. 
+            (31.10.2001 by Sergey E. Kusikov) */
+         Char* split;
+         Int32 ofs, k;
+         for (k = 0; k < BZ_MAX_FILENAME; k++) 
+            outFileName[k] = 0;
+         strcpy (outFileName, inFileName);
+         split = strrchr (outFileName, BZ_SPLIT_SYM);
+         if (split == NULL) {
+            split = outFileName;
+         } else {
+            ++split;
+	 }
+	 /* Now split points to the start of the basename. */
+         ofs  = split - outFileName;
+         sprintf (split, "rec%5d", wrBlock+1);
+         for (p = split; *p != 0; p++) if (*p == ' ') *p = '0';
+         strcat (outFileName, inFileName + ofs);
+
+         if ( !endsInBz2(outFileName)) strcat ( outFileName, ".bz2" );
+
+         fprintf ( stderr, "   writing block %d to `%s' ...\n",
+                           wrBlock+1, outFileName );
+
+         outFile = fopen ( outFileName, "wb" );
+         if (outFile == NULL) {
+            fprintf ( stderr, "%s: can't write `%s'\n",
+                      progName, outFileName );
+            exit(1);
+         }
+         bsWr = bsOpenWriteStream ( outFile );
+         bsPutUChar ( bsWr, BZ_HDR_B );    
+         bsPutUChar ( bsWr, BZ_HDR_Z );    
+         bsPutUChar ( bsWr, BZ_HDR_h );    
+         bsPutUChar ( bsWr, BZ_HDR_0 + 9 );
+         bsPutUChar ( bsWr, 0x31 ); bsPutUChar ( bsWr, 0x41 );
+         bsPutUChar ( bsWr, 0x59 ); bsPutUChar ( bsWr, 0x26 );
+         bsPutUChar ( bsWr, 0x53 ); bsPutUChar ( bsWr, 0x59 );
+      }
+   }
+
+   fprintf ( stderr, "%s: finished\n", progName );
+   return 0;
+}
+
+
+
+/*-----------------------------------------------------------*/
+/*--- end                                  bzip2recover.c ---*/
+/*-----------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/bzlib.c b/commands/bzip2-1.0.3/bzlib.c
new file mode 100644
index 000000000..e9c1e879d
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzlib.c
@@ -0,0 +1,1616 @@
+
+/*-------------------------------------------------------------*/
+/*--- Library top-level functions.                          ---*/
+/*---                                               bzlib.c ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+/*--
+   CHANGES
+   ~~~~~~~
+   0.9.0 -- original version.
+
+   0.9.0a/b -- no changes in this file.
+
+   0.9.0c
+      * made zero-length BZ_FLUSH work correctly in bzCompress().
+      * fixed bzWrite/bzRead to ignore zero-length requests.
+      * fixed bzread to correctly handle read requests after EOF.
+      * wrong parameter order in call to bzDecompressInit in
+        bzBuffToBuffDecompress.  Fixed.
+--*/
+
+#include "bzlib_private.h"
+
+
+/*---------------------------------------------------*/
+/*--- Compression stuff                           ---*/
+/*---------------------------------------------------*/
+
+
+/*---------------------------------------------------*/
+#ifndef BZ_NO_STDIO
+void BZ2_bz__AssertH__fail ( int errcode )
+{
+   fprintf(stderr, 
+      "\n\nbzip2/libbzip2: internal error number %d.\n"
+      "This is a bug in bzip2/libbzip2, %s.\n"
+      "Please report it to me at: jseward@bzip.org.  If this happened\n"
+      "when you were using some program which uses libbzip2 as a\n"
+      "component, you should also report this bug to the author(s)\n"
+      "of that program.  Please make an effort to report this bug;\n"
+      "timely and accurate bug reports eventually lead to higher\n"
+      "quality software.  Thanks.  Julian Seward, 15 February 2005.\n\n",
+      errcode,
+      BZ2_bzlibVersion()
+   );
+
+   if (errcode == 1007) {
+   fprintf(stderr,
+      "\n*** A special note about internal error number 1007 ***\n"
+      "\n"
+      "Experience suggests that a common cause of i.e. 1007\n"
+      "is unreliable memory or other hardware.  The 1007 assertion\n"
+      "just happens to cross-check the results of huge numbers of\n"
+      "memory reads/writes, and so acts (unintendedly) as a stress\n"
+      "test of your memory system.\n"
+      "\n"
+      "I suggest the following: try compressing the file again,\n"
+      "possibly monitoring progress in detail with the -vv flag.\n"
+      "\n"
+      "* If the error cannot be reproduced, and/or happens at different\n"
+      "  points in compression, you may have a flaky memory system.\n"
+      "  Try a memory-test program.  I have used Memtest86\n"
+      "  (www.memtest86.com).  At the time of writing it is free (GPLd).\n"
+      "  Memtest86 tests memory much more thorougly than your BIOSs\n"
+      "  power-on test, and may find failures that the BIOS doesn't.\n"
+      "\n"
+      "* If the error can be repeatably reproduced, this is a bug in\n"
+      "  bzip2, and I would very much like to hear about it.  Please\n"
+      "  let me know, and, ideally, save a copy of the file causing the\n"
+      "  problem -- without which I will be unable to investigate it.\n"
+      "\n"
+   );
+   }
+
+   exit(3);
+}
+#endif
+
+
+/*---------------------------------------------------*/
+static
+int bz_config_ok ( void )
+{
+   if (sizeof(int)   != 4) return 0;
+   if (sizeof(short) != 2) return 0;
+   if (sizeof(char)  != 1) return 0;
+   return 1;
+}
+
+
+/*---------------------------------------------------*/
+static
+void* default_bzalloc ( void* opaque, Int32 items, Int32 size )
+{
+   void* v = malloc ( items * size );
+   return v;
+}
+
+static
+void default_bzfree ( void* opaque, void* addr )
+{
+   if (addr != NULL) free ( addr );
+}
+
+
+/*---------------------------------------------------*/
+static
+void prepare_new_block ( EState* s )
+{
+   Int32 i;
+   s->nblock = 0;
+   s->numZ = 0;
+   s->state_out_pos = 0;
+   BZ_INITIALISE_CRC ( s->blockCRC );
+   for (i = 0; i < 256; i++) s->inUse[i] = False;
+   s->blockNo++;
+}
+
+
+/*---------------------------------------------------*/
+static
+void init_RL ( EState* s )
+{
+   s->state_in_ch  = 256;
+   s->state_in_len = 0;
+}
+
+
+static
+Bool isempty_RL ( EState* s )
+{
+   if (s->state_in_ch < 256 && s->state_in_len > 0)
+      return False; else
+      return True;
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzCompressInit) 
+                    ( bz_stream* strm, 
+                     int        blockSize100k,
+                     int        verbosity,
+                     int        workFactor )
+{
+   Int32   n;
+   EState* s;
+
+   if (!bz_config_ok()) return BZ_CONFIG_ERROR;
+
+   if (strm == NULL || 
+       blockSize100k < 1 || blockSize100k > 9 ||
+       workFactor < 0 || workFactor > 250)
+     return BZ_PARAM_ERROR;
+
+   if (workFactor == 0) workFactor = 30;
+   if (strm->bzalloc == NULL) strm->bzalloc = default_bzalloc;
+   if (strm->bzfree == NULL) strm->bzfree = default_bzfree;
+
+   s = BZALLOC( sizeof(EState) );
+   if (s == NULL) return BZ_MEM_ERROR;
+   s->strm = strm;
+
+   s->arr1 = NULL;
+   s->arr2 = NULL;
+   s->ftab = NULL;
+
+   n       = 100000 * blockSize100k;
+   s->arr1 = BZALLOC( n                  * sizeof(UInt32) );
+   s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) );
+   s->ftab = BZALLOC( 65537              * sizeof(UInt32) );
+
+   if (s->arr1 == NULL || s->arr2 == NULL || s->ftab == NULL) {
+      if (s->arr1 != NULL) BZFREE(s->arr1);
+      if (s->arr2 != NULL) BZFREE(s->arr2);
+      if (s->ftab != NULL) BZFREE(s->ftab);
+      if (s       != NULL) BZFREE(s);
+      return BZ_MEM_ERROR;
+   }
+
+   s->blockNo           = 0;
+   s->state             = BZ_S_INPUT;
+   s->mode              = BZ_M_RUNNING;
+   s->combinedCRC       = 0;
+   s->blockSize100k     = blockSize100k;
+   s->nblockMAX         = 100000 * blockSize100k - 19;
+   s->verbosity         = verbosity;
+   s->workFactor        = workFactor;
+
+   s->block             = (UChar*)s->arr2;
+   s->mtfv              = (UInt16*)s->arr1;
+   s->zbits             = NULL;
+   s->ptr               = (UInt32*)s->arr1;
+
+   strm->state          = s;
+   strm->total_in_lo32  = 0;
+   strm->total_in_hi32  = 0;
+   strm->total_out_lo32 = 0;
+   strm->total_out_hi32 = 0;
+   init_RL ( s );
+   prepare_new_block ( s );
+   return BZ_OK;
+}
+
+
+/*---------------------------------------------------*/
+static
+void add_pair_to_block ( EState* s )
+{
+   Int32 i;
+   UChar ch = (UChar)(s->state_in_ch);
+   for (i = 0; i < s->state_in_len; i++) {
+      BZ_UPDATE_CRC( s->blockCRC, ch );
+   }
+   s->inUse[s->state_in_ch] = True;
+   switch (s->state_in_len) {
+      case 1:
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         break;
+      case 2:
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         break;
+      case 3:
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         break;
+      default:
+         s->inUse[s->state_in_len-4] = True;
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         s->block[s->nblock] = (UChar)ch; s->nblock++;
+         s->block[s->nblock] = ((UChar)(s->state_in_len-4));
+         s->nblock++;
+         break;
+   }
+}
+
+
+/*---------------------------------------------------*/
+static
+void flush_RL ( EState* s )
+{
+   if (s->state_in_ch < 256) add_pair_to_block ( s );
+   init_RL ( s );
+}
+
+
+/*---------------------------------------------------*/
+#define ADD_CHAR_TO_BLOCK(zs,zchh0)               \
+{                                                 \
+   UInt32 zchh = (UInt32)(zchh0);                 \
+   /*-- fast track the common case --*/           \
+   if (zchh != zs->state_in_ch &&                 \
+       zs->state_in_len == 1) {                   \
+      UChar ch = (UChar)(zs->state_in_ch);        \
+      BZ_UPDATE_CRC( zs->blockCRC, ch );          \
+      zs->inUse[zs->state_in_ch] = True;          \
+      zs->block[zs->nblock] = (UChar)ch;          \
+      zs->nblock++;                               \
+      zs->state_in_ch = zchh;                     \
+   }                                              \
+   else                                           \
+   /*-- general, uncommon cases --*/              \
+   if (zchh != zs->state_in_ch ||                 \
+      zs->state_in_len == 255) {                  \
+      if (zs->state_in_ch < 256)                  \
+         add_pair_to_block ( zs );                \
+      zs->state_in_ch = zchh;                     \
+      zs->state_in_len = 1;                       \
+   } else {                                       \
+      zs->state_in_len++;                         \
+   }                                              \
+}
+
+
+/*---------------------------------------------------*/
+static
+Bool copy_input_until_stop ( EState* s )
+{
+   Bool progress_in = False;
+
+   if (s->mode == BZ_M_RUNNING) {
+
+      /*-- fast track the common case --*/
+      while (True) {
+         /*-- block full? --*/
+         if (s->nblock >= s->nblockMAX) break;
+         /*-- no input? --*/
+         if (s->strm->avail_in == 0) break;
+         progress_in = True;
+         ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); 
+         s->strm->next_in++;
+         s->strm->avail_in--;
+         s->strm->total_in_lo32++;
+         if (s->strm->total_in_lo32 == 0) s->strm->total_in_hi32++;
+      }
+
+   } else {
+
+      /*-- general, uncommon case --*/
+      while (True) {
+         /*-- block full? --*/
+         if (s->nblock >= s->nblockMAX) break;
+         /*-- no input? --*/
+         if (s->strm->avail_in == 0) break;
+         /*-- flush/finish end? --*/
+         if (s->avail_in_expect == 0) break;
+         progress_in = True;
+         ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); 
+         s->strm->next_in++;
+         s->strm->avail_in--;
+         s->strm->total_in_lo32++;
+         if (s->strm->total_in_lo32 == 0) s->strm->total_in_hi32++;
+         s->avail_in_expect--;
+      }
+   }
+   return progress_in;
+}
+
+
+/*---------------------------------------------------*/
+static
+Bool copy_output_until_stop ( EState* s )
+{
+   Bool progress_out = False;
+
+   while (True) {
+
+      /*-- no output space? --*/
+      if (s->strm->avail_out == 0) break;
+
+      /*-- block done? --*/
+      if (s->state_out_pos >= s->numZ) break;
+
+      progress_out = True;
+      *(s->strm->next_out) = s->zbits[s->state_out_pos];
+      s->state_out_pos++;
+      s->strm->avail_out--;
+      s->strm->next_out++;
+      s->strm->total_out_lo32++;
+      if (s->strm->total_out_lo32 == 0) s->strm->total_out_hi32++;
+   }
+
+   return progress_out;
+}
+
+
+/*---------------------------------------------------*/
+static
+Bool handle_compress ( bz_stream* strm )
+{
+   Bool progress_in  = False;
+   Bool progress_out = False;
+   EState* s = strm->state;
+   
+   while (True) {
+
+      if (s->state == BZ_S_OUTPUT) {
+         progress_out |= copy_output_until_stop ( s );
+         if (s->state_out_pos < s->numZ) break;
+         if (s->mode == BZ_M_FINISHING && 
+             s->avail_in_expect == 0 &&
+             isempty_RL(s)) break;
+         prepare_new_block ( s );
+         s->state = BZ_S_INPUT;
+         if (s->mode == BZ_M_FLUSHING && 
+             s->avail_in_expect == 0 &&
+             isempty_RL(s)) break;
+      }
+
+      if (s->state == BZ_S_INPUT) {
+         progress_in |= copy_input_until_stop ( s );
+         if (s->mode != BZ_M_RUNNING && s->avail_in_expect == 0) {
+            flush_RL ( s );
+            BZ2_compressBlock ( s, (Bool)(s->mode == BZ_M_FINISHING) );
+            s->state = BZ_S_OUTPUT;
+         }
+         else
+         if (s->nblock >= s->nblockMAX) {
+            BZ2_compressBlock ( s, False );
+            s->state = BZ_S_OUTPUT;
+         }
+         else
+         if (s->strm->avail_in == 0) {
+            break;
+         }
+      }
+
+   }
+
+   return progress_in || progress_out;
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzCompress) ( bz_stream *strm, int action )
+{
+   Bool progress;
+   EState* s;
+   if (strm == NULL) return BZ_PARAM_ERROR;
+   s = strm->state;
+   if (s == NULL) return BZ_PARAM_ERROR;
+   if (s->strm != strm) return BZ_PARAM_ERROR;
+
+   preswitch:
+   switch (s->mode) {
+
+      case BZ_M_IDLE:
+         return BZ_SEQUENCE_ERROR;
+
+      case BZ_M_RUNNING:
+         if (action == BZ_RUN) {
+            progress = handle_compress ( strm );
+            return progress ? BZ_RUN_OK : BZ_PARAM_ERROR;
+         } 
+         else
+	 if (action == BZ_FLUSH) {
+            s->avail_in_expect = strm->avail_in;
+            s->mode = BZ_M_FLUSHING;
+            goto preswitch;
+         }
+         else
+         if (action == BZ_FINISH) {
+            s->avail_in_expect = strm->avail_in;
+            s->mode = BZ_M_FINISHING;
+            goto preswitch;
+         }
+         else 
+            return BZ_PARAM_ERROR;
+
+      case BZ_M_FLUSHING:
+         if (action != BZ_FLUSH) return BZ_SEQUENCE_ERROR;
+         if (s->avail_in_expect != s->strm->avail_in) 
+            return BZ_SEQUENCE_ERROR;
+         progress = handle_compress ( strm );
+         if (s->avail_in_expect > 0 || !isempty_RL(s) ||
+             s->state_out_pos < s->numZ) return BZ_FLUSH_OK;
+         s->mode = BZ_M_RUNNING;
+         return BZ_RUN_OK;
+
+      case BZ_M_FINISHING:
+         if (action != BZ_FINISH) return BZ_SEQUENCE_ERROR;
+         if (s->avail_in_expect != s->strm->avail_in) 
+            return BZ_SEQUENCE_ERROR;
+         progress = handle_compress ( strm );
+         if (!progress) return BZ_SEQUENCE_ERROR;
+         if (s->avail_in_expect > 0 || !isempty_RL(s) ||
+             s->state_out_pos < s->numZ) return BZ_FINISH_OK;
+         s->mode = BZ_M_IDLE;
+         return BZ_STREAM_END;
+   }
+   return BZ_OK; /*--not reached--*/
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzCompressEnd)  ( bz_stream *strm )
+{
+   EState* s;
+   if (strm == NULL) return BZ_PARAM_ERROR;
+   s = strm->state;
+   if (s == NULL) return BZ_PARAM_ERROR;
+   if (s->strm != strm) return BZ_PARAM_ERROR;
+
+   if (s->arr1 != NULL) BZFREE(s->arr1);
+   if (s->arr2 != NULL) BZFREE(s->arr2);
+   if (s->ftab != NULL) BZFREE(s->ftab);
+   BZFREE(strm->state);
+
+   strm->state = NULL;   
+
+   return BZ_OK;
+}
+
+
+/*---------------------------------------------------*/
+/*--- Decompression stuff                         ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzDecompressInit) 
+                     ( bz_stream* strm, 
+                       int        verbosity,
+                       int        small )
+{
+   DState* s;
+
+   if (!bz_config_ok()) return BZ_CONFIG_ERROR;
+
+   if (strm == NULL) return BZ_PARAM_ERROR;
+   if (small != 0 && small != 1) return BZ_PARAM_ERROR;
+   if (verbosity < 0 || verbosity > 4) return BZ_PARAM_ERROR;
+
+   if (strm->bzalloc == NULL) strm->bzalloc = default_bzalloc;
+   if (strm->bzfree == NULL) strm->bzfree = default_bzfree;
+
+   s = BZALLOC( sizeof(DState) );
+   if (s == NULL) return BZ_MEM_ERROR;
+   s->strm                  = strm;
+   strm->state              = s;
+   s->state                 = BZ_X_MAGIC_1;
+   s->bsLive                = 0;
+   s->bsBuff                = 0;
+   s->calculatedCombinedCRC = 0;
+   strm->total_in_lo32      = 0;
+   strm->total_in_hi32      = 0;
+   strm->total_out_lo32     = 0;
+   strm->total_out_hi32     = 0;
+   s->smallDecompress       = (Bool)small;
+   s->ll4                   = NULL;
+   s->ll16                  = NULL;
+   s->tt                    = NULL;
+   s->currBlockNo           = 0;
+   s->verbosity             = verbosity;
+
+   return BZ_OK;
+}
+
+
+/*---------------------------------------------------*/
+/* Return  True iff data corruption is discovered.
+   Returns False if there is no problem.
+*/
+static
+Bool unRLE_obuf_to_output_FAST ( DState* s )
+{
+   UChar k1;
+
+   if (s->blockRandomised) {
+
+      while (True) {
+         /* try to finish existing run */
+         while (True) {
+            if (s->strm->avail_out == 0) return False;
+            if (s->state_out_len == 0) break;
+            *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
+            BZ_UPDATE_CRC ( s->calculatedBlockCRC, s->state_out_ch );
+            s->state_out_len--;
+            s->strm->next_out++;
+            s->strm->avail_out--;
+            s->strm->total_out_lo32++;
+            if (s->strm->total_out_lo32 == 0) s->strm->total_out_hi32++;
+         }
+
+         /* can a new run be started? */
+         if (s->nblock_used == s->save_nblock+1) return False;
+               
+         /* Only caused by corrupt data stream? */
+         if (s->nblock_used > s->save_nblock+1)
+            return True;
+   
+         s->state_out_len = 1;
+         s->state_out_ch = s->k0;
+         BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         s->state_out_len = 2;
+         BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         s->state_out_len = 3;
+         BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         s->state_out_len = ((Int32)k1) + 4;
+         BZ_GET_FAST(s->k0); BZ_RAND_UPD_MASK; 
+         s->k0 ^= BZ_RAND_MASK; s->nblock_used++;
+      }
+
+   } else {
+
+      /* restore */
+      UInt32        c_calculatedBlockCRC = s->calculatedBlockCRC;
+      UChar         c_state_out_ch       = s->state_out_ch;
+      Int32         c_state_out_len      = s->state_out_len;
+      Int32         c_nblock_used        = s->nblock_used;
+      Int32         c_k0                 = s->k0;
+      UInt32*       c_tt                 = s->tt;
+      UInt32        c_tPos               = s->tPos;
+      char*         cs_next_out          = s->strm->next_out;
+      unsigned int  cs_avail_out         = s->strm->avail_out;
+      /* end restore */
+
+      UInt32       avail_out_INIT = cs_avail_out;
+      Int32        s_save_nblockPP = s->save_nblock+1;
+      unsigned int total_out_lo32_old;
+
+      while (True) {
+
+         /* try to finish existing run */
+         if (c_state_out_len > 0) {
+            while (True) {
+               if (cs_avail_out == 0) goto return_notr;
+               if (c_state_out_len == 1) break;
+               *( (UChar*)(cs_next_out) ) = c_state_out_ch;
+               BZ_UPDATE_CRC ( c_calculatedBlockCRC, c_state_out_ch );
+               c_state_out_len--;
+               cs_next_out++;
+               cs_avail_out--;
+            }
+            s_state_out_len_eq_one:
+            {
+               if (cs_avail_out == 0) { 
+                  c_state_out_len = 1; goto return_notr;
+               };
+               *( (UChar*)(cs_next_out) ) = c_state_out_ch;
+               BZ_UPDATE_CRC ( c_calculatedBlockCRC, c_state_out_ch );
+               cs_next_out++;
+               cs_avail_out--;
+            }
+         }   
+         /* Only caused by corrupt data stream? */
+         if (c_nblock_used > s_save_nblockPP)
+            return True;
+
+         /* can a new run be started? */
+         if (c_nblock_used == s_save_nblockPP) {
+            c_state_out_len = 0; goto return_notr;
+         };   
+         c_state_out_ch = c_k0;
+         BZ_GET_FAST_C(k1); c_nblock_used++;
+         if (k1 != c_k0) { 
+            c_k0 = k1; goto s_state_out_len_eq_one; 
+         };
+         if (c_nblock_used == s_save_nblockPP) 
+            goto s_state_out_len_eq_one;
+   
+         c_state_out_len = 2;
+         BZ_GET_FAST_C(k1); c_nblock_used++;
+         if (c_nblock_used == s_save_nblockPP) continue;
+         if (k1 != c_k0) { c_k0 = k1; continue; };
+   
+         c_state_out_len = 3;
+         BZ_GET_FAST_C(k1); c_nblock_used++;
+         if (c_nblock_used == s_save_nblockPP) continue;
+         if (k1 != c_k0) { c_k0 = k1; continue; };
+   
+         BZ_GET_FAST_C(k1); c_nblock_used++;
+         c_state_out_len = ((Int32)k1) + 4;
+         BZ_GET_FAST_C(c_k0); c_nblock_used++;
+      }
+
+      return_notr:
+      total_out_lo32_old = s->strm->total_out_lo32;
+      s->strm->total_out_lo32 += (avail_out_INIT - cs_avail_out);
+      if (s->strm->total_out_lo32 < total_out_lo32_old)
+         s->strm->total_out_hi32++;
+
+      /* save */
+      s->calculatedBlockCRC = c_calculatedBlockCRC;
+      s->state_out_ch       = c_state_out_ch;
+      s->state_out_len      = c_state_out_len;
+      s->nblock_used        = c_nblock_used;
+      s->k0                 = c_k0;
+      s->tt                 = c_tt;
+      s->tPos               = c_tPos;
+      s->strm->next_out     = cs_next_out;
+      s->strm->avail_out    = cs_avail_out;
+      /* end save */
+   }
+   return False;
+}
+
+
+
+/*---------------------------------------------------*/
+__inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab )
+{
+   Int32 nb, na, mid;
+   nb = 0;
+   na = 256;
+   do {
+      mid = (nb + na) >> 1;
+      if (indx >= cftab[mid]) nb = mid; else na = mid;
+   }
+   while (na - nb != 1);
+   return nb;
+}
+
+
+/*---------------------------------------------------*/
+/* Return  True iff data corruption is discovered.
+   Returns False if there is no problem.
+*/
+static
+Bool unRLE_obuf_to_output_SMALL ( DState* s )
+{
+   UChar k1;
+
+   if (s->blockRandomised) {
+
+      while (True) {
+         /* try to finish existing run */
+         while (True) {
+            if (s->strm->avail_out == 0) return False;
+            if (s->state_out_len == 0) break;
+            *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
+            BZ_UPDATE_CRC ( s->calculatedBlockCRC, s->state_out_ch );
+            s->state_out_len--;
+            s->strm->next_out++;
+            s->strm->avail_out--;
+            s->strm->total_out_lo32++;
+            if (s->strm->total_out_lo32 == 0) s->strm->total_out_hi32++;
+         }
+   
+         /* can a new run be started? */
+         if (s->nblock_used == s->save_nblock+1) return False;
+
+         /* Only caused by corrupt data stream? */
+         if (s->nblock_used > s->save_nblock+1)
+            return True;
+   
+         s->state_out_len = 1;
+         s->state_out_ch = s->k0;
+         BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         s->state_out_len = 2;
+         BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         s->state_out_len = 3;
+         BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
+         k1 ^= BZ_RAND_MASK; s->nblock_used++;
+         s->state_out_len = ((Int32)k1) + 4;
+         BZ_GET_SMALL(s->k0); BZ_RAND_UPD_MASK; 
+         s->k0 ^= BZ_RAND_MASK; s->nblock_used++;
+      }
+
+   } else {
+
+      while (True) {
+         /* try to finish existing run */
+         while (True) {
+            if (s->strm->avail_out == 0) return False;
+            if (s->state_out_len == 0) break;
+            *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
+            BZ_UPDATE_CRC ( s->calculatedBlockCRC, s->state_out_ch );
+            s->state_out_len--;
+            s->strm->next_out++;
+            s->strm->avail_out--;
+            s->strm->total_out_lo32++;
+            if (s->strm->total_out_lo32 == 0) s->strm->total_out_hi32++;
+         }
+   
+         /* can a new run be started? */
+         if (s->nblock_used == s->save_nblock+1) return False;
+
+         /* Only caused by corrupt data stream? */
+         if (s->nblock_used > s->save_nblock+1)
+            return True;
+   
+         s->state_out_len = 1;
+         s->state_out_ch = s->k0;
+         BZ_GET_SMALL(k1); s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         s->state_out_len = 2;
+         BZ_GET_SMALL(k1); s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         s->state_out_len = 3;
+         BZ_GET_SMALL(k1); s->nblock_used++;
+         if (s->nblock_used == s->save_nblock+1) continue;
+         if (k1 != s->k0) { s->k0 = k1; continue; };
+   
+         BZ_GET_SMALL(k1); s->nblock_used++;
+         s->state_out_len = ((Int32)k1) + 4;
+         BZ_GET_SMALL(s->k0); s->nblock_used++;
+      }
+
+   }
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzDecompress) ( bz_stream *strm )
+{
+   Bool    corrupt;
+   DState* s;
+   if (strm == NULL) return BZ_PARAM_ERROR;
+   s = strm->state;
+   if (s == NULL) return BZ_PARAM_ERROR;
+   if (s->strm != strm) return BZ_PARAM_ERROR;
+
+   while (True) {
+      if (s->state == BZ_X_IDLE) return BZ_SEQUENCE_ERROR;
+      if (s->state == BZ_X_OUTPUT) {
+         if (s->smallDecompress)
+            corrupt = unRLE_obuf_to_output_SMALL ( s ); else
+            corrupt = unRLE_obuf_to_output_FAST  ( s );
+         if (corrupt) return BZ_DATA_ERROR;
+         if (s->nblock_used == s->save_nblock+1 && s->state_out_len == 0) {
+            BZ_FINALISE_CRC ( s->calculatedBlockCRC );
+            if (s->verbosity >= 3) 
+               VPrintf2 ( " {0x%08x, 0x%08x}", s->storedBlockCRC, 
+                          s->calculatedBlockCRC );
+            if (s->verbosity >= 2) VPrintf0 ( "]" );
+            if (s->calculatedBlockCRC != s->storedBlockCRC)
+               return BZ_DATA_ERROR;
+            s->calculatedCombinedCRC 
+               = (s->calculatedCombinedCRC << 1) | 
+                    (s->calculatedCombinedCRC >> 31);
+            s->calculatedCombinedCRC ^= s->calculatedBlockCRC;
+            s->state = BZ_X_BLKHDR_1;
+         } else {
+            return BZ_OK;
+         }
+      }
+      if (s->state >= BZ_X_MAGIC_1) {
+         Int32 r = BZ2_decompress ( s );
+         if (r == BZ_STREAM_END) {
+            if (s->verbosity >= 3)
+               VPrintf2 ( "\n    combined CRCs: stored = 0x%08x, computed = 0x%08x", 
+                          s->storedCombinedCRC, s->calculatedCombinedCRC );
+            if (s->calculatedCombinedCRC != s->storedCombinedCRC)
+               return BZ_DATA_ERROR;
+            return r;
+         }
+         if (s->state != BZ_X_OUTPUT) return r;
+      }
+   }
+
+   AssertH ( 0, 6001 );
+
+   return 0;  /*NOTREACHED*/
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzDecompressEnd)  ( bz_stream *strm )
+{
+   DState* s;
+   if (strm == NULL) return BZ_PARAM_ERROR;
+   s = strm->state;
+   if (s == NULL) return BZ_PARAM_ERROR;
+   if (s->strm != strm) return BZ_PARAM_ERROR;
+
+   if (s->tt   != NULL) BZFREE(s->tt);
+   if (s->ll16 != NULL) BZFREE(s->ll16);
+   if (s->ll4  != NULL) BZFREE(s->ll4);
+
+   BZFREE(strm->state);
+   strm->state = NULL;
+
+   return BZ_OK;
+}
+
+
+#ifndef BZ_NO_STDIO
+/*---------------------------------------------------*/
+/*--- File I/O stuff                              ---*/
+/*---------------------------------------------------*/
+
+#define BZ_SETERR(eee)                    \
+{                                         \
+   if (bzerror != NULL) *bzerror = eee;   \
+   if (bzf != NULL) bzf->lastErr = eee;   \
+}
+
+typedef 
+   struct {
+      FILE*     handle;
+      Char      buf[BZ_MAX_UNUSED];
+      Int32     bufN;
+      Bool      writing;
+      bz_stream strm;
+      Int32     lastErr;
+      Bool      initialisedOk;
+   }
+   bzFile;
+
+
+/*---------------------------------------------*/
+static Bool myfeof ( FILE* f )
+{
+   Int32 c = fgetc ( f );
+   if (c == EOF) return True;
+   ungetc ( c, f );
+   return False;
+}
+
+
+/*---------------------------------------------------*/
+BZFILE* BZ_API(BZ2_bzWriteOpen) 
+                    ( int*  bzerror,      
+                      FILE* f, 
+                      int   blockSize100k, 
+                      int   verbosity,
+                      int   workFactor )
+{
+   Int32   ret;
+   bzFile* bzf = NULL;
+
+   BZ_SETERR(BZ_OK);
+
+   if (f == NULL ||
+       (blockSize100k < 1 || blockSize100k > 9) ||
+       (workFactor < 0 || workFactor > 250) ||
+       (verbosity < 0 || verbosity > 4))
+      { BZ_SETERR(BZ_PARAM_ERROR); return NULL; };
+
+   if (ferror(f))
+      { BZ_SETERR(BZ_IO_ERROR); return NULL; };
+
+   bzf = malloc ( sizeof(bzFile) );
+   if (bzf == NULL)
+      { BZ_SETERR(BZ_MEM_ERROR); return NULL; };
+
+   BZ_SETERR(BZ_OK);
+   bzf->initialisedOk = False;
+   bzf->bufN          = 0;
+   bzf->handle        = f;
+   bzf->writing       = True;
+   bzf->strm.bzalloc  = NULL;
+   bzf->strm.bzfree   = NULL;
+   bzf->strm.opaque   = NULL;
+
+   if (workFactor == 0) workFactor = 30;
+   ret = BZ2_bzCompressInit ( &(bzf->strm), blockSize100k, 
+                              verbosity, workFactor );
+   if (ret != BZ_OK)
+      { BZ_SETERR(ret); free(bzf); return NULL; };
+
+   bzf->strm.avail_in = 0;
+   bzf->initialisedOk = True;
+   return bzf;   
+}
+
+
+
+/*---------------------------------------------------*/
+void BZ_API(BZ2_bzWrite)
+             ( int*    bzerror, 
+               BZFILE* b, 
+               void*   buf, 
+               int     len )
+{
+   Int32 n, n2, ret;
+   bzFile* bzf = (bzFile*)b;
+
+   BZ_SETERR(BZ_OK);
+   if (bzf == NULL || buf == NULL || len < 0)
+      { BZ_SETERR(BZ_PARAM_ERROR); return; };
+   if (!(bzf->writing))
+      { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
+   if (ferror(bzf->handle))
+      { BZ_SETERR(BZ_IO_ERROR); return; };
+
+   if (len == 0)
+      { BZ_SETERR(BZ_OK); return; };
+
+   bzf->strm.avail_in = len;
+   bzf->strm.next_in  = buf;
+
+   while (True) {
+      bzf->strm.avail_out = BZ_MAX_UNUSED;
+      bzf->strm.next_out = bzf->buf;
+      ret = BZ2_bzCompress ( &(bzf->strm), BZ_RUN );
+      if (ret != BZ_RUN_OK)
+         { BZ_SETERR(ret); return; };
+
+      if (bzf->strm.avail_out < BZ_MAX_UNUSED) {
+         n = BZ_MAX_UNUSED - bzf->strm.avail_out;
+         n2 = fwrite ( (void*)(bzf->buf), sizeof(UChar), 
+                       n, bzf->handle );
+         if (n != n2 || ferror(bzf->handle))
+            { BZ_SETERR(BZ_IO_ERROR); return; };
+      }
+
+      if (bzf->strm.avail_in == 0)
+         { BZ_SETERR(BZ_OK); return; };
+   }
+}
+
+
+/*---------------------------------------------------*/
+void BZ_API(BZ2_bzWriteClose)
+                  ( int*          bzerror, 
+                    BZFILE*       b, 
+                    int           abandon,
+                    unsigned int* nbytes_in,
+                    unsigned int* nbytes_out )
+{
+   BZ2_bzWriteClose64 ( bzerror, b, abandon, 
+                        nbytes_in, NULL, nbytes_out, NULL );
+}
+
+
+void BZ_API(BZ2_bzWriteClose64)
+                  ( int*          bzerror, 
+                    BZFILE*       b, 
+                    int           abandon,
+                    unsigned int* nbytes_in_lo32,
+                    unsigned int* nbytes_in_hi32,
+                    unsigned int* nbytes_out_lo32,
+                    unsigned int* nbytes_out_hi32 )
+{
+   Int32   n, n2, ret;
+   bzFile* bzf = (bzFile*)b;
+
+   if (bzf == NULL)
+      { BZ_SETERR(BZ_OK); return; };
+   if (!(bzf->writing))
+      { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
+   if (ferror(bzf->handle))
+      { BZ_SETERR(BZ_IO_ERROR); return; };
+
+   if (nbytes_in_lo32 != NULL) *nbytes_in_lo32 = 0;
+   if (nbytes_in_hi32 != NULL) *nbytes_in_hi32 = 0;
+   if (nbytes_out_lo32 != NULL) *nbytes_out_lo32 = 0;
+   if (nbytes_out_hi32 != NULL) *nbytes_out_hi32 = 0;
+
+   if ((!abandon) && bzf->lastErr == BZ_OK) {
+      while (True) {
+         bzf->strm.avail_out = BZ_MAX_UNUSED;
+         bzf->strm.next_out = bzf->buf;
+         ret = BZ2_bzCompress ( &(bzf->strm), BZ_FINISH );
+         if (ret != BZ_FINISH_OK && ret != BZ_STREAM_END)
+            { BZ_SETERR(ret); return; };
+
+         if (bzf->strm.avail_out < BZ_MAX_UNUSED) {
+            n = BZ_MAX_UNUSED - bzf->strm.avail_out;
+            n2 = fwrite ( (void*)(bzf->buf), sizeof(UChar), 
+                          n, bzf->handle );
+            if (n != n2 || ferror(bzf->handle))
+               { BZ_SETERR(BZ_IO_ERROR); return; };
+         }
+
+         if (ret == BZ_STREAM_END) break;
+      }
+   }
+
+   if ( !abandon && !ferror ( bzf->handle ) ) {
+      fflush ( bzf->handle );
+      if (ferror(bzf->handle))
+         { BZ_SETERR(BZ_IO_ERROR); return; };
+   }
+
+   if (nbytes_in_lo32 != NULL)
+      *nbytes_in_lo32 = bzf->strm.total_in_lo32;
+   if (nbytes_in_hi32 != NULL)
+      *nbytes_in_hi32 = bzf->strm.total_in_hi32;
+   if (nbytes_out_lo32 != NULL)
+      *nbytes_out_lo32 = bzf->strm.total_out_lo32;
+   if (nbytes_out_hi32 != NULL)
+      *nbytes_out_hi32 = bzf->strm.total_out_hi32;
+
+   BZ_SETERR(BZ_OK);
+   BZ2_bzCompressEnd ( &(bzf->strm) );
+   free ( bzf );
+}
+
+
+/*---------------------------------------------------*/
+BZFILE* BZ_API(BZ2_bzReadOpen) 
+                   ( int*  bzerror, 
+                     FILE* f, 
+                     int   verbosity,
+                     int   small,
+                     void* unused,
+                     int   nUnused )
+{
+   bzFile* bzf = NULL;
+   int     ret;
+
+   BZ_SETERR(BZ_OK);
+
+   if (f == NULL || 
+       (small != 0 && small != 1) ||
+       (verbosity < 0 || verbosity > 4) ||
+       (unused == NULL && nUnused != 0) ||
+       (unused != NULL && (nUnused < 0 || nUnused > BZ_MAX_UNUSED)))
+      { BZ_SETERR(BZ_PARAM_ERROR); return NULL; };
+
+   if (ferror(f))
+      { BZ_SETERR(BZ_IO_ERROR); return NULL; };
+
+   bzf = malloc ( sizeof(bzFile) );
+   if (bzf == NULL) 
+      { BZ_SETERR(BZ_MEM_ERROR); return NULL; };
+
+   BZ_SETERR(BZ_OK);
+
+   bzf->initialisedOk = False;
+   bzf->handle        = f;
+   bzf->bufN          = 0;
+   bzf->writing       = False;
+   bzf->strm.bzalloc  = NULL;
+   bzf->strm.bzfree   = NULL;
+   bzf->strm.opaque   = NULL;
+   
+   while (nUnused > 0) {
+      bzf->buf[bzf->bufN] = *((UChar*)(unused)); bzf->bufN++;
+      unused = ((void*)( 1 + ((UChar*)(unused))  ));
+      nUnused--;
+   }
+
+   ret = BZ2_bzDecompressInit ( &(bzf->strm), verbosity, small );
+   if (ret != BZ_OK)
+      { BZ_SETERR(ret); free(bzf); return NULL; };
+
+   bzf->strm.avail_in = bzf->bufN;
+   bzf->strm.next_in  = bzf->buf;
+
+   bzf->initialisedOk = True;
+   return bzf;   
+}
+
+
+/*---------------------------------------------------*/
+void BZ_API(BZ2_bzReadClose) ( int *bzerror, BZFILE *b )
+{
+   bzFile* bzf = (bzFile*)b;
+
+   BZ_SETERR(BZ_OK);
+   if (bzf == NULL)
+      { BZ_SETERR(BZ_OK); return; };
+
+   if (bzf->writing)
+      { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
+
+   if (bzf->initialisedOk)
+      (void)BZ2_bzDecompressEnd ( &(bzf->strm) );
+   free ( bzf );
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzRead) 
+           ( int*    bzerror, 
+             BZFILE* b, 
+             void*   buf, 
+             int     len )
+{
+   Int32   n, ret;
+   bzFile* bzf = (bzFile*)b;
+
+   BZ_SETERR(BZ_OK);
+
+   if (bzf == NULL || buf == NULL || len < 0)
+      { BZ_SETERR(BZ_PARAM_ERROR); return 0; };
+
+   if (bzf->writing)
+      { BZ_SETERR(BZ_SEQUENCE_ERROR); return 0; };
+
+   if (len == 0)
+      { BZ_SETERR(BZ_OK); return 0; };
+
+   bzf->strm.avail_out = len;
+   bzf->strm.next_out = buf;
+
+   while (True) {
+
+      if (ferror(bzf->handle)) 
+         { BZ_SETERR(BZ_IO_ERROR); return 0; };
+
+      if (bzf->strm.avail_in == 0 && !myfeof(bzf->handle)) {
+         n = fread ( bzf->buf, sizeof(UChar), 
+                     BZ_MAX_UNUSED, bzf->handle );
+         if (ferror(bzf->handle))
+            { BZ_SETERR(BZ_IO_ERROR); return 0; };
+         bzf->bufN = n;
+         bzf->strm.avail_in = bzf->bufN;
+         bzf->strm.next_in = bzf->buf;
+      }
+
+      ret = BZ2_bzDecompress ( &(bzf->strm) );
+
+      if (ret != BZ_OK && ret != BZ_STREAM_END)
+         { BZ_SETERR(ret); return 0; };
+
+      if (ret == BZ_OK && myfeof(bzf->handle) && 
+          bzf->strm.avail_in == 0 && bzf->strm.avail_out > 0)
+         { BZ_SETERR(BZ_UNEXPECTED_EOF); return 0; };
+
+      if (ret == BZ_STREAM_END)
+         { BZ_SETERR(BZ_STREAM_END);
+           return len - bzf->strm.avail_out; };
+      if (bzf->strm.avail_out == 0)
+         { BZ_SETERR(BZ_OK); return len; };
+      
+   }
+
+   return 0; /*not reached*/
+}
+
+
+/*---------------------------------------------------*/
+void BZ_API(BZ2_bzReadGetUnused) 
+                     ( int*    bzerror, 
+                       BZFILE* b, 
+                       void**  unused, 
+                       int*    nUnused )
+{
+   bzFile* bzf = (bzFile*)b;
+   if (bzf == NULL)
+      { BZ_SETERR(BZ_PARAM_ERROR); return; };
+   if (bzf->lastErr != BZ_STREAM_END)
+      { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
+   if (unused == NULL || nUnused == NULL)
+      { BZ_SETERR(BZ_PARAM_ERROR); return; };
+
+   BZ_SETERR(BZ_OK);
+   *nUnused = bzf->strm.avail_in;
+   *unused = bzf->strm.next_in;
+}
+#endif
+
+
+/*---------------------------------------------------*/
+/*--- Misc convenience stuff                      ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzBuffToBuffCompress) 
+                         ( char*         dest, 
+                           unsigned int* destLen,
+                           char*         source, 
+                           unsigned int  sourceLen,
+                           int           blockSize100k, 
+                           int           verbosity, 
+                           int           workFactor )
+{
+   bz_stream strm;
+   int ret;
+
+   if (dest == NULL || destLen == NULL || 
+       source == NULL ||
+       blockSize100k < 1 || blockSize100k > 9 ||
+       verbosity < 0 || verbosity > 4 ||
+       workFactor < 0 || workFactor > 250) 
+      return BZ_PARAM_ERROR;
+
+   if (workFactor == 0) workFactor = 30;
+   strm.bzalloc = NULL;
+   strm.bzfree = NULL;
+   strm.opaque = NULL;
+   ret = BZ2_bzCompressInit ( &strm, blockSize100k, 
+                              verbosity, workFactor );
+   if (ret != BZ_OK) return ret;
+
+   strm.next_in = source;
+   strm.next_out = dest;
+   strm.avail_in = sourceLen;
+   strm.avail_out = *destLen;
+
+   ret = BZ2_bzCompress ( &strm, BZ_FINISH );
+   if (ret == BZ_FINISH_OK) goto output_overflow;
+   if (ret != BZ_STREAM_END) goto errhandler;
+
+   /* normal termination */
+   *destLen -= strm.avail_out;   
+   BZ2_bzCompressEnd ( &strm );
+   return BZ_OK;
+
+   output_overflow:
+   BZ2_bzCompressEnd ( &strm );
+   return BZ_OUTBUFF_FULL;
+
+   errhandler:
+   BZ2_bzCompressEnd ( &strm );
+   return ret;
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzBuffToBuffDecompress) 
+                           ( char*         dest, 
+                             unsigned int* destLen,
+                             char*         source, 
+                             unsigned int  sourceLen,
+                             int           small,
+                             int           verbosity )
+{
+   bz_stream strm;
+   int ret;
+
+   if (dest == NULL || destLen == NULL || 
+       source == NULL ||
+       (small != 0 && small != 1) ||
+       verbosity < 0 || verbosity > 4) 
+          return BZ_PARAM_ERROR;
+
+   strm.bzalloc = NULL;
+   strm.bzfree = NULL;
+   strm.opaque = NULL;
+   ret = BZ2_bzDecompressInit ( &strm, verbosity, small );
+   if (ret != BZ_OK) return ret;
+
+   strm.next_in = source;
+   strm.next_out = dest;
+   strm.avail_in = sourceLen;
+   strm.avail_out = *destLen;
+
+   ret = BZ2_bzDecompress ( &strm );
+   if (ret == BZ_OK) goto output_overflow_or_eof;
+   if (ret != BZ_STREAM_END) goto errhandler;
+
+   /* normal termination */
+   *destLen -= strm.avail_out;
+   BZ2_bzDecompressEnd ( &strm );
+   return BZ_OK;
+
+   output_overflow_or_eof:
+   if (strm.avail_out > 0) {
+      BZ2_bzDecompressEnd ( &strm );
+      return BZ_UNEXPECTED_EOF;
+   } else {
+      BZ2_bzDecompressEnd ( &strm );
+      return BZ_OUTBUFF_FULL;
+   };      
+
+   errhandler:
+   BZ2_bzDecompressEnd ( &strm );
+   return ret; 
+}
+
+
+/*---------------------------------------------------*/
+/*--
+   Code contributed by Yoshioka Tsuneo
+   (QWF00133@niftyserve.or.jp/tsuneo-y@is.aist-nara.ac.jp),
+   to support better zlib compatibility.
+   This code is not _officially_ part of libbzip2 (yet);
+   I haven't tested it, documented it, or considered the
+   threading-safeness of it.
+   If this code breaks, please contact both Yoshioka and me.
+--*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------------*/
+/*--
+   return version like "0.9.0c".
+--*/
+const char * BZ_API(BZ2_bzlibVersion)(void)
+{
+   return BZ_VERSION;
+}
+
+
+#ifndef BZ_NO_STDIO
+/*---------------------------------------------------*/
+
+#if defined(_WIN32) || defined(OS2) || defined(MSDOS)
+#   include 
+#   include 
+#   define SET_BINARY_MODE(file) setmode(fileno(file),O_BINARY)
+#else
+#   define SET_BINARY_MODE(file)
+#endif
+static
+BZFILE * bzopen_or_bzdopen
+               ( const char *path,   /* no use when bzdopen */
+                 int fd,             /* no use when bzdopen */
+                 const char *mode,
+                 int open_mode)      /* bzopen: 0, bzdopen:1 */
+{
+   int    bzerr;
+   char   unused[BZ_MAX_UNUSED];
+   int    blockSize100k = 9;
+   int    writing       = 0;
+   char   mode2[10]     = "";
+   FILE   *fp           = NULL;
+   BZFILE *bzfp         = NULL;
+   int    verbosity     = 0;
+   int    workFactor    = 30;
+   int    smallMode     = 0;
+   int    nUnused       = 0; 
+
+   if (mode == NULL) return NULL;
+   while (*mode) {
+      switch (*mode) {
+      case 'r':
+         writing = 0; break;
+      case 'w':
+         writing = 1; break;
+      case 's':
+         smallMode = 1; break;
+      default:
+         if (isdigit((int)(*mode))) {
+            blockSize100k = *mode-BZ_HDR_0;
+         }
+      }
+      mode++;
+   }
+   strcat(mode2, writing ? "w" : "r" );
+   strcat(mode2,"b");   /* binary mode */
+
+   if (open_mode==0) {
+      if (path==NULL || strcmp(path,"")==0) {
+        fp = (writing ? stdout : stdin);
+        SET_BINARY_MODE(fp);
+      } else {
+        fp = fopen(path,mode2);
+      }
+   } else {
+#ifdef BZ_STRICT_ANSI
+      fp = NULL;
+#else
+      fp = fdopen(fd,mode2);
+#endif
+   }
+   if (fp == NULL) return NULL;
+
+   if (writing) {
+      /* Guard against total chaos and anarchy -- JRS */
+      if (blockSize100k < 1) blockSize100k = 1;
+      if (blockSize100k > 9) blockSize100k = 9; 
+      bzfp = BZ2_bzWriteOpen(&bzerr,fp,blockSize100k,
+                             verbosity,workFactor);
+   } else {
+      bzfp = BZ2_bzReadOpen(&bzerr,fp,verbosity,smallMode,
+                            unused,nUnused);
+   }
+   if (bzfp == NULL) {
+      if (fp != stdin && fp != stdout) fclose(fp);
+      return NULL;
+   }
+   return bzfp;
+}
+
+
+/*---------------------------------------------------*/
+/*--
+   open file for read or write.
+      ex) bzopen("file","w9")
+      case path="" or NULL => use stdin or stdout.
+--*/
+BZFILE * BZ_API(BZ2_bzopen)
+               ( const char *path,
+                 const char *mode )
+{
+   return bzopen_or_bzdopen(path,-1,mode,/*bzopen*/0);
+}
+
+
+/*---------------------------------------------------*/
+BZFILE * BZ_API(BZ2_bzdopen)
+               ( int fd,
+                 const char *mode )
+{
+   return bzopen_or_bzdopen(NULL,fd,mode,/*bzdopen*/1);
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzread) (BZFILE* b, void* buf, int len )
+{
+   int bzerr, nread;
+   if (((bzFile*)b)->lastErr == BZ_STREAM_END) return 0;
+   nread = BZ2_bzRead(&bzerr,b,buf,len);
+   if (bzerr == BZ_OK || bzerr == BZ_STREAM_END) {
+      return nread;
+   } else {
+      return -1;
+   }
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzwrite) (BZFILE* b, void* buf, int len )
+{
+   int bzerr;
+
+   BZ2_bzWrite(&bzerr,b,buf,len);
+   if(bzerr == BZ_OK){
+      return len;
+   }else{
+      return -1;
+   }
+}
+
+
+/*---------------------------------------------------*/
+int BZ_API(BZ2_bzflush) (BZFILE *b)
+{
+   /* do nothing now... */
+   return 0;
+}
+
+
+/*---------------------------------------------------*/
+void BZ_API(BZ2_bzclose) (BZFILE* b)
+{
+   int bzerr;
+   FILE *fp = ((bzFile *)b)->handle;
+   
+   if (b==NULL) {return;}
+   if(((bzFile*)b)->writing){
+      BZ2_bzWriteClose(&bzerr,b,0,NULL,NULL);
+      if(bzerr != BZ_OK){
+         BZ2_bzWriteClose(NULL,b,1,NULL,NULL);
+      }
+   }else{
+      BZ2_bzReadClose(&bzerr,b);
+   }
+   if(fp!=stdin && fp!=stdout){
+      fclose(fp);
+   }
+}
+
+
+/*---------------------------------------------------*/
+/*--
+   return last error code 
+--*/
+static char *bzerrorstrings[] = {
+       "OK"
+      ,"SEQUENCE_ERROR"
+      ,"PARAM_ERROR"
+      ,"MEM_ERROR"
+      ,"DATA_ERROR"
+      ,"DATA_ERROR_MAGIC"
+      ,"IO_ERROR"
+      ,"UNEXPECTED_EOF"
+      ,"OUTBUFF_FULL"
+      ,"CONFIG_ERROR"
+      ,"???"   /* for future */
+      ,"???"   /* for future */
+      ,"???"   /* for future */
+      ,"???"   /* for future */
+      ,"???"   /* for future */
+      ,"???"   /* for future */
+};
+
+
+const char * BZ_API(BZ2_bzerror) (BZFILE *b, int *errnum)
+{
+   int err = ((bzFile *)b)->lastErr;
+
+   if(err>0) err = 0;
+   *errnum = err;
+   return bzerrorstrings[err*-1];
+}
+#endif
+
+
+/*-------------------------------------------------------------*/
+/*--- end                                           bzlib.c ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/bzlib.h b/commands/bzip2-1.0.3/bzlib.h
new file mode 100644
index 000000000..323724394
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzlib.h
@@ -0,0 +1,323 @@
+
+/*-------------------------------------------------------------*/
+/*--- Public header file for the library.                   ---*/
+/*---                                               bzlib.h ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+
+#ifndef _BZLIB_H
+#define _BZLIB_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define BZ_RUN               0
+#define BZ_FLUSH             1
+#define BZ_FINISH            2
+
+#define BZ_OK                0
+#define BZ_RUN_OK            1
+#define BZ_FLUSH_OK          2
+#define BZ_FINISH_OK         3
+#define BZ_STREAM_END        4
+#define BZ_SEQUENCE_ERROR    (-1)
+#define BZ_PARAM_ERROR       (-2)
+#define BZ_MEM_ERROR         (-3)
+#define BZ_DATA_ERROR        (-4)
+#define BZ_DATA_ERROR_MAGIC  (-5)
+#define BZ_IO_ERROR          (-6)
+#define BZ_UNEXPECTED_EOF    (-7)
+#define BZ_OUTBUFF_FULL      (-8)
+#define BZ_CONFIG_ERROR      (-9)
+
+typedef 
+   struct {
+      char *next_in;
+      unsigned int avail_in;
+      unsigned int total_in_lo32;
+      unsigned int total_in_hi32;
+
+      char *next_out;
+      unsigned int avail_out;
+      unsigned int total_out_lo32;
+      unsigned int total_out_hi32;
+
+      void *state;
+
+      void *(*bzalloc)(void *,int,int);
+      void (*bzfree)(void *,void *);
+      void *opaque;
+   } 
+   bz_stream;
+
+
+#ifndef BZ_IMPORT
+#define BZ_EXPORT
+#endif
+
+#ifndef BZ_NO_STDIO
+/* Need a definitition for FILE */
+#include 
+#endif
+
+#ifdef _WIN32
+#   include 
+#   ifdef small
+      /* windows.h define small to char */
+#      undef small
+#   endif
+#   ifdef BZ_EXPORT
+#   define BZ_API(func) WINAPI func
+#   define BZ_EXTERN extern
+#   else
+   /* import windows dll dynamically */
+#   define BZ_API(func) (WINAPI * func)
+#   define BZ_EXTERN
+#   endif
+#else
+#   define BZ_API(func) func
+#   define BZ_EXTERN extern
+#endif
+
+
+/*-- Core (low-level) library functions --*/
+
+BZ_EXTERN int BZ_API(BZ2_bzCompressInit) ( 
+      bz_stream* strm, 
+      int        blockSize100k, 
+      int        verbosity, 
+      int        workFactor 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzCompress) ( 
+      bz_stream* strm, 
+      int action 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzCompressEnd) ( 
+      bz_stream* strm 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzDecompressInit) ( 
+      bz_stream *strm, 
+      int       verbosity, 
+      int       small
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzDecompress) ( 
+      bz_stream* strm 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzDecompressEnd) ( 
+      bz_stream *strm 
+   );
+
+
+
+/*-- High(er) level library functions --*/
+
+#ifndef BZ_NO_STDIO
+#define BZ_MAX_UNUSED 5000
+
+typedef void BZFILE;
+
+BZ_EXTERN BZFILE* BZ_API(BZ2_bzReadOpen) ( 
+      int*  bzerror,   
+      FILE* f, 
+      int   verbosity, 
+      int   small,
+      void* unused,    
+      int   nUnused 
+   );
+
+BZ_EXTERN void BZ_API(BZ2_bzReadClose) ( 
+      int*    bzerror, 
+      BZFILE* b 
+   );
+
+BZ_EXTERN void BZ_API(BZ2_bzReadGetUnused) ( 
+      int*    bzerror, 
+      BZFILE* b, 
+      void**  unused,  
+      int*    nUnused 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzRead) ( 
+      int*    bzerror, 
+      BZFILE* b, 
+      void*   buf, 
+      int     len 
+   );
+
+BZ_EXTERN BZFILE* BZ_API(BZ2_bzWriteOpen) ( 
+      int*  bzerror,      
+      FILE* f, 
+      int   blockSize100k, 
+      int   verbosity, 
+      int   workFactor 
+   );
+
+BZ_EXTERN void BZ_API(BZ2_bzWrite) ( 
+      int*    bzerror, 
+      BZFILE* b, 
+      void*   buf, 
+      int     len 
+   );
+
+BZ_EXTERN void BZ_API(BZ2_bzWriteClose) ( 
+      int*          bzerror, 
+      BZFILE*       b, 
+      int           abandon, 
+      unsigned int* nbytes_in, 
+      unsigned int* nbytes_out 
+   );
+
+BZ_EXTERN void BZ_API(BZ2_bzWriteClose64) ( 
+      int*          bzerror, 
+      BZFILE*       b, 
+      int           abandon, 
+      unsigned int* nbytes_in_lo32, 
+      unsigned int* nbytes_in_hi32, 
+      unsigned int* nbytes_out_lo32, 
+      unsigned int* nbytes_out_hi32
+   );
+#endif
+
+
+/*-- Utility functions --*/
+
+BZ_EXTERN int BZ_API(BZ2_bzBuffToBuffCompress) ( 
+      char*         dest, 
+      unsigned int* destLen,
+      char*         source, 
+      unsigned int  sourceLen,
+      int           blockSize100k, 
+      int           verbosity, 
+      int           workFactor 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzBuffToBuffDecompress) ( 
+      char*         dest, 
+      unsigned int* destLen,
+      char*         source, 
+      unsigned int  sourceLen,
+      int           small, 
+      int           verbosity 
+   );
+
+
+/*--
+   Code contributed by Yoshioka Tsuneo
+   (QWF00133@niftyserve.or.jp/tsuneo-y@is.aist-nara.ac.jp),
+   to support better zlib compatibility.
+   This code is not _officially_ part of libbzip2 (yet);
+   I haven't tested it, documented it, or considered the
+   threading-safeness of it.
+   If this code breaks, please contact both Yoshioka and me.
+--*/
+
+BZ_EXTERN const char * BZ_API(BZ2_bzlibVersion) (
+      void
+   );
+
+#ifndef BZ_NO_STDIO
+BZ_EXTERN BZFILE * BZ_API(BZ2_bzopen) (
+      const char *path,
+      const char *mode
+   );
+
+BZ_EXTERN BZFILE * BZ_API(BZ2_bzdopen) (
+      int        fd,
+      const char *mode
+   );
+         
+BZ_EXTERN int BZ_API(BZ2_bzread) (
+      BZFILE* b, 
+      void* buf, 
+      int len 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzwrite) (
+      BZFILE* b, 
+      void*   buf, 
+      int     len 
+   );
+
+BZ_EXTERN int BZ_API(BZ2_bzflush) (
+      BZFILE* b
+   );
+
+BZ_EXTERN void BZ_API(BZ2_bzclose) (
+      BZFILE* b
+   );
+
+BZ_EXTERN const char * BZ_API(BZ2_bzerror) (
+      BZFILE *b, 
+      int    *errnum
+   );
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+
+/*-------------------------------------------------------------*/
+/*--- end                                           bzlib.h ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/bzlib_private.h b/commands/bzip2-1.0.3/bzlib_private.h
new file mode 100644
index 000000000..ca76fe62b
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzlib_private.h
@@ -0,0 +1,537 @@
+
+/*-------------------------------------------------------------*/
+/*--- Private header file for the library.                  ---*/
+/*---                                       bzlib_private.h ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+
+#ifndef _BZLIB_PRIVATE_H
+#define _BZLIB_PRIVATE_H
+
+#include 
+
+#ifndef BZ_NO_STDIO
+#include 
+#include 
+#include 
+#endif
+
+#include "bzlib.h"
+
+
+
+/*-- General stuff. --*/
+
+#define BZ_VERSION  "1.0.3, 15-Feb-2005"
+
+typedef char            Char;
+typedef unsigned char   Bool;
+typedef unsigned char   UChar;
+typedef int             Int32;
+typedef unsigned int    UInt32;
+typedef short           Int16;
+typedef unsigned short  UInt16;
+
+#define True  ((Bool)1)
+#define False ((Bool)0)
+
+#ifndef __GNUC__
+#define __inline__  /* */
+#endif 
+
+#ifndef BZ_NO_STDIO
+extern void BZ2_bz__AssertH__fail ( int errcode );
+#define AssertH(cond,errcode) \
+   { if (!(cond)) BZ2_bz__AssertH__fail ( errcode ); }
+#if BZ_DEBUG
+#define AssertD(cond,msg) \
+   { if (!(cond)) {       \
+      fprintf ( stderr,   \
+        "\n\nlibbzip2(debug build): internal error\n\t%s\n", msg );\
+      exit(1); \
+   }}
+#else
+#define AssertD(cond,msg) /* */
+#endif
+#define VPrintf0(zf) \
+   fprintf(stderr,zf)
+#define VPrintf1(zf,za1) \
+   fprintf(stderr,zf,za1)
+#define VPrintf2(zf,za1,za2) \
+   fprintf(stderr,zf,za1,za2)
+#define VPrintf3(zf,za1,za2,za3) \
+   fprintf(stderr,zf,za1,za2,za3)
+#define VPrintf4(zf,za1,za2,za3,za4) \
+   fprintf(stderr,zf,za1,za2,za3,za4)
+#define VPrintf5(zf,za1,za2,za3,za4,za5) \
+   fprintf(stderr,zf,za1,za2,za3,za4,za5)
+#else
+extern void bz_internal_error ( int errcode );
+#define AssertH(cond,errcode) \
+   { if (!(cond)) bz_internal_error ( errcode ); }
+#define AssertD(cond,msg) /* */
+#define VPrintf0(zf) /* */
+#define VPrintf1(zf,za1) /* */
+#define VPrintf2(zf,za1,za2) /* */
+#define VPrintf3(zf,za1,za2,za3) /* */
+#define VPrintf4(zf,za1,za2,za3,za4) /* */
+#define VPrintf5(zf,za1,za2,za3,za4,za5) /* */
+#endif
+
+
+#define BZALLOC(nnn) (strm->bzalloc)(strm->opaque,(nnn),1)
+#define BZFREE(ppp)  (strm->bzfree)(strm->opaque,(ppp))
+
+
+/*-- Header bytes. --*/
+
+#define BZ_HDR_B 0x42   /* 'B' */
+#define BZ_HDR_Z 0x5a   /* 'Z' */
+#define BZ_HDR_h 0x68   /* 'h' */
+#define BZ_HDR_0 0x30   /* '0' */
+  
+/*-- Constants for the back end. --*/
+
+#define BZ_MAX_ALPHA_SIZE 258
+#define BZ_MAX_CODE_LEN    23
+
+#define BZ_RUNA 0
+#define BZ_RUNB 1
+
+#define BZ_N_GROUPS 6
+#define BZ_G_SIZE   50
+#define BZ_N_ITERS  4
+
+#define BZ_MAX_SELECTORS (2 + (900000 / BZ_G_SIZE))
+
+
+
+/*-- Stuff for randomising repetitive blocks. --*/
+
+extern Int32 BZ2_rNums[512];
+
+#define BZ_RAND_DECLS                          \
+   Int32 rNToGo;                               \
+   Int32 rTPos                                 \
+
+#define BZ_RAND_INIT_MASK                      \
+   s->rNToGo = 0;                              \
+   s->rTPos  = 0                               \
+
+#define BZ_RAND_MASK ((s->rNToGo == 1) ? 1 : 0)
+
+#define BZ_RAND_UPD_MASK                       \
+   if (s->rNToGo == 0) {                       \
+      s->rNToGo = BZ2_rNums[s->rTPos];         \
+      s->rTPos++;                              \
+      if (s->rTPos == 512) s->rTPos = 0;       \
+   }                                           \
+   s->rNToGo--;
+
+
+
+/*-- Stuff for doing CRCs. --*/
+
+extern UInt32 BZ2_crc32Table[256];
+
+#define BZ_INITIALISE_CRC(crcVar)              \
+{                                              \
+   crcVar = 0xffffffffL;                       \
+}
+
+#define BZ_FINALISE_CRC(crcVar)                \
+{                                              \
+   crcVar = ~(crcVar);                         \
+}
+
+#define BZ_UPDATE_CRC(crcVar,cha)              \
+{                                              \
+   crcVar = (crcVar << 8) ^                    \
+            BZ2_crc32Table[(crcVar >> 24) ^    \
+                           ((UChar)cha)];      \
+}
+
+
+
+/*-- States and modes for compression. --*/
+
+#define BZ_M_IDLE      1
+#define BZ_M_RUNNING   2
+#define BZ_M_FLUSHING  3
+#define BZ_M_FINISHING 4
+
+#define BZ_S_OUTPUT    1
+#define BZ_S_INPUT     2
+
+#define BZ_N_RADIX 2
+#define BZ_N_QSORT 12
+#define BZ_N_SHELL 18
+#define BZ_N_OVERSHOOT (BZ_N_RADIX + BZ_N_QSORT + BZ_N_SHELL + 2)
+
+
+
+
+/*-- Structure holding all the compression-side stuff. --*/
+
+typedef
+   struct {
+      /* pointer back to the struct bz_stream */
+      bz_stream* strm;
+
+      /* mode this stream is in, and whether inputting */
+      /* or outputting data */
+      Int32    mode;
+      Int32    state;
+
+      /* remembers avail_in when flush/finish requested */
+      UInt32   avail_in_expect;
+
+      /* for doing the block sorting */
+      UInt32*  arr1;
+      UInt32*  arr2;
+      UInt32*  ftab;
+      Int32    origPtr;
+
+      /* aliases for arr1 and arr2 */
+      UInt32*  ptr;
+      UChar*   block;
+      UInt16*  mtfv;
+      UChar*   zbits;
+
+      /* for deciding when to use the fallback sorting algorithm */
+      Int32    workFactor;
+
+      /* run-length-encoding of the input */
+      UInt32   state_in_ch;
+      Int32    state_in_len;
+      BZ_RAND_DECLS;
+
+      /* input and output limits and current posns */
+      Int32    nblock;
+      Int32    nblockMAX;
+      Int32    numZ;
+      Int32    state_out_pos;
+
+      /* map of bytes used in block */
+      Int32    nInUse;
+      Bool     inUse[256];
+      UChar    unseqToSeq[256];
+
+      /* the buffer for bit stream creation */
+      UInt32   bsBuff;
+      Int32    bsLive;
+
+      /* block and combined CRCs */
+      UInt32   blockCRC;
+      UInt32   combinedCRC;
+
+      /* misc administratium */
+      Int32    verbosity;
+      Int32    blockNo;
+      Int32    blockSize100k;
+
+      /* stuff for coding the MTF values */
+      Int32    nMTF;
+      Int32    mtfFreq    [BZ_MAX_ALPHA_SIZE];
+      UChar    selector   [BZ_MAX_SELECTORS];
+      UChar    selectorMtf[BZ_MAX_SELECTORS];
+
+      UChar    len     [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+      Int32    code    [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+      Int32    rfreq   [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+      /* second dimension: only 3 needed; 4 makes index calculations faster */
+      UInt32   len_pack[BZ_MAX_ALPHA_SIZE][4];
+
+   }
+   EState;
+
+
+
+/*-- externs for compression. --*/
+
+extern void 
+BZ2_blockSort ( EState* );
+
+extern void 
+BZ2_compressBlock ( EState*, Bool );
+
+extern void 
+BZ2_bsInitWrite ( EState* );
+
+extern void 
+BZ2_hbAssignCodes ( Int32*, UChar*, Int32, Int32, Int32 );
+
+extern void 
+BZ2_hbMakeCodeLengths ( UChar*, Int32*, Int32, Int32 );
+
+
+
+/*-- states for decompression. --*/
+
+#define BZ_X_IDLE        1
+#define BZ_X_OUTPUT      2
+
+#define BZ_X_MAGIC_1     10
+#define BZ_X_MAGIC_2     11
+#define BZ_X_MAGIC_3     12
+#define BZ_X_MAGIC_4     13
+#define BZ_X_BLKHDR_1    14
+#define BZ_X_BLKHDR_2    15
+#define BZ_X_BLKHDR_3    16
+#define BZ_X_BLKHDR_4    17
+#define BZ_X_BLKHDR_5    18
+#define BZ_X_BLKHDR_6    19
+#define BZ_X_BCRC_1      20
+#define BZ_X_BCRC_2      21
+#define BZ_X_BCRC_3      22
+#define BZ_X_BCRC_4      23
+#define BZ_X_RANDBIT     24
+#define BZ_X_ORIGPTR_1   25
+#define BZ_X_ORIGPTR_2   26
+#define BZ_X_ORIGPTR_3   27
+#define BZ_X_MAPPING_1   28
+#define BZ_X_MAPPING_2   29
+#define BZ_X_SELECTOR_1  30
+#define BZ_X_SELECTOR_2  31
+#define BZ_X_SELECTOR_3  32
+#define BZ_X_CODING_1    33
+#define BZ_X_CODING_2    34
+#define BZ_X_CODING_3    35
+#define BZ_X_MTF_1       36
+#define BZ_X_MTF_2       37
+#define BZ_X_MTF_3       38
+#define BZ_X_MTF_4       39
+#define BZ_X_MTF_5       40
+#define BZ_X_MTF_6       41
+#define BZ_X_ENDHDR_2    42
+#define BZ_X_ENDHDR_3    43
+#define BZ_X_ENDHDR_4    44
+#define BZ_X_ENDHDR_5    45
+#define BZ_X_ENDHDR_6    46
+#define BZ_X_CCRC_1      47
+#define BZ_X_CCRC_2      48
+#define BZ_X_CCRC_3      49
+#define BZ_X_CCRC_4      50
+
+
+
+/*-- Constants for the fast MTF decoder. --*/
+
+#define MTFA_SIZE 4096
+#define MTFL_SIZE 16
+
+
+
+/*-- Structure holding all the decompression-side stuff. --*/
+
+typedef
+   struct {
+      /* pointer back to the struct bz_stream */
+      bz_stream* strm;
+
+      /* state indicator for this stream */
+      Int32    state;
+
+      /* for doing the final run-length decoding */
+      UChar    state_out_ch;
+      Int32    state_out_len;
+      Bool     blockRandomised;
+      BZ_RAND_DECLS;
+
+      /* the buffer for bit stream reading */
+      UInt32   bsBuff;
+      Int32    bsLive;
+
+      /* misc administratium */
+      Int32    blockSize100k;
+      Bool     smallDecompress;
+      Int32    currBlockNo;
+      Int32    verbosity;
+
+      /* for undoing the Burrows-Wheeler transform */
+      Int32    origPtr;
+      UInt32   tPos;
+      Int32    k0;
+      Int32    unzftab[256];
+      Int32    nblock_used;
+      Int32    cftab[257];
+      Int32    cftabCopy[257];
+
+      /* for undoing the Burrows-Wheeler transform (FAST) */
+      UInt32   *tt;
+
+      /* for undoing the Burrows-Wheeler transform (SMALL) */
+      UInt16   *ll16;
+      UChar    *ll4;
+
+      /* stored and calculated CRCs */
+      UInt32   storedBlockCRC;
+      UInt32   storedCombinedCRC;
+      UInt32   calculatedBlockCRC;
+      UInt32   calculatedCombinedCRC;
+
+      /* map of bytes used in block */
+      Int32    nInUse;
+      Bool     inUse[256];
+      Bool     inUse16[16];
+      UChar    seqToUnseq[256];
+
+      /* for decoding the MTF values */
+      UChar    mtfa   [MTFA_SIZE];
+      Int32    mtfbase[256 / MTFL_SIZE];
+      UChar    selector   [BZ_MAX_SELECTORS];
+      UChar    selectorMtf[BZ_MAX_SELECTORS];
+      UChar    len  [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+
+      Int32    limit  [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+      Int32    base   [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+      Int32    perm   [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+      Int32    minLens[BZ_N_GROUPS];
+
+      /* save area for scalars in the main decompress code */
+      Int32    save_i;
+      Int32    save_j;
+      Int32    save_t;
+      Int32    save_alphaSize;
+      Int32    save_nGroups;
+      Int32    save_nSelectors;
+      Int32    save_EOB;
+      Int32    save_groupNo;
+      Int32    save_groupPos;
+      Int32    save_nextSym;
+      Int32    save_nblockMAX;
+      Int32    save_nblock;
+      Int32    save_es;
+      Int32    save_N;
+      Int32    save_curr;
+      Int32    save_zt;
+      Int32    save_zn; 
+      Int32    save_zvec;
+      Int32    save_zj;
+      Int32    save_gSel;
+      Int32    save_gMinlen;
+      Int32*   save_gLimit;
+      Int32*   save_gBase;
+      Int32*   save_gPerm;
+
+   }
+   DState;
+
+
+
+/*-- Macros for decompression. --*/
+
+#define BZ_GET_FAST(cccc)                     \
+    s->tPos = s->tt[s->tPos];                 \
+    cccc = (UChar)(s->tPos & 0xff);           \
+    s->tPos >>= 8;
+
+#define BZ_GET_FAST_C(cccc)                   \
+    c_tPos = c_tt[c_tPos];                    \
+    cccc = (UChar)(c_tPos & 0xff);            \
+    c_tPos >>= 8;
+
+#define SET_LL4(i,n)                                          \
+   { if (((i) & 0x1) == 0)                                    \
+        s->ll4[(i) >> 1] = (s->ll4[(i) >> 1] & 0xf0) | (n); else    \
+        s->ll4[(i) >> 1] = (s->ll4[(i) >> 1] & 0x0f) | ((n) << 4);  \
+   }
+
+#define GET_LL4(i)                             \
+   ((((UInt32)(s->ll4[(i) >> 1])) >> (((i) << 2) & 0x4)) & 0xF)
+
+#define SET_LL(i,n)                          \
+   { s->ll16[i] = (UInt16)(n & 0x0000ffff);  \
+     SET_LL4(i, n >> 16);                    \
+   }
+
+#define GET_LL(i) \
+   (((UInt32)s->ll16[i]) | (GET_LL4(i) << 16))
+
+#define BZ_GET_SMALL(cccc)                            \
+      cccc = BZ2_indexIntoF ( s->tPos, s->cftab );    \
+      s->tPos = GET_LL(s->tPos);
+
+
+/*-- externs for decompression. --*/
+
+extern Int32 
+BZ2_indexIntoF ( Int32, Int32* );
+
+extern Int32 
+BZ2_decompress ( DState* );
+
+extern void 
+BZ2_hbCreateDecodeTables ( Int32*, Int32*, Int32*, UChar*,
+                           Int32,  Int32, Int32 );
+
+
+#endif
+
+
+/*-- BZ_NO_STDIO seems to make NULL disappear on some platforms. --*/
+
+#ifdef BZ_NO_STDIO
+#ifndef NULL
+#define NULL 0
+#endif
+#endif
+
+
+/*-------------------------------------------------------------*/
+/*--- end                                   bzlib_private.h ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/bzmore b/commands/bzip2-1.0.3/bzmore
new file mode 100644
index 000000000..d31404340
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzmore
@@ -0,0 +1,61 @@
+#!/bin/sh
+
+# Bzmore wrapped for bzip2, 
+# adapted from zmore by Philippe Troin  for Debian GNU/Linux.
+
+PATH="/usr/bin:$PATH"; export PATH
+
+prog=`echo $0 | sed 's|.*/||'`
+case "$prog" in
+	*less)	more=less	;;
+	*)	more=more       ;;
+esac
+
+if test "`echo -n a`" = "-n a"; then
+  # looks like a SysV system:
+  n1=''; n2='\c'
+else
+  n1='-n'; n2=''
+fi
+oldtty=`stty -g 2>/dev/null`
+if stty -cbreak 2>/dev/null; then
+  cb='cbreak'; ncb='-cbreak'
+else
+  # 'stty min 1' resets eof to ^a on both SunOS and SysV!
+  cb='min 1 -icanon'; ncb='icanon eof ^d'
+fi
+if test $? -eq 0 -a -n "$oldtty"; then
+   trap 'stty $oldtty 2>/dev/null; exit' 0 2 3 5 10 13 15
+else
+   trap 'stty $ncb echo 2>/dev/null; exit' 0 2 3 5 10 13 15
+fi
+
+if test $# = 0; then
+    if test -t 0; then
+	echo usage: $prog files...
+    else
+	bzip2 -cdfq | eval $more
+    fi
+else
+    FIRST=1
+    for FILE
+    do
+	if test $FIRST -eq 0; then
+		echo $n1 "--More--(Next file: $FILE)$n2"
+		stty $cb -echo 2>/dev/null
+		ANS=`dd bs=1 count=1 2>/dev/null` 
+		stty $ncb echo 2>/dev/null
+		echo " "
+		if test "$ANS" = 'e' -o "$ANS" = 'q'; then
+			exit
+		fi
+	fi
+	if test "$ANS" != 's'; then
+		echo "------> $FILE <------"
+		bzip2 -cdfq "$FILE" | eval $more
+	fi
+	if test -t; then
+		FIRST=0
+	fi
+    done
+fi
diff --git a/commands/bzip2-1.0.3/bzmore.1 b/commands/bzip2-1.0.3/bzmore.1
new file mode 100644
index 000000000..b437d3b03
--- /dev/null
+++ b/commands/bzip2-1.0.3/bzmore.1
@@ -0,0 +1,152 @@
+.\"Shamelessly copied from zmore.1 by Philippe Troin 
+.\"for Debian GNU/Linux
+.TH BZMORE 1
+.SH NAME
+bzmore, bzless \- file perusal filter for crt viewing of bzip2 compressed text
+.SH SYNOPSIS
+.B bzmore
+[ name ...  ]
+.br
+.B bzless
+[ name ...  ]
+.SH NOTE
+In the following description,
+.I bzless
+and
+.I less
+can be used interchangeably with
+.I bzmore
+and
+.I more.
+.SH DESCRIPTION
+.I  Bzmore
+is a filter which allows examination of compressed or plain text files
+one screenful at a time on a soft-copy terminal.
+.I bzmore
+works on files compressed with
+.I bzip2
+and also on uncompressed files.
+If a file does not exist,
+.I bzmore
+looks for a file of the same name with the addition of a .bz2 suffix.
+.PP
+.I Bzmore
+normally pauses after each screenful, printing --More--
+at the bottom of the screen.
+If the user then types a carriage return, one more line is displayed.
+If the user hits a space,
+another screenful is displayed.  Other possibilities are enumerated later.
+.PP
+.I Bzmore
+looks in the file
+.I /etc/termcap
+to determine terminal characteristics,
+and to determine the default window size.
+On a terminal capable of displaying 24 lines,
+the default window size is 22 lines.
+Other sequences which may be typed when
+.I bzmore
+pauses, and their effects, are as follows (\fIi\fP is an optional integer
+argument, defaulting to 1) :
+.PP
+.IP \fIi\|\fP
+display
+.I i
+more lines, (or another screenful if no argument is given)
+.PP
+.IP ^D
+display 11 more lines (a ``scroll'').
+If
+.I i
+is given, then the scroll size is set to \fIi\|\fP.
+.PP
+.IP d
+same as ^D (control-D)
+.PP
+.IP \fIi\|\fPz
+same as typing a space except that \fIi\|\fP, if present, becomes the new
+window size.  Note that the window size reverts back to the default at the
+end of the current file.
+.PP
+.IP \fIi\|\fPs
+skip \fIi\|\fP lines and print a screenful of lines
+.PP
+.IP \fIi\|\fPf
+skip \fIi\fP screenfuls and print a screenful of lines
+.PP
+.IP "q or Q"
+quit reading the current file; go on to the next (if any)
+.PP
+.IP "e or q"
+When the prompt --More--(Next file: 
+.IR file )
+is printed, this command causes bzmore to exit.
+.PP
+.IP s
+When the prompt --More--(Next file: 
+.IR file )
+is printed, this command causes bzmore to skip the next file and continue.
+.PP 
+.IP =
+Display the current line number.
+.PP
+.IP \fIi\|\fP/expr
+search for the \fIi\|\fP-th occurrence of the regular expression \fIexpr.\fP
+If the pattern is not found,
+.I bzmore
+goes on to the next file (if any).
+Otherwise, a screenful is displayed, starting two lines before the place
+where the expression was found.
+The user's erase and kill characters may be used to edit the regular
+expression.
+Erasing back past the first column cancels the search command.
+.PP
+.IP \fIi\|\fPn
+search for the \fIi\|\fP-th occurrence of the last regular expression entered.
+.PP
+.IP !command
+invoke a shell with \fIcommand\|\fP. 
+The character `!' in "command" are replaced with the
+previous shell command.  The sequence "\\!" is replaced by "!".
+.PP
+.IP ":q or :Q"
+quit reading the current file; go on to the next (if any)
+(same as q or Q).
+.PP
+.IP .
+(dot) repeat the previous command.
+.PP
+The commands take effect immediately, i.e., it is not necessary to
+type a carriage return.
+Up to the time when the command character itself is given,
+the user may hit the line kill character to cancel the numerical
+argument being formed.
+In addition, the user may hit the erase character to redisplay the
+--More-- message.
+.PP
+At any time when output is being sent to the terminal, the user can
+hit the quit key (normally control\-\\).
+.I Bzmore
+will stop sending output, and will display the usual --More--
+prompt.
+The user may then enter one of the above commands in the normal manner.
+Unfortunately, some output is lost when this is done, due to the
+fact that any characters waiting in the terminal's output queue
+are flushed when the quit signal occurs.
+.PP
+The terminal is set to
+.I noecho
+mode by this program so that the output can be continuous.
+What you type will thus not show on your terminal, except for the / and !
+commands.
+.PP
+If the standard output is not a teletype, then
+.I bzmore
+acts just like
+.I bzcat,
+except that a header is printed before each file.
+.SH FILES
+.DT
+/etc/termcap		Terminal data base
+.SH "SEE ALSO"
+more(1), less(1), bzip2(1), bzdiff(1), bzgrep(1)
diff --git a/commands/bzip2-1.0.3/compress.c b/commands/bzip2-1.0.3/compress.c
new file mode 100644
index 000000000..7e0c29155
--- /dev/null
+++ b/commands/bzip2-1.0.3/compress.c
@@ -0,0 +1,716 @@
+
+/*-------------------------------------------------------------*/
+/*--- Compression machinery (not incl block sorting)        ---*/
+/*---                                            compress.c ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+/*--
+   CHANGES
+   ~~~~~~~
+   0.9.0 -- original version.
+
+   0.9.0a/b -- no changes in this file.
+
+   0.9.0c
+      * changed setting of nGroups in sendMTFValues() so as to 
+        do a bit better on small files
+--*/
+
+#include "bzlib_private.h"
+
+
+/*---------------------------------------------------*/
+/*--- Bit stream I/O                              ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------------*/
+void BZ2_bsInitWrite ( EState* s )
+{
+   s->bsLive = 0;
+   s->bsBuff = 0;
+}
+
+
+/*---------------------------------------------------*/
+static
+void bsFinishWrite ( EState* s )
+{
+   while (s->bsLive > 0) {
+      s->zbits[s->numZ] = (UChar)(s->bsBuff >> 24);
+      s->numZ++;
+      s->bsBuff <<= 8;
+      s->bsLive -= 8;
+   }
+}
+
+
+/*---------------------------------------------------*/
+#define bsNEEDW(nz)                           \
+{                                             \
+   while (s->bsLive >= 8) {                   \
+      s->zbits[s->numZ]                       \
+         = (UChar)(s->bsBuff >> 24);          \
+      s->numZ++;                              \
+      s->bsBuff <<= 8;                        \
+      s->bsLive -= 8;                         \
+   }                                          \
+}
+
+
+/*---------------------------------------------------*/
+static
+__inline__
+void bsW ( EState* s, Int32 n, UInt32 v )
+{
+   bsNEEDW ( n );
+   s->bsBuff |= (v << (32 - s->bsLive - n));
+   s->bsLive += n;
+}
+
+
+/*---------------------------------------------------*/
+static
+void bsPutUInt32 ( EState* s, UInt32 u )
+{
+   bsW ( s, 8, (u >> 24) & 0xffL );
+   bsW ( s, 8, (u >> 16) & 0xffL );
+   bsW ( s, 8, (u >>  8) & 0xffL );
+   bsW ( s, 8,  u        & 0xffL );
+}
+
+
+/*---------------------------------------------------*/
+static
+void bsPutUChar ( EState* s, UChar c )
+{
+   bsW( s, 8, (UInt32)c );
+}
+
+
+/*---------------------------------------------------*/
+/*--- The back end proper                         ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------------*/
+static
+void makeMaps_e ( EState* s )
+{
+   Int32 i;
+   s->nInUse = 0;
+   for (i = 0; i < 256; i++)
+      if (s->inUse[i]) {
+         s->unseqToSeq[i] = s->nInUse;
+         s->nInUse++;
+      }
+}
+
+
+/*---------------------------------------------------*/
+static
+void generateMTFValues ( EState* s )
+{
+   UChar   yy[256];
+   Int32   i, j;
+   Int32   zPend;
+   Int32   wr;
+   Int32   EOB;
+
+   /* 
+      After sorting (eg, here),
+         s->arr1 [ 0 .. s->nblock-1 ] holds sorted order,
+         and
+         ((UChar*)s->arr2) [ 0 .. s->nblock-1 ] 
+         holds the original block data.
+
+      The first thing to do is generate the MTF values,
+      and put them in
+         ((UInt16*)s->arr1) [ 0 .. s->nblock-1 ].
+      Because there are strictly fewer or equal MTF values
+      than block values, ptr values in this area are overwritten
+      with MTF values only when they are no longer needed.
+
+      The final compressed bitstream is generated into the
+      area starting at
+         (UChar*) (&((UChar*)s->arr2)[s->nblock])
+
+      These storage aliases are set up in bzCompressInit(),
+      except for the last one, which is arranged in 
+      compressBlock().
+   */
+   UInt32* ptr   = s->ptr;
+   UChar* block  = s->block;
+   UInt16* mtfv  = s->mtfv;
+
+   makeMaps_e ( s );
+   EOB = s->nInUse+1;
+
+   for (i = 0; i <= EOB; i++) s->mtfFreq[i] = 0;
+
+   wr = 0;
+   zPend = 0;
+   for (i = 0; i < s->nInUse; i++) yy[i] = (UChar) i;
+
+   for (i = 0; i < s->nblock; i++) {
+      UChar ll_i;
+      AssertD ( wr <= i, "generateMTFValues(1)" );
+      j = ptr[i]-1; if (j < 0) j += s->nblock;
+      ll_i = s->unseqToSeq[block[j]];
+      AssertD ( ll_i < s->nInUse, "generateMTFValues(2a)" );
+
+      if (yy[0] == ll_i) { 
+         zPend++;
+      } else {
+
+         if (zPend > 0) {
+            zPend--;
+            while (True) {
+               if (zPend & 1) {
+                  mtfv[wr] = BZ_RUNB; wr++; 
+                  s->mtfFreq[BZ_RUNB]++; 
+               } else {
+                  mtfv[wr] = BZ_RUNA; wr++; 
+                  s->mtfFreq[BZ_RUNA]++; 
+               }
+               if (zPend < 2) break;
+               zPend = (zPend - 2) / 2;
+            };
+            zPend = 0;
+         }
+         {
+            register UChar  rtmp;
+            register UChar* ryy_j;
+            register UChar  rll_i;
+            rtmp  = yy[1];
+            yy[1] = yy[0];
+            ryy_j = &(yy[1]);
+            rll_i = ll_i;
+            while ( rll_i != rtmp ) {
+               register UChar rtmp2;
+               ryy_j++;
+               rtmp2  = rtmp;
+               rtmp   = *ryy_j;
+               *ryy_j = rtmp2;
+            };
+            yy[0] = rtmp;
+            j = ryy_j - &(yy[0]);
+            mtfv[wr] = j+1; wr++; s->mtfFreq[j+1]++;
+         }
+
+      }
+   }
+
+   if (zPend > 0) {
+      zPend--;
+      while (True) {
+         if (zPend & 1) {
+            mtfv[wr] = BZ_RUNB; wr++; 
+            s->mtfFreq[BZ_RUNB]++; 
+         } else {
+            mtfv[wr] = BZ_RUNA; wr++; 
+            s->mtfFreq[BZ_RUNA]++; 
+         }
+         if (zPend < 2) break;
+         zPend = (zPend - 2) / 2;
+      };
+      zPend = 0;
+   }
+
+   mtfv[wr] = EOB; wr++; s->mtfFreq[EOB]++;
+
+   s->nMTF = wr;
+}
+
+
+/*---------------------------------------------------*/
+#define BZ_LESSER_ICOST  0
+#define BZ_GREATER_ICOST 15
+
+static
+void sendMTFValues ( EState* s )
+{
+   Int32 v, t, i, j, gs, ge, totc, bt, bc, iter;
+   Int32 nSelectors, alphaSize, minLen, maxLen, selCtr;
+   Int32 nGroups, nBytes;
+
+   /*--
+   UChar  len [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+   is a global since the decoder also needs it.
+
+   Int32  code[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+   Int32  rfreq[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
+   are also globals only used in this proc.
+   Made global to keep stack frame size small.
+   --*/
+
+
+   UInt16 cost[BZ_N_GROUPS];
+   Int32  fave[BZ_N_GROUPS];
+
+   UInt16* mtfv = s->mtfv;
+
+   if (s->verbosity >= 3)
+      VPrintf3( "      %d in block, %d after MTF & 1-2 coding, "
+                "%d+2 syms in use\n", 
+                s->nblock, s->nMTF, s->nInUse );
+
+   alphaSize = s->nInUse+2;
+   for (t = 0; t < BZ_N_GROUPS; t++)
+      for (v = 0; v < alphaSize; v++)
+         s->len[t][v] = BZ_GREATER_ICOST;
+
+   /*--- Decide how many coding tables to use ---*/
+   AssertH ( s->nMTF > 0, 3001 );
+   if (s->nMTF < 200)  nGroups = 2; else
+   if (s->nMTF < 600)  nGroups = 3; else
+   if (s->nMTF < 1200) nGroups = 4; else
+   if (s->nMTF < 2400) nGroups = 5; else
+                       nGroups = 6;
+
+   /*--- Generate an initial set of coding tables ---*/
+   { 
+      Int32 nPart, remF, tFreq, aFreq;
+
+      nPart = nGroups;
+      remF  = s->nMTF;
+      gs = 0;
+      while (nPart > 0) {
+         tFreq = remF / nPart;
+         ge = gs-1;
+         aFreq = 0;
+         while (aFreq < tFreq && ge < alphaSize-1) {
+            ge++;
+            aFreq += s->mtfFreq[ge];
+         }
+
+         if (ge > gs 
+             && nPart != nGroups && nPart != 1 
+             && ((nGroups-nPart) % 2 == 1)) {
+            aFreq -= s->mtfFreq[ge];
+            ge--;
+         }
+
+         if (s->verbosity >= 3)
+            VPrintf5( "      initial group %d, [%d .. %d], "
+                      "has %d syms (%4.1f%%)\n",
+                      nPart, gs, ge, aFreq, 
+                      (100.0 * (float)aFreq) / (float)(s->nMTF) );
+ 
+         for (v = 0; v < alphaSize; v++)
+            if (v >= gs && v <= ge) 
+               s->len[nPart-1][v] = BZ_LESSER_ICOST; else
+               s->len[nPart-1][v] = BZ_GREATER_ICOST;
+ 
+         nPart--;
+         gs = ge+1;
+         remF -= aFreq;
+      }
+   }
+
+   /*--- 
+      Iterate up to BZ_N_ITERS times to improve the tables.
+   ---*/
+   for (iter = 0; iter < BZ_N_ITERS; iter++) {
+
+      for (t = 0; t < nGroups; t++) fave[t] = 0;
+
+      for (t = 0; t < nGroups; t++)
+         for (v = 0; v < alphaSize; v++)
+            s->rfreq[t][v] = 0;
+
+      /*---
+        Set up an auxiliary length table which is used to fast-track
+	the common case (nGroups == 6). 
+      ---*/
+      if (nGroups == 6) {
+         for (v = 0; v < alphaSize; v++) {
+            s->len_pack[v][0] = (s->len[1][v] << 16) | s->len[0][v];
+            s->len_pack[v][1] = (s->len[3][v] << 16) | s->len[2][v];
+            s->len_pack[v][2] = (s->len[5][v] << 16) | s->len[4][v];
+	 }
+      }
+
+      nSelectors = 0;
+      totc = 0;
+      gs = 0;
+      while (True) {
+
+         /*--- Set group start & end marks. --*/
+         if (gs >= s->nMTF) break;
+         ge = gs + BZ_G_SIZE - 1; 
+         if (ge >= s->nMTF) ge = s->nMTF-1;
+
+         /*-- 
+            Calculate the cost of this group as coded
+            by each of the coding tables.
+         --*/
+         for (t = 0; t < nGroups; t++) cost[t] = 0;
+
+         if (nGroups == 6 && 50 == ge-gs+1) {
+            /*--- fast track the common case ---*/
+            register UInt32 cost01, cost23, cost45;
+            register UInt16 icv;
+            cost01 = cost23 = cost45 = 0;
+
+#           define BZ_ITER(nn)                \
+               icv = mtfv[gs+(nn)];           \
+               cost01 += s->len_pack[icv][0]; \
+               cost23 += s->len_pack[icv][1]; \
+               cost45 += s->len_pack[icv][2]; \
+
+            BZ_ITER(0);  BZ_ITER(1);  BZ_ITER(2);  BZ_ITER(3);  BZ_ITER(4);
+            BZ_ITER(5);  BZ_ITER(6);  BZ_ITER(7);  BZ_ITER(8);  BZ_ITER(9);
+            BZ_ITER(10); BZ_ITER(11); BZ_ITER(12); BZ_ITER(13); BZ_ITER(14);
+            BZ_ITER(15); BZ_ITER(16); BZ_ITER(17); BZ_ITER(18); BZ_ITER(19);
+            BZ_ITER(20); BZ_ITER(21); BZ_ITER(22); BZ_ITER(23); BZ_ITER(24);
+            BZ_ITER(25); BZ_ITER(26); BZ_ITER(27); BZ_ITER(28); BZ_ITER(29);
+            BZ_ITER(30); BZ_ITER(31); BZ_ITER(32); BZ_ITER(33); BZ_ITER(34);
+            BZ_ITER(35); BZ_ITER(36); BZ_ITER(37); BZ_ITER(38); BZ_ITER(39);
+            BZ_ITER(40); BZ_ITER(41); BZ_ITER(42); BZ_ITER(43); BZ_ITER(44);
+            BZ_ITER(45); BZ_ITER(46); BZ_ITER(47); BZ_ITER(48); BZ_ITER(49);
+
+#           undef BZ_ITER
+
+            cost[0] = cost01 & 0xffff; cost[1] = cost01 >> 16;
+            cost[2] = cost23 & 0xffff; cost[3] = cost23 >> 16;
+            cost[4] = cost45 & 0xffff; cost[5] = cost45 >> 16;
+
+         } else {
+	    /*--- slow version which correctly handles all situations ---*/
+            for (i = gs; i <= ge; i++) { 
+               UInt16 icv = mtfv[i];
+               for (t = 0; t < nGroups; t++) cost[t] += s->len[t][icv];
+            }
+         }
+ 
+         /*-- 
+            Find the coding table which is best for this group,
+            and record its identity in the selector table.
+         --*/
+         bc = 999999999; bt = -1;
+         for (t = 0; t < nGroups; t++)
+            if (cost[t] < bc) { bc = cost[t]; bt = t; };
+         totc += bc;
+         fave[bt]++;
+         s->selector[nSelectors] = bt;
+         nSelectors++;
+
+         /*-- 
+            Increment the symbol frequencies for the selected table.
+          --*/
+         if (nGroups == 6 && 50 == ge-gs+1) {
+            /*--- fast track the common case ---*/
+
+#           define BZ_ITUR(nn) s->rfreq[bt][ mtfv[gs+(nn)] ]++
+
+            BZ_ITUR(0);  BZ_ITUR(1);  BZ_ITUR(2);  BZ_ITUR(3);  BZ_ITUR(4);
+            BZ_ITUR(5);  BZ_ITUR(6);  BZ_ITUR(7);  BZ_ITUR(8);  BZ_ITUR(9);
+            BZ_ITUR(10); BZ_ITUR(11); BZ_ITUR(12); BZ_ITUR(13); BZ_ITUR(14);
+            BZ_ITUR(15); BZ_ITUR(16); BZ_ITUR(17); BZ_ITUR(18); BZ_ITUR(19);
+            BZ_ITUR(20); BZ_ITUR(21); BZ_ITUR(22); BZ_ITUR(23); BZ_ITUR(24);
+            BZ_ITUR(25); BZ_ITUR(26); BZ_ITUR(27); BZ_ITUR(28); BZ_ITUR(29);
+            BZ_ITUR(30); BZ_ITUR(31); BZ_ITUR(32); BZ_ITUR(33); BZ_ITUR(34);
+            BZ_ITUR(35); BZ_ITUR(36); BZ_ITUR(37); BZ_ITUR(38); BZ_ITUR(39);
+            BZ_ITUR(40); BZ_ITUR(41); BZ_ITUR(42); BZ_ITUR(43); BZ_ITUR(44);
+            BZ_ITUR(45); BZ_ITUR(46); BZ_ITUR(47); BZ_ITUR(48); BZ_ITUR(49);
+
+#           undef BZ_ITUR
+
+         } else {
+	    /*--- slow version which correctly handles all situations ---*/
+            for (i = gs; i <= ge; i++)
+               s->rfreq[bt][ mtfv[i] ]++;
+         }
+
+         gs = ge+1;
+      }
+      if (s->verbosity >= 3) {
+         VPrintf2 ( "      pass %d: size is %d, grp uses are ", 
+                   iter+1, totc/8 );
+         for (t = 0; t < nGroups; t++)
+            VPrintf1 ( "%d ", fave[t] );
+         VPrintf0 ( "\n" );
+      }
+
+      /*--
+        Recompute the tables based on the accumulated frequencies.
+      --*/
+      /* maxLen was changed from 20 to 17 in bzip2-1.0.3.  See 
+         comment in huffman.c for details. */
+      for (t = 0; t < nGroups; t++)
+         BZ2_hbMakeCodeLengths ( &(s->len[t][0]), &(s->rfreq[t][0]), 
+                                 alphaSize, 17 /*20*/ );
+   }
+
+
+   AssertH( nGroups < 8, 3002 );
+   AssertH( nSelectors < 32768 &&
+            nSelectors <= (2 + (900000 / BZ_G_SIZE)),
+            3003 );
+
+
+   /*--- Compute MTF values for the selectors. ---*/
+   {
+      UChar pos[BZ_N_GROUPS], ll_i, tmp2, tmp;
+      for (i = 0; i < nGroups; i++) pos[i] = i;
+      for (i = 0; i < nSelectors; i++) {
+         ll_i = s->selector[i];
+         j = 0;
+         tmp = pos[j];
+         while ( ll_i != tmp ) {
+            j++;
+            tmp2 = tmp;
+            tmp = pos[j];
+            pos[j] = tmp2;
+         };
+         pos[0] = tmp;
+         s->selectorMtf[i] = j;
+      }
+   };
+
+   /*--- Assign actual codes for the tables. --*/
+   for (t = 0; t < nGroups; t++) {
+      minLen = 32;
+      maxLen = 0;
+      for (i = 0; i < alphaSize; i++) {
+         if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
+         if (s->len[t][i] < minLen) minLen = s->len[t][i];
+      }
+      AssertH ( !(maxLen > 17 /*20*/ ), 3004 );
+      AssertH ( !(minLen < 1),  3005 );
+      BZ2_hbAssignCodes ( &(s->code[t][0]), &(s->len[t][0]), 
+                          minLen, maxLen, alphaSize );
+   }
+
+   /*--- Transmit the mapping table. ---*/
+   { 
+      Bool inUse16[16];
+      for (i = 0; i < 16; i++) {
+          inUse16[i] = False;
+          for (j = 0; j < 16; j++)
+             if (s->inUse[i * 16 + j]) inUse16[i] = True;
+      }
+     
+      nBytes = s->numZ;
+      for (i = 0; i < 16; i++)
+         if (inUse16[i]) bsW(s,1,1); else bsW(s,1,0);
+
+      for (i = 0; i < 16; i++)
+         if (inUse16[i])
+            for (j = 0; j < 16; j++) {
+               if (s->inUse[i * 16 + j]) bsW(s,1,1); else bsW(s,1,0);
+            }
+
+      if (s->verbosity >= 3) 
+         VPrintf1( "      bytes: mapping %d, ", s->numZ-nBytes );
+   }
+
+   /*--- Now the selectors. ---*/
+   nBytes = s->numZ;
+   bsW ( s, 3, nGroups );
+   bsW ( s, 15, nSelectors );
+   for (i = 0; i < nSelectors; i++) { 
+      for (j = 0; j < s->selectorMtf[i]; j++) bsW(s,1,1);
+      bsW(s,1,0);
+   }
+   if (s->verbosity >= 3)
+      VPrintf1( "selectors %d, ", s->numZ-nBytes );
+
+   /*--- Now the coding tables. ---*/
+   nBytes = s->numZ;
+
+   for (t = 0; t < nGroups; t++) {
+      Int32 curr = s->len[t][0];
+      bsW ( s, 5, curr );
+      for (i = 0; i < alphaSize; i++) {
+         while (curr < s->len[t][i]) { bsW(s,2,2); curr++; /* 10 */ };
+         while (curr > s->len[t][i]) { bsW(s,2,3); curr--; /* 11 */ };
+         bsW ( s, 1, 0 );
+      }
+   }
+
+   if (s->verbosity >= 3)
+      VPrintf1 ( "code lengths %d, ", s->numZ-nBytes );
+
+   /*--- And finally, the block data proper ---*/
+   nBytes = s->numZ;
+   selCtr = 0;
+   gs = 0;
+   while (True) {
+      if (gs >= s->nMTF) break;
+      ge = gs + BZ_G_SIZE - 1; 
+      if (ge >= s->nMTF) ge = s->nMTF-1;
+      AssertH ( s->selector[selCtr] < nGroups, 3006 );
+
+      if (nGroups == 6 && 50 == ge-gs+1) {
+            /*--- fast track the common case ---*/
+            UInt16 mtfv_i;
+            UChar* s_len_sel_selCtr 
+               = &(s->len[s->selector[selCtr]][0]);
+            Int32* s_code_sel_selCtr
+               = &(s->code[s->selector[selCtr]][0]);
+
+#           define BZ_ITAH(nn)                      \
+               mtfv_i = mtfv[gs+(nn)];              \
+               bsW ( s,                             \
+                     s_len_sel_selCtr[mtfv_i],      \
+                     s_code_sel_selCtr[mtfv_i] )
+
+            BZ_ITAH(0);  BZ_ITAH(1);  BZ_ITAH(2);  BZ_ITAH(3);  BZ_ITAH(4);
+            BZ_ITAH(5);  BZ_ITAH(6);  BZ_ITAH(7);  BZ_ITAH(8);  BZ_ITAH(9);
+            BZ_ITAH(10); BZ_ITAH(11); BZ_ITAH(12); BZ_ITAH(13); BZ_ITAH(14);
+            BZ_ITAH(15); BZ_ITAH(16); BZ_ITAH(17); BZ_ITAH(18); BZ_ITAH(19);
+            BZ_ITAH(20); BZ_ITAH(21); BZ_ITAH(22); BZ_ITAH(23); BZ_ITAH(24);
+            BZ_ITAH(25); BZ_ITAH(26); BZ_ITAH(27); BZ_ITAH(28); BZ_ITAH(29);
+            BZ_ITAH(30); BZ_ITAH(31); BZ_ITAH(32); BZ_ITAH(33); BZ_ITAH(34);
+            BZ_ITAH(35); BZ_ITAH(36); BZ_ITAH(37); BZ_ITAH(38); BZ_ITAH(39);
+            BZ_ITAH(40); BZ_ITAH(41); BZ_ITAH(42); BZ_ITAH(43); BZ_ITAH(44);
+            BZ_ITAH(45); BZ_ITAH(46); BZ_ITAH(47); BZ_ITAH(48); BZ_ITAH(49);
+
+#           undef BZ_ITAH
+
+      } else {
+	 /*--- slow version which correctly handles all situations ---*/
+         for (i = gs; i <= ge; i++) {
+            bsW ( s, 
+                  s->len  [s->selector[selCtr]] [mtfv[i]],
+                  s->code [s->selector[selCtr]] [mtfv[i]] );
+         }
+      }
+
+
+      gs = ge+1;
+      selCtr++;
+   }
+   AssertH( selCtr == nSelectors, 3007 );
+
+   if (s->verbosity >= 3)
+      VPrintf1( "codes %d\n", s->numZ-nBytes );
+}
+
+
+/*---------------------------------------------------*/
+void BZ2_compressBlock ( EState* s, Bool is_last_block )
+{
+   if (s->nblock > 0) {
+
+      BZ_FINALISE_CRC ( s->blockCRC );
+      s->combinedCRC = (s->combinedCRC << 1) | (s->combinedCRC >> 31);
+      s->combinedCRC ^= s->blockCRC;
+      if (s->blockNo > 1) s->numZ = 0;
+
+      if (s->verbosity >= 2)
+         VPrintf4( "    block %d: crc = 0x%08x, "
+                   "combined CRC = 0x%08x, size = %d\n",
+                   s->blockNo, s->blockCRC, s->combinedCRC, s->nblock );
+
+      BZ2_blockSort ( s );
+   }
+
+   s->zbits = (UChar*) (&((UChar*)s->arr2)[s->nblock]);
+
+   /*-- If this is the first block, create the stream header. --*/
+   if (s->blockNo == 1) {
+      BZ2_bsInitWrite ( s );
+      bsPutUChar ( s, BZ_HDR_B );
+      bsPutUChar ( s, BZ_HDR_Z );
+      bsPutUChar ( s, BZ_HDR_h );
+      bsPutUChar ( s, (UChar)(BZ_HDR_0 + s->blockSize100k) );
+   }
+
+   if (s->nblock > 0) {
+
+      bsPutUChar ( s, 0x31 ); bsPutUChar ( s, 0x41 );
+      bsPutUChar ( s, 0x59 ); bsPutUChar ( s, 0x26 );
+      bsPutUChar ( s, 0x53 ); bsPutUChar ( s, 0x59 );
+
+      /*-- Now the block's CRC, so it is in a known place. --*/
+      bsPutUInt32 ( s, s->blockCRC );
+
+      /*-- 
+         Now a single bit indicating (non-)randomisation. 
+         As of version 0.9.5, we use a better sorting algorithm
+         which makes randomisation unnecessary.  So always set
+         the randomised bit to 'no'.  Of course, the decoder
+         still needs to be able to handle randomised blocks
+         so as to maintain backwards compatibility with
+         older versions of bzip2.
+      --*/
+      bsW(s,1,0);
+
+      bsW ( s, 24, s->origPtr );
+      generateMTFValues ( s );
+      sendMTFValues ( s );
+   }
+
+
+   /*-- If this is the last block, add the stream trailer. --*/
+   if (is_last_block) {
+
+      bsPutUChar ( s, 0x17 ); bsPutUChar ( s, 0x72 );
+      bsPutUChar ( s, 0x45 ); bsPutUChar ( s, 0x38 );
+      bsPutUChar ( s, 0x50 ); bsPutUChar ( s, 0x90 );
+      bsPutUInt32 ( s, s->combinedCRC );
+      if (s->verbosity >= 2)
+         VPrintf1( "    final combined CRC = 0x%08x\n   ", s->combinedCRC );
+      bsFinishWrite ( s );
+   }
+}
+
+
+/*-------------------------------------------------------------*/
+/*--- end                                        compress.c ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/crctable.c b/commands/bzip2-1.0.3/crctable.c
new file mode 100644
index 000000000..b6dadfc62
--- /dev/null
+++ b/commands/bzip2-1.0.3/crctable.c
@@ -0,0 +1,144 @@
+
+/*-------------------------------------------------------------*/
+/*--- Table for doing CRCs                                  ---*/
+/*---                                            crctable.c ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+
+#include "bzlib_private.h"
+
+/*--
+  I think this is an implementation of the AUTODIN-II,
+  Ethernet & FDDI 32-bit CRC standard.  Vaguely derived
+  from code by Rob Warnock, in Section 51 of the
+  comp.compression FAQ.
+--*/
+
+UInt32 BZ2_crc32Table[256] = {
+
+   /*-- Ugly, innit? --*/
+
+   0x00000000L, 0x04c11db7L, 0x09823b6eL, 0x0d4326d9L,
+   0x130476dcL, 0x17c56b6bL, 0x1a864db2L, 0x1e475005L,
+   0x2608edb8L, 0x22c9f00fL, 0x2f8ad6d6L, 0x2b4bcb61L,
+   0x350c9b64L, 0x31cd86d3L, 0x3c8ea00aL, 0x384fbdbdL,
+   0x4c11db70L, 0x48d0c6c7L, 0x4593e01eL, 0x4152fda9L,
+   0x5f15adacL, 0x5bd4b01bL, 0x569796c2L, 0x52568b75L,
+   0x6a1936c8L, 0x6ed82b7fL, 0x639b0da6L, 0x675a1011L,
+   0x791d4014L, 0x7ddc5da3L, 0x709f7b7aL, 0x745e66cdL,
+   0x9823b6e0L, 0x9ce2ab57L, 0x91a18d8eL, 0x95609039L,
+   0x8b27c03cL, 0x8fe6dd8bL, 0x82a5fb52L, 0x8664e6e5L,
+   0xbe2b5b58L, 0xbaea46efL, 0xb7a96036L, 0xb3687d81L,
+   0xad2f2d84L, 0xa9ee3033L, 0xa4ad16eaL, 0xa06c0b5dL,
+   0xd4326d90L, 0xd0f37027L, 0xddb056feL, 0xd9714b49L,
+   0xc7361b4cL, 0xc3f706fbL, 0xceb42022L, 0xca753d95L,
+   0xf23a8028L, 0xf6fb9d9fL, 0xfbb8bb46L, 0xff79a6f1L,
+   0xe13ef6f4L, 0xe5ffeb43L, 0xe8bccd9aL, 0xec7dd02dL,
+   0x34867077L, 0x30476dc0L, 0x3d044b19L, 0x39c556aeL,
+   0x278206abL, 0x23431b1cL, 0x2e003dc5L, 0x2ac12072L,
+   0x128e9dcfL, 0x164f8078L, 0x1b0ca6a1L, 0x1fcdbb16L,
+   0x018aeb13L, 0x054bf6a4L, 0x0808d07dL, 0x0cc9cdcaL,
+   0x7897ab07L, 0x7c56b6b0L, 0x71159069L, 0x75d48ddeL,
+   0x6b93dddbL, 0x6f52c06cL, 0x6211e6b5L, 0x66d0fb02L,
+   0x5e9f46bfL, 0x5a5e5b08L, 0x571d7dd1L, 0x53dc6066L,
+   0x4d9b3063L, 0x495a2dd4L, 0x44190b0dL, 0x40d816baL,
+   0xaca5c697L, 0xa864db20L, 0xa527fdf9L, 0xa1e6e04eL,
+   0xbfa1b04bL, 0xbb60adfcL, 0xb6238b25L, 0xb2e29692L,
+   0x8aad2b2fL, 0x8e6c3698L, 0x832f1041L, 0x87ee0df6L,
+   0x99a95df3L, 0x9d684044L, 0x902b669dL, 0x94ea7b2aL,
+   0xe0b41de7L, 0xe4750050L, 0xe9362689L, 0xedf73b3eL,
+   0xf3b06b3bL, 0xf771768cL, 0xfa325055L, 0xfef34de2L,
+   0xc6bcf05fL, 0xc27dede8L, 0xcf3ecb31L, 0xcbffd686L,
+   0xd5b88683L, 0xd1799b34L, 0xdc3abdedL, 0xd8fba05aL,
+   0x690ce0eeL, 0x6dcdfd59L, 0x608edb80L, 0x644fc637L,
+   0x7a089632L, 0x7ec98b85L, 0x738aad5cL, 0x774bb0ebL,
+   0x4f040d56L, 0x4bc510e1L, 0x46863638L, 0x42472b8fL,
+   0x5c007b8aL, 0x58c1663dL, 0x558240e4L, 0x51435d53L,
+   0x251d3b9eL, 0x21dc2629L, 0x2c9f00f0L, 0x285e1d47L,
+   0x36194d42L, 0x32d850f5L, 0x3f9b762cL, 0x3b5a6b9bL,
+   0x0315d626L, 0x07d4cb91L, 0x0a97ed48L, 0x0e56f0ffL,
+   0x1011a0faL, 0x14d0bd4dL, 0x19939b94L, 0x1d528623L,
+   0xf12f560eL, 0xf5ee4bb9L, 0xf8ad6d60L, 0xfc6c70d7L,
+   0xe22b20d2L, 0xe6ea3d65L, 0xeba91bbcL, 0xef68060bL,
+   0xd727bbb6L, 0xd3e6a601L, 0xdea580d8L, 0xda649d6fL,
+   0xc423cd6aL, 0xc0e2d0ddL, 0xcda1f604L, 0xc960ebb3L,
+   0xbd3e8d7eL, 0xb9ff90c9L, 0xb4bcb610L, 0xb07daba7L,
+   0xae3afba2L, 0xaafbe615L, 0xa7b8c0ccL, 0xa379dd7bL,
+   0x9b3660c6L, 0x9ff77d71L, 0x92b45ba8L, 0x9675461fL,
+   0x8832161aL, 0x8cf30badL, 0x81b02d74L, 0x857130c3L,
+   0x5d8a9099L, 0x594b8d2eL, 0x5408abf7L, 0x50c9b640L,
+   0x4e8ee645L, 0x4a4ffbf2L, 0x470cdd2bL, 0x43cdc09cL,
+   0x7b827d21L, 0x7f436096L, 0x7200464fL, 0x76c15bf8L,
+   0x68860bfdL, 0x6c47164aL, 0x61043093L, 0x65c52d24L,
+   0x119b4be9L, 0x155a565eL, 0x18197087L, 0x1cd86d30L,
+   0x029f3d35L, 0x065e2082L, 0x0b1d065bL, 0x0fdc1becL,
+   0x3793a651L, 0x3352bbe6L, 0x3e119d3fL, 0x3ad08088L,
+   0x2497d08dL, 0x2056cd3aL, 0x2d15ebe3L, 0x29d4f654L,
+   0xc5a92679L, 0xc1683bceL, 0xcc2b1d17L, 0xc8ea00a0L,
+   0xd6ad50a5L, 0xd26c4d12L, 0xdf2f6bcbL, 0xdbee767cL,
+   0xe3a1cbc1L, 0xe760d676L, 0xea23f0afL, 0xeee2ed18L,
+   0xf0a5bd1dL, 0xf464a0aaL, 0xf9278673L, 0xfde69bc4L,
+   0x89b8fd09L, 0x8d79e0beL, 0x803ac667L, 0x84fbdbd0L,
+   0x9abc8bd5L, 0x9e7d9662L, 0x933eb0bbL, 0x97ffad0cL,
+   0xafb010b1L, 0xab710d06L, 0xa6322bdfL, 0xa2f33668L,
+   0xbcb4666dL, 0xb8757bdaL, 0xb5365d03L, 0xb1f740b4L
+};
+
+
+/*-------------------------------------------------------------*/
+/*--- end                                        crctable.c ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/decompress.c b/commands/bzip2-1.0.3/decompress.c
new file mode 100644
index 000000000..81c3d2cc3
--- /dev/null
+++ b/commands/bzip2-1.0.3/decompress.c
@@ -0,0 +1,666 @@
+
+/*-------------------------------------------------------------*/
+/*--- Decompression machinery                               ---*/
+/*---                                          decompress.c ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+
+#include "bzlib_private.h"
+
+
+/*---------------------------------------------------*/
+static
+void makeMaps_d ( DState* s )
+{
+   Int32 i;
+   s->nInUse = 0;
+   for (i = 0; i < 256; i++)
+      if (s->inUse[i]) {
+         s->seqToUnseq[s->nInUse] = i;
+         s->nInUse++;
+      }
+}
+
+
+/*---------------------------------------------------*/
+#define RETURN(rrr)                               \
+   { retVal = rrr; goto save_state_and_return; };
+
+#define GET_BITS(lll,vvv,nnn)                     \
+   case lll: s->state = lll;                      \
+   while (True) {                                 \
+      if (s->bsLive >= nnn) {                     \
+         UInt32 v;                                \
+         v = (s->bsBuff >>                        \
+             (s->bsLive-nnn)) & ((1 << nnn)-1);   \
+         s->bsLive -= nnn;                        \
+         vvv = v;                                 \
+         break;                                   \
+      }                                           \
+      if (s->strm->avail_in == 0) RETURN(BZ_OK);  \
+      s->bsBuff                                   \
+         = (s->bsBuff << 8) |                     \
+           ((UInt32)                              \
+              (*((UChar*)(s->strm->next_in))));   \
+      s->bsLive += 8;                             \
+      s->strm->next_in++;                         \
+      s->strm->avail_in--;                        \
+      s->strm->total_in_lo32++;                   \
+      if (s->strm->total_in_lo32 == 0)            \
+         s->strm->total_in_hi32++;                \
+   }
+
+#define GET_UCHAR(lll,uuu)                        \
+   GET_BITS(lll,uuu,8)
+
+#define GET_BIT(lll,uuu)                          \
+   GET_BITS(lll,uuu,1)
+
+/*---------------------------------------------------*/
+#define GET_MTF_VAL(label1,label2,lval)           \
+{                                                 \
+   if (groupPos == 0) {                           \
+      groupNo++;                                  \
+      if (groupNo >= nSelectors)                  \
+         RETURN(BZ_DATA_ERROR);                   \
+      groupPos = BZ_G_SIZE;                       \
+      gSel = s->selector[groupNo];                \
+      gMinlen = s->minLens[gSel];                 \
+      gLimit = &(s->limit[gSel][0]);              \
+      gPerm = &(s->perm[gSel][0]);                \
+      gBase = &(s->base[gSel][0]);                \
+   }                                              \
+   groupPos--;                                    \
+   zn = gMinlen;                                  \
+   GET_BITS(label1, zvec, zn);                    \
+   while (1) {                                    \
+      if (zn > 20 /* the longest code */)         \
+         RETURN(BZ_DATA_ERROR);                   \
+      if (zvec <= gLimit[zn]) break;              \
+      zn++;                                       \
+      GET_BIT(label2, zj);                        \
+      zvec = (zvec << 1) | zj;                    \
+   };                                             \
+   if (zvec - gBase[zn] < 0                       \
+       || zvec - gBase[zn] >= BZ_MAX_ALPHA_SIZE)  \
+      RETURN(BZ_DATA_ERROR);                      \
+   lval = gPerm[zvec - gBase[zn]];                \
+}
+
+
+/*---------------------------------------------------*/
+Int32 BZ2_decompress ( DState* s )
+{
+   UChar      uc;
+   Int32      retVal;
+   Int32      minLen, maxLen;
+   bz_stream* strm = s->strm;
+
+   /* stuff that needs to be saved/restored */
+   Int32  i;
+   Int32  j;
+   Int32  t;
+   Int32  alphaSize;
+   Int32  nGroups;
+   Int32  nSelectors;
+   Int32  EOB;
+   Int32  groupNo;
+   Int32  groupPos;
+   Int32  nextSym;
+   Int32  nblockMAX;
+   Int32  nblock;
+   Int32  es;
+   Int32  N;
+   Int32  curr;
+   Int32  zt;
+   Int32  zn; 
+   Int32  zvec;
+   Int32  zj;
+   Int32  gSel;
+   Int32  gMinlen;
+   Int32* gLimit;
+   Int32* gBase;
+   Int32* gPerm;
+
+   if (s->state == BZ_X_MAGIC_1) {
+      /*initialise the save area*/
+      s->save_i           = 0;
+      s->save_j           = 0;
+      s->save_t           = 0;
+      s->save_alphaSize   = 0;
+      s->save_nGroups     = 0;
+      s->save_nSelectors  = 0;
+      s->save_EOB         = 0;
+      s->save_groupNo     = 0;
+      s->save_groupPos    = 0;
+      s->save_nextSym     = 0;
+      s->save_nblockMAX   = 0;
+      s->save_nblock      = 0;
+      s->save_es          = 0;
+      s->save_N           = 0;
+      s->save_curr        = 0;
+      s->save_zt          = 0;
+      s->save_zn          = 0;
+      s->save_zvec        = 0;
+      s->save_zj          = 0;
+      s->save_gSel        = 0;
+      s->save_gMinlen     = 0;
+      s->save_gLimit      = NULL;
+      s->save_gBase       = NULL;
+      s->save_gPerm       = NULL;
+   }
+
+   /*restore from the save area*/
+   i           = s->save_i;
+   j           = s->save_j;
+   t           = s->save_t;
+   alphaSize   = s->save_alphaSize;
+   nGroups     = s->save_nGroups;
+   nSelectors  = s->save_nSelectors;
+   EOB         = s->save_EOB;
+   groupNo     = s->save_groupNo;
+   groupPos    = s->save_groupPos;
+   nextSym     = s->save_nextSym;
+   nblockMAX   = s->save_nblockMAX;
+   nblock      = s->save_nblock;
+   es          = s->save_es;
+   N           = s->save_N;
+   curr        = s->save_curr;
+   zt          = s->save_zt;
+   zn          = s->save_zn; 
+   zvec        = s->save_zvec;
+   zj          = s->save_zj;
+   gSel        = s->save_gSel;
+   gMinlen     = s->save_gMinlen;
+   gLimit      = s->save_gLimit;
+   gBase       = s->save_gBase;
+   gPerm       = s->save_gPerm;
+
+   retVal = BZ_OK;
+
+   switch (s->state) {
+
+      GET_UCHAR(BZ_X_MAGIC_1, uc);
+      if (uc != BZ_HDR_B) RETURN(BZ_DATA_ERROR_MAGIC);
+
+      GET_UCHAR(BZ_X_MAGIC_2, uc);
+      if (uc != BZ_HDR_Z) RETURN(BZ_DATA_ERROR_MAGIC);
+
+      GET_UCHAR(BZ_X_MAGIC_3, uc)
+      if (uc != BZ_HDR_h) RETURN(BZ_DATA_ERROR_MAGIC);
+
+      GET_BITS(BZ_X_MAGIC_4, s->blockSize100k, 8)
+      if (s->blockSize100k < (BZ_HDR_0 + 1) || 
+          s->blockSize100k > (BZ_HDR_0 + 9)) RETURN(BZ_DATA_ERROR_MAGIC);
+      s->blockSize100k -= BZ_HDR_0;
+
+      if (s->smallDecompress) {
+         s->ll16 = BZALLOC( s->blockSize100k * 100000 * sizeof(UInt16) );
+         s->ll4  = BZALLOC( 
+                      ((1 + s->blockSize100k * 100000) >> 1) * sizeof(UChar) 
+                   );
+         if (s->ll16 == NULL || s->ll4 == NULL) RETURN(BZ_MEM_ERROR);
+      } else {
+         s->tt  = BZALLOC( s->blockSize100k * 100000 * sizeof(Int32) );
+         if (s->tt == NULL) RETURN(BZ_MEM_ERROR);
+      }
+
+      GET_UCHAR(BZ_X_BLKHDR_1, uc);
+
+      if (uc == 0x17) goto endhdr_2;
+      if (uc != 0x31) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_BLKHDR_2, uc);
+      if (uc != 0x41) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_BLKHDR_3, uc);
+      if (uc != 0x59) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_BLKHDR_4, uc);
+      if (uc != 0x26) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_BLKHDR_5, uc);
+      if (uc != 0x53) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_BLKHDR_6, uc);
+      if (uc != 0x59) RETURN(BZ_DATA_ERROR);
+
+      s->currBlockNo++;
+      if (s->verbosity >= 2)
+         VPrintf1 ( "\n    [%d: huff+mtf ", s->currBlockNo );
+ 
+      s->storedBlockCRC = 0;
+      GET_UCHAR(BZ_X_BCRC_1, uc);
+      s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
+      GET_UCHAR(BZ_X_BCRC_2, uc);
+      s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
+      GET_UCHAR(BZ_X_BCRC_3, uc);
+      s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
+      GET_UCHAR(BZ_X_BCRC_4, uc);
+      s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
+
+      GET_BITS(BZ_X_RANDBIT, s->blockRandomised, 1);
+
+      s->origPtr = 0;
+      GET_UCHAR(BZ_X_ORIGPTR_1, uc);
+      s->origPtr = (s->origPtr << 8) | ((Int32)uc);
+      GET_UCHAR(BZ_X_ORIGPTR_2, uc);
+      s->origPtr = (s->origPtr << 8) | ((Int32)uc);
+      GET_UCHAR(BZ_X_ORIGPTR_3, uc);
+      s->origPtr = (s->origPtr << 8) | ((Int32)uc);
+
+      if (s->origPtr < 0)
+         RETURN(BZ_DATA_ERROR);
+      if (s->origPtr > 10 + 100000*s->blockSize100k) 
+         RETURN(BZ_DATA_ERROR);
+
+      /*--- Receive the mapping table ---*/
+      for (i = 0; i < 16; i++) {
+         GET_BIT(BZ_X_MAPPING_1, uc);
+         if (uc == 1) 
+            s->inUse16[i] = True; else 
+            s->inUse16[i] = False;
+      }
+
+      for (i = 0; i < 256; i++) s->inUse[i] = False;
+
+      for (i = 0; i < 16; i++)
+         if (s->inUse16[i])
+            for (j = 0; j < 16; j++) {
+               GET_BIT(BZ_X_MAPPING_2, uc);
+               if (uc == 1) s->inUse[i * 16 + j] = True;
+            }
+      makeMaps_d ( s );
+      if (s->nInUse == 0) RETURN(BZ_DATA_ERROR);
+      alphaSize = s->nInUse+2;
+
+      /*--- Now the selectors ---*/
+      GET_BITS(BZ_X_SELECTOR_1, nGroups, 3);
+      if (nGroups < 2 || nGroups > 6) RETURN(BZ_DATA_ERROR);
+      GET_BITS(BZ_X_SELECTOR_2, nSelectors, 15);
+      if (nSelectors < 1) RETURN(BZ_DATA_ERROR);
+      for (i = 0; i < nSelectors; i++) {
+         j = 0;
+         while (True) {
+            GET_BIT(BZ_X_SELECTOR_3, uc);
+            if (uc == 0) break;
+            j++;
+            if (j >= nGroups) RETURN(BZ_DATA_ERROR);
+         }
+         s->selectorMtf[i] = j;
+      }
+
+      /*--- Undo the MTF values for the selectors. ---*/
+      {
+         UChar pos[BZ_N_GROUPS], tmp, v;
+         for (v = 0; v < nGroups; v++) pos[v] = v;
+   
+         for (i = 0; i < nSelectors; i++) {
+            v = s->selectorMtf[i];
+            tmp = pos[v];
+            while (v > 0) { pos[v] = pos[v-1]; v--; }
+            pos[0] = tmp;
+            s->selector[i] = tmp;
+         }
+      }
+
+      /*--- Now the coding tables ---*/
+      for (t = 0; t < nGroups; t++) {
+         GET_BITS(BZ_X_CODING_1, curr, 5);
+         for (i = 0; i < alphaSize; i++) {
+            while (True) {
+               if (curr < 1 || curr > 20) RETURN(BZ_DATA_ERROR);
+               GET_BIT(BZ_X_CODING_2, uc);
+               if (uc == 0) break;
+               GET_BIT(BZ_X_CODING_3, uc);
+               if (uc == 0) curr++; else curr--;
+            }
+            s->len[t][i] = curr;
+         }
+      }
+
+      /*--- Create the Huffman decoding tables ---*/
+      for (t = 0; t < nGroups; t++) {
+         minLen = 32;
+         maxLen = 0;
+         for (i = 0; i < alphaSize; i++) {
+            if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
+            if (s->len[t][i] < minLen) minLen = s->len[t][i];
+         }
+         BZ2_hbCreateDecodeTables ( 
+            &(s->limit[t][0]), 
+            &(s->base[t][0]), 
+            &(s->perm[t][0]), 
+            &(s->len[t][0]),
+            minLen, maxLen, alphaSize
+         );
+         s->minLens[t] = minLen;
+      }
+
+      /*--- Now the MTF values ---*/
+
+      EOB      = s->nInUse+1;
+      nblockMAX = 100000 * s->blockSize100k;
+      groupNo  = -1;
+      groupPos = 0;
+
+      for (i = 0; i <= 255; i++) s->unzftab[i] = 0;
+
+      /*-- MTF init --*/
+      {
+         Int32 ii, jj, kk;
+         kk = MTFA_SIZE-1;
+         for (ii = 256 / MTFL_SIZE - 1; ii >= 0; ii--) {
+            for (jj = MTFL_SIZE-1; jj >= 0; jj--) {
+               s->mtfa[kk] = (UChar)(ii * MTFL_SIZE + jj);
+               kk--;
+            }
+            s->mtfbase[ii] = kk + 1;
+         }
+      }
+      /*-- end MTF init --*/
+
+      nblock = 0;
+      GET_MTF_VAL(BZ_X_MTF_1, BZ_X_MTF_2, nextSym);
+
+      while (True) {
+
+         if (nextSym == EOB) break;
+
+         if (nextSym == BZ_RUNA || nextSym == BZ_RUNB) {
+
+            es = -1;
+            N = 1;
+            do {
+               if (nextSym == BZ_RUNA) es = es + (0+1) * N; else
+               if (nextSym == BZ_RUNB) es = es + (1+1) * N;
+               N = N * 2;
+               GET_MTF_VAL(BZ_X_MTF_3, BZ_X_MTF_4, nextSym);
+            }
+               while (nextSym == BZ_RUNA || nextSym == BZ_RUNB);
+
+            es++;
+            uc = s->seqToUnseq[ s->mtfa[s->mtfbase[0]] ];
+            s->unzftab[uc] += es;
+
+            if (s->smallDecompress)
+               while (es > 0) {
+                  if (nblock >= nblockMAX) RETURN(BZ_DATA_ERROR);
+                  s->ll16[nblock] = (UInt16)uc;
+                  nblock++;
+                  es--;
+               }
+            else
+               while (es > 0) {
+                  if (nblock >= nblockMAX) RETURN(BZ_DATA_ERROR);
+                  s->tt[nblock] = (UInt32)uc;
+                  nblock++;
+                  es--;
+               };
+
+            continue;
+
+         } else {
+
+            if (nblock >= nblockMAX) RETURN(BZ_DATA_ERROR);
+
+            /*-- uc = MTF ( nextSym-1 ) --*/
+            {
+               Int32 ii, jj, kk, pp, lno, off;
+               UInt32 nn;
+               nn = (UInt32)(nextSym - 1);
+
+               if (nn < MTFL_SIZE) {
+                  /* avoid general-case expense */
+                  pp = s->mtfbase[0];
+                  uc = s->mtfa[pp+nn];
+                  while (nn > 3) {
+                     Int32 z = pp+nn;
+                     s->mtfa[(z)  ] = s->mtfa[(z)-1];
+                     s->mtfa[(z)-1] = s->mtfa[(z)-2];
+                     s->mtfa[(z)-2] = s->mtfa[(z)-3];
+                     s->mtfa[(z)-3] = s->mtfa[(z)-4];
+                     nn -= 4;
+                  }
+                  while (nn > 0) { 
+                     s->mtfa[(pp+nn)] = s->mtfa[(pp+nn)-1]; nn--; 
+                  };
+                  s->mtfa[pp] = uc;
+               } else { 
+                  /* general case */
+                  lno = nn / MTFL_SIZE;
+                  off = nn % MTFL_SIZE;
+                  pp = s->mtfbase[lno] + off;
+                  uc = s->mtfa[pp];
+                  while (pp > s->mtfbase[lno]) { 
+                     s->mtfa[pp] = s->mtfa[pp-1]; pp--; 
+                  };
+                  s->mtfbase[lno]++;
+                  while (lno > 0) {
+                     s->mtfbase[lno]--;
+                     s->mtfa[s->mtfbase[lno]] 
+                        = s->mtfa[s->mtfbase[lno-1] + MTFL_SIZE - 1];
+                     lno--;
+                  }
+                  s->mtfbase[0]--;
+                  s->mtfa[s->mtfbase[0]] = uc;
+                  if (s->mtfbase[0] == 0) {
+                     kk = MTFA_SIZE-1;
+                     for (ii = 256 / MTFL_SIZE-1; ii >= 0; ii--) {
+                        for (jj = MTFL_SIZE-1; jj >= 0; jj--) {
+                           s->mtfa[kk] = s->mtfa[s->mtfbase[ii] + jj];
+                           kk--;
+                        }
+                        s->mtfbase[ii] = kk + 1;
+                     }
+                  }
+               }
+            }
+            /*-- end uc = MTF ( nextSym-1 ) --*/
+
+            s->unzftab[s->seqToUnseq[uc]]++;
+            if (s->smallDecompress)
+               s->ll16[nblock] = (UInt16)(s->seqToUnseq[uc]); else
+               s->tt[nblock]   = (UInt32)(s->seqToUnseq[uc]);
+            nblock++;
+
+            GET_MTF_VAL(BZ_X_MTF_5, BZ_X_MTF_6, nextSym);
+            continue;
+         }
+      }
+
+      /* Now we know what nblock is, we can do a better sanity
+         check on s->origPtr.
+      */
+      if (s->origPtr < 0 || s->origPtr >= nblock)
+         RETURN(BZ_DATA_ERROR);
+
+      /*-- Set up cftab to facilitate generation of T^(-1) --*/
+      s->cftab[0] = 0;
+      for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1];
+      for (i = 1; i <= 256; i++) s->cftab[i] += s->cftab[i-1];
+      for (i = 0; i <= 256; i++) {
+         if (s->cftab[i] < 0 || s->cftab[i] > nblock) {
+            /* s->cftab[i] can legitimately be == nblock */
+            RETURN(BZ_DATA_ERROR);
+         }
+      }
+
+      s->state_out_len = 0;
+      s->state_out_ch  = 0;
+      BZ_INITIALISE_CRC ( s->calculatedBlockCRC );
+      s->state = BZ_X_OUTPUT;
+      if (s->verbosity >= 2) VPrintf0 ( "rt+rld" );
+
+      if (s->smallDecompress) {
+
+         /*-- Make a copy of cftab, used in generation of T --*/
+         for (i = 0; i <= 256; i++) s->cftabCopy[i] = s->cftab[i];
+
+         /*-- compute the T vector --*/
+         for (i = 0; i < nblock; i++) {
+            uc = (UChar)(s->ll16[i]);
+            SET_LL(i, s->cftabCopy[uc]);
+            s->cftabCopy[uc]++;
+         }
+
+         /*-- Compute T^(-1) by pointer reversal on T --*/
+         i = s->origPtr;
+         j = GET_LL(i);
+         do {
+            Int32 tmp = GET_LL(j);
+            SET_LL(j, i);
+            i = j;
+            j = tmp;
+         }
+            while (i != s->origPtr);
+
+         s->tPos = s->origPtr;
+         s->nblock_used = 0;
+         if (s->blockRandomised) {
+            BZ_RAND_INIT_MASK;
+            BZ_GET_SMALL(s->k0); s->nblock_used++;
+            BZ_RAND_UPD_MASK; s->k0 ^= BZ_RAND_MASK; 
+         } else {
+            BZ_GET_SMALL(s->k0); s->nblock_used++;
+         }
+
+      } else {
+
+         /*-- compute the T^(-1) vector --*/
+         for (i = 0; i < nblock; i++) {
+            uc = (UChar)(s->tt[i] & 0xff);
+            s->tt[s->cftab[uc]] |= (i << 8);
+            s->cftab[uc]++;
+         }
+
+         s->tPos = s->tt[s->origPtr] >> 8;
+         s->nblock_used = 0;
+         if (s->blockRandomised) {
+            BZ_RAND_INIT_MASK;
+            BZ_GET_FAST(s->k0); s->nblock_used++;
+            BZ_RAND_UPD_MASK; s->k0 ^= BZ_RAND_MASK; 
+         } else {
+            BZ_GET_FAST(s->k0); s->nblock_used++;
+         }
+
+      }
+
+      RETURN(BZ_OK);
+
+
+
+    endhdr_2:
+
+      GET_UCHAR(BZ_X_ENDHDR_2, uc);
+      if (uc != 0x72) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_ENDHDR_3, uc);
+      if (uc != 0x45) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_ENDHDR_4, uc);
+      if (uc != 0x38) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_ENDHDR_5, uc);
+      if (uc != 0x50) RETURN(BZ_DATA_ERROR);
+      GET_UCHAR(BZ_X_ENDHDR_6, uc);
+      if (uc != 0x90) RETURN(BZ_DATA_ERROR);
+
+      s->storedCombinedCRC = 0;
+      GET_UCHAR(BZ_X_CCRC_1, uc);
+      s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc);
+      GET_UCHAR(BZ_X_CCRC_2, uc);
+      s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc);
+      GET_UCHAR(BZ_X_CCRC_3, uc);
+      s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc);
+      GET_UCHAR(BZ_X_CCRC_4, uc);
+      s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc);
+
+      s->state = BZ_X_IDLE;
+      RETURN(BZ_STREAM_END);
+
+      default: AssertH ( False, 4001 );
+   }
+
+   AssertH ( False, 4002 );
+
+   save_state_and_return:
+
+   s->save_i           = i;
+   s->save_j           = j;
+   s->save_t           = t;
+   s->save_alphaSize   = alphaSize;
+   s->save_nGroups     = nGroups;
+   s->save_nSelectors  = nSelectors;
+   s->save_EOB         = EOB;
+   s->save_groupNo     = groupNo;
+   s->save_groupPos    = groupPos;
+   s->save_nextSym     = nextSym;
+   s->save_nblockMAX   = nblockMAX;
+   s->save_nblock      = nblock;
+   s->save_es          = es;
+   s->save_N           = N;
+   s->save_curr        = curr;
+   s->save_zt          = zt;
+   s->save_zn          = zn;
+   s->save_zvec        = zvec;
+   s->save_zj          = zj;
+   s->save_gSel        = gSel;
+   s->save_gMinlen     = gMinlen;
+   s->save_gLimit      = gLimit;
+   s->save_gBase       = gBase;
+   s->save_gPerm       = gPerm;
+
+   return retVal;   
+}
+
+
+/*-------------------------------------------------------------*/
+/*--- end                                      decompress.c ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/dlltest.c b/commands/bzip2-1.0.3/dlltest.c
new file mode 100644
index 000000000..2d7dcca4c
--- /dev/null
+++ b/commands/bzip2-1.0.3/dlltest.c
@@ -0,0 +1,176 @@
+/*
+   minibz2
+      libbz2.dll test program.
+      by Yoshioka Tsuneo(QWF00133@nifty.ne.jp/tsuneo-y@is.aist-nara.ac.jp)
+      This file is Public Domain.
+      welcome any email to me.
+
+   usage: minibz2 [-d] [-{1,2,..9}] [[srcfilename] destfilename]
+*/
+
+#define BZ_IMPORT
+#include 
+#include 
+#include "bzlib.h"
+#ifdef _WIN32
+#include 
+#endif
+
+
+#ifdef _WIN32
+
+#define BZ2_LIBNAME "libbz2-1.0.2.DLL" 
+
+#include 
+static int BZ2DLLLoaded = 0;
+static HINSTANCE BZ2DLLhLib;
+int BZ2DLLLoadLibrary(void)
+{
+   HINSTANCE hLib;
+
+   if(BZ2DLLLoaded==1){return 0;}
+   hLib=LoadLibrary(BZ2_LIBNAME);
+   if(hLib == NULL){
+      fprintf(stderr,"Can't load %s\n",BZ2_LIBNAME);
+      return -1;
+   }
+   BZ2_bzlibVersion=GetProcAddress(hLib,"BZ2_bzlibVersion");
+   BZ2_bzopen=GetProcAddress(hLib,"BZ2_bzopen");
+   BZ2_bzdopen=GetProcAddress(hLib,"BZ2_bzdopen");
+   BZ2_bzread=GetProcAddress(hLib,"BZ2_bzread");
+   BZ2_bzwrite=GetProcAddress(hLib,"BZ2_bzwrite");
+   BZ2_bzflush=GetProcAddress(hLib,"BZ2_bzflush");
+   BZ2_bzclose=GetProcAddress(hLib,"BZ2_bzclose");
+   BZ2_bzerror=GetProcAddress(hLib,"BZ2_bzerror");
+
+   if (!BZ2_bzlibVersion || !BZ2_bzopen || !BZ2_bzdopen
+       || !BZ2_bzread || !BZ2_bzwrite || !BZ2_bzflush
+       || !BZ2_bzclose || !BZ2_bzerror) {
+      fprintf(stderr,"GetProcAddress failed.\n");
+      return -1;
+   }
+   BZ2DLLLoaded=1;
+   BZ2DLLhLib=hLib;
+   return 0;
+
+}
+int BZ2DLLFreeLibrary(void)
+{
+   if(BZ2DLLLoaded==0){return 0;}
+   FreeLibrary(BZ2DLLhLib);
+   BZ2DLLLoaded=0;
+}
+#endif /* WIN32 */
+
+void usage(void)
+{
+   puts("usage: minibz2 [-d] [-{1,2,..9}] [[srcfilename] destfilename]");
+}
+
+int main(int argc,char *argv[])
+{
+   int decompress = 0;
+   int level = 9;
+   char *fn_r = NULL;
+   char *fn_w = NULL;
+
+#ifdef _WIN32
+   if(BZ2DLLLoadLibrary()<0){
+      fprintf(stderr,"Loading of %s failed.  Giving up.\n", BZ2_LIBNAME);
+      exit(1);
+   }
+   printf("Loading of %s succeeded.  Library version is %s.\n",
+          BZ2_LIBNAME, BZ2_bzlibVersion() );
+#endif
+   while(++argv,--argc){
+      if(**argv =='-' || **argv=='/'){
+         char *p;
+
+         for(p=*argv+1;*p;p++){
+            if(*p=='d'){
+               decompress = 1;
+            }else if('1'<=*p && *p<='9'){
+               level = *p - '0';
+            }else{
+               usage();
+               exit(1);
+            }
+         }
+      }else{
+         break;
+      }
+   }
+   if(argc>=1){
+      fn_r = *argv;
+      argc--;argv++;
+   }else{
+      fn_r = NULL;
+   }
+   if(argc>=1){
+      fn_w = *argv;
+      argc--;argv++;
+   }else{
+      fn_w = NULL;
+   }
+   {
+      int len;
+      char buff[0x1000];
+      char mode[10];
+
+      if(decompress){
+         BZFILE *BZ2fp_r = NULL;
+         FILE *fp_w = NULL;
+
+         if(fn_w){
+            if((fp_w = fopen(fn_w,"wb"))==NULL){
+               printf("can't open [%s]\n",fn_w);
+               perror("reason:");
+               exit(1);
+            }
+         }else{
+            fp_w = stdout;
+         }
+         if((fn_r == NULL && (BZ2fp_r = BZ2_bzdopen(fileno(stdin),"rb"))==NULL)
+            || (fn_r != NULL && (BZ2fp_r = BZ2_bzopen(fn_r,"rb"))==NULL)){
+            printf("can't bz2openstream\n");
+            exit(1);
+         }
+         while((len=BZ2_bzread(BZ2fp_r,buff,0x1000))>0){
+            fwrite(buff,1,len,fp_w);
+         }
+         BZ2_bzclose(BZ2fp_r);
+         if(fp_w != stdout) fclose(fp_w);
+      }else{
+         BZFILE *BZ2fp_w = NULL;
+         FILE *fp_r = NULL;
+
+         if(fn_r){
+            if((fp_r = fopen(fn_r,"rb"))==NULL){
+               printf("can't open [%s]\n",fn_r);
+               perror("reason:");
+               exit(1);
+            }
+         }else{
+            fp_r = stdin;
+         }
+         mode[0]='w';
+         mode[1] = '0' + level;
+         mode[2] = '\0';
+
+         if((fn_w == NULL && (BZ2fp_w = BZ2_bzdopen(fileno(stdout),mode))==NULL)
+            || (fn_w !=NULL && (BZ2fp_w = BZ2_bzopen(fn_w,mode))==NULL)){
+            printf("can't bz2openstream\n");
+            exit(1);
+         }
+         while((len=fread(buff,1,0x1000,fp_r))>0){
+            BZ2_bzwrite(BZ2fp_w,buff,len);
+         }
+         BZ2_bzclose(BZ2fp_w);
+         if(fp_r!=stdin)fclose(fp_r);
+      }
+   }
+#ifdef _WIN32
+   BZ2DLLFreeLibrary();
+#endif
+   return 0;
+}
diff --git a/commands/bzip2-1.0.3/dlltest.dsp b/commands/bzip2-1.0.3/dlltest.dsp
new file mode 100644
index 000000000..4b1615edc
--- /dev/null
+++ b/commands/bzip2-1.0.3/dlltest.dsp
@@ -0,0 +1,93 @@
+# Microsoft Developer Studio Project File - Name="dlltest" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 5.00
+# ** •ÒW‚µ‚È‚¢‚Å‚­‚¾‚³‚¢ **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=dlltest - Win32 Debug
+!MESSAGE ‚±‚ê‚Í—LŒø‚ÈÒ²¸Ì§²Ù‚Å‚Í‚ ‚è‚Ü‚¹‚ñB ‚±‚ÌÌßÛ¼Þª¸Ä‚ðËÞÙÄނ·‚邽‚ß‚É‚Í NMAKE ‚ðŽg—p‚µ‚Ä‚­‚¾‚³‚¢B
+!MESSAGE [Ò²¸Ì§²Ù‚Ì´¸½Îß°Ä] ºÏÝÄނðŽg—p‚µ‚ÄŽÀs‚µ‚Ä‚­‚¾‚³‚¢
+!MESSAGE 
+!MESSAGE NMAKE /f "dlltest.mak".
+!MESSAGE 
+!MESSAGE NMAKE ‚ÌŽÀsŽž‚ɍ\¬‚ðŽw’è‚Å‚«‚Ü‚·
+!MESSAGE ºÏÝÄÞ ×²Ýã‚Åϸۂ̐ݒè‚ð’è‹`‚µ‚Ü‚·B—á:
+!MESSAGE 
+!MESSAGE NMAKE /f "dlltest.mak" CFG="dlltest - Win32 Debug"
+!MESSAGE 
+!MESSAGE ‘I‘ð‰Â”\‚ÈËÞÙÄÞ Ó°ÄÞ:
+!MESSAGE 
+!MESSAGE "dlltest - Win32 Release" ("Win32 (x86) Console Application" —p)
+!MESSAGE "dlltest - Win32 Debug" ("Win32 (x86) Console Application" —p)
+!MESSAGE 
+
+# Begin Project
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF  "$(CFG)" == "dlltest - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD BASE RSC /l 0x411 /d "NDEBUG"
+# ADD RSC /l 0x411 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"minibz2.exe"
+
+!ELSEIF  "$(CFG)" == "dlltest - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "dlltest_"
+# PROP BASE Intermediate_Dir "dlltest_"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "dlltest_"
+# PROP Intermediate_Dir "dlltest_"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD BASE RSC /l 0x411 /d "_DEBUG"
+# ADD RSC /l 0x411 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /out:"minibz2.exe" /pdbtype:sept
+
+!ENDIF 
+
+# Begin Target
+
+# Name "dlltest - Win32 Release"
+# Name "dlltest - Win32 Debug"
+# Begin Source File
+
+SOURCE=.\bzlib.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\dlltest.c
+# End Source File
+# End Target
+# End Project
diff --git a/commands/bzip2-1.0.3/entities.xml b/commands/bzip2-1.0.3/entities.xml
new file mode 100644
index 000000000..6d0975fdb
--- /dev/null
+++ b/commands/bzip2-1.0.3/entities.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/commands/bzip2-1.0.3/format.pl b/commands/bzip2-1.0.3/format.pl
new file mode 100755
index 000000000..8ab47acd3
--- /dev/null
+++ b/commands/bzip2-1.0.3/format.pl
@@ -0,0 +1,53 @@
+#!/usr/bin/perl -w
+use strict;
+
+# get command line values:
+if ( $#ARGV !=1 ) {
+    die "Usage:  $0 xml_infile xml_outfile\n";
+}
+
+my $infile = shift;
+# check infile exists
+die "Can't find file \"$infile\""
+  unless -f $infile;
+# check we can read infile
+if (! -r $infile) {
+    die "Can't read input $infile\n";
+}
+# check we can open infile
+open( INFILE,"<$infile" ) or 
+    die "Can't input $infile $!";
+
+#my $outfile = 'fmt-manual.xml';
+my $outfile = shift;
+#print "Infile: $infile, Outfile: $outfile\n";
+# check we can write to outfile
+open( OUTFILE,">$outfile" ) or 
+    die "Can't output $outfile $! for writing";
+
+my ($prev, $curr, $str);
+$prev = ''; $curr = '';
+while (  ) {
+
+		print OUTFILE $prev;
+    $prev = $curr;
+    $curr = $_;
+    $str = '';
+
+    if ( $prev =~ /$|$/ ) {
+        chomp $prev;
+        $curr = join( '', $prev, "|<\/screen>/ ) {
+        chomp $prev;
+        $curr = join( '', $prev, "]]>", $curr );
+				$prev = '';
+        next;
+    }
+}
+print OUTFILE $curr;
+close INFILE;
+close OUTFILE;
+exit;
diff --git a/commands/bzip2-1.0.3/huffman.c b/commands/bzip2-1.0.3/huffman.c
new file mode 100644
index 000000000..5bf190be9
--- /dev/null
+++ b/commands/bzip2-1.0.3/huffman.c
@@ -0,0 +1,245 @@
+
+/*-------------------------------------------------------------*/
+/*--- Huffman coding low-level stuff                        ---*/
+/*---                                             huffman.c ---*/
+/*-------------------------------------------------------------*/
+
+/*--
+  This file is a part of bzip2 and/or libbzip2, a program and
+  library for lossless, block-sorting data compression.
+
+  Copyright (C) 1996-2005 Julian R Seward.  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+
+  2. 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.
+
+  3. Altered source versions must be plainly marked as such, and must
+     not be misrepresented as being the original software.
+
+  4. The name of the author may not be used to endorse or promote 
+     products derived from this software without specific prior written 
+     permission.
+
+  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+  Julian Seward, Cambridge, UK.
+  jseward@bzip.org
+  bzip2/libbzip2 version 1.0 of 21 March 2000
+
+  This program is based on (at least) the work of:
+     Mike Burrows
+     David Wheeler
+     Peter Fenwick
+     Alistair Moffat
+     Radford Neal
+     Ian H. Witten
+     Robert Sedgewick
+     Jon L. Bentley
+
+  For more information on these sources, see the manual.
+--*/
+
+
+#include "bzlib_private.h"
+
+/*---------------------------------------------------*/
+#define WEIGHTOF(zz0)  ((zz0) & 0xffffff00)
+#define DEPTHOF(zz1)   ((zz1) & 0x000000ff)
+#define MYMAX(zz2,zz3) ((zz2) > (zz3) ? (zz2) : (zz3))
+
+#define ADDWEIGHTS(zw1,zw2)                           \
+   (WEIGHTOF(zw1)+WEIGHTOF(zw2)) |                    \
+   (1 + MYMAX(DEPTHOF(zw1),DEPTHOF(zw2)))
+
+#define UPHEAP(z)                                     \
+{                                                     \
+   Int32 zz, tmp;                                     \
+   zz = z; tmp = heap[zz];                            \
+   while (weight[tmp] < weight[heap[zz >> 1]]) {      \
+      heap[zz] = heap[zz >> 1];                       \
+      zz >>= 1;                                       \
+   }                                                  \
+   heap[zz] = tmp;                                    \
+}
+
+#define DOWNHEAP(z)                                   \
+{                                                     \
+   Int32 zz, yy, tmp;                                 \
+   zz = z; tmp = heap[zz];                            \
+   while (True) {                                     \
+      yy = zz << 1;                                   \
+      if (yy > nHeap) break;                          \
+      if (yy < nHeap &&                               \
+          weight[heap[yy+1]] < weight[heap[yy]])      \
+         yy++;                                        \
+      if (weight[tmp] < weight[heap[yy]]) break;      \
+      heap[zz] = heap[yy];                            \
+      zz = yy;                                        \
+   }                                                  \
+   heap[zz] = tmp;                                    \
+}
+
+
+/*---------------------------------------------------*/
+void BZ2_hbMakeCodeLengths ( UChar *len, 
+                             Int32 *freq,
+                             Int32 alphaSize,
+                             Int32 maxLen )
+{
+   /*--
+      Nodes and heap entries run from 1.  Entry 0
+      for both the heap and nodes is a sentinel.
+   --*/
+   Int32 nNodes, nHeap, n1, n2, i, j, k;
+   Bool  tooLong;
+
+   Int32 heap   [ BZ_MAX_ALPHA_SIZE + 2 ];
+   Int32 weight [ BZ_MAX_ALPHA_SIZE * 2 ];
+   Int32 parent [ BZ_MAX_ALPHA_SIZE * 2 ]; 
+
+   for (i = 0; i < alphaSize; i++)
+      weight[i+1] = (freq[i] == 0 ? 1 : freq[i]) << 8;
+
+   while (True) {
+
+      nNodes = alphaSize;
+      nHeap = 0;
+
+      heap[0] = 0;
+      weight[0] = 0;
+      parent[0] = -2;
+
+      for (i = 1; i <= alphaSize; i++) {
+         parent[i] = -1;
+         nHeap++;
+         heap[nHeap] = i;
+         UPHEAP(nHeap);
+      }
+
+      AssertH( nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001 );
+   
+      while (nHeap > 1) {
+         n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1);
+         n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1);
+         nNodes++;
+         parent[n1] = parent[n2] = nNodes;
+         weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2]);
+         parent[nNodes] = -1;
+         nHeap++;
+         heap[nHeap] = nNodes;
+         UPHEAP(nHeap);
+      }
+
+      AssertH( nNodes < (BZ_MAX_ALPHA_SIZE * 2), 2002 );
+
+      tooLong = False;
+      for (i = 1; i <= alphaSize; i++) {
+         j = 0;
+         k = i;
+         while (parent[k] >= 0) { k = parent[k]; j++; }
+         len[i-1] = j;
+         if (j > maxLen) tooLong = True;
+      }
+      
+      if (! tooLong) break;
+
+      /* 17 Oct 04: keep-going condition for the following loop used
+         to be 'i < alphaSize', which missed the last element,
+         theoretically leading to the possibility of the compressor
+         looping.  However, this count-scaling step is only needed if
+         one of the generated Huffman code words is longer than
+         maxLen, which up to and including version 1.0.2 was 20 bits,
+         which is extremely unlikely.  In version 1.0.3 maxLen was
+         changed to 17 bits, which has minimal effect on compression
+         ratio, but does mean this scaling step is used from time to
+         time, enough to verify that it works.
+
+         This means that bzip2-1.0.3 and later will only produce
+         Huffman codes with a maximum length of 17 bits.  However, in
+         order to preserve backwards compatibility with bitstreams
+         produced by versions pre-1.0.3, the decompressor must still
+         handle lengths of up to 20. */
+
+      for (i = 1; i <= alphaSize; i++) {
+         j = weight[i] >> 8;
+         j = 1 + (j / 2);
+         weight[i] = j << 8;
+      }
+   }
+}
+
+
+/*---------------------------------------------------*/
+void BZ2_hbAssignCodes ( Int32 *code,
+                         UChar *length,
+                         Int32 minLen,
+                         Int32 maxLen,
+                         Int32 alphaSize )
+{
+   Int32 n, vec, i;
+
+   vec = 0;
+   for (n = minLen; n <= maxLen; n++) {
+      for (i = 0; i < alphaSize; i++)
+         if (length[i] == n) { code[i] = vec; vec++; };
+      vec <<= 1;
+   }
+}
+
+
+/*---------------------------------------------------*/
+void BZ2_hbCreateDecodeTables ( Int32 *limit,
+                                Int32 *base,
+                                Int32 *perm,
+                                UChar *length,
+                                Int32 minLen,
+                                Int32 maxLen,
+                                Int32 alphaSize )
+{
+   Int32 pp, i, j, vec;
+
+   pp = 0;
+   for (i = minLen; i <= maxLen; i++)
+      for (j = 0; j < alphaSize; j++)
+         if (length[j] == i) { perm[pp] = j; pp++; };
+
+   for (i = 0; i < BZ_MAX_CODE_LEN; i++) base[i] = 0;
+   for (i = 0; i < alphaSize; i++) base[length[i]+1]++;
+
+   for (i = 1; i < BZ_MAX_CODE_LEN; i++) base[i] += base[i-1];
+
+   for (i = 0; i < BZ_MAX_CODE_LEN; i++) limit[i] = 0;
+   vec = 0;
+
+   for (i = minLen; i <= maxLen; i++) {
+      vec += (base[i+1] - base[i]);
+      limit[i] = vec-1;
+      vec <<= 1;
+   }
+   for (i = minLen + 1; i <= maxLen; i++)
+      base[i] = ((limit[i-1] + 1) << 1) - base[i];
+}
+
+
+/*-------------------------------------------------------------*/
+/*--- end                                         huffman.c ---*/
+/*-------------------------------------------------------------*/
diff --git a/commands/bzip2-1.0.3/libbz2.def b/commands/bzip2-1.0.3/libbz2.def
new file mode 100644
index 000000000..2dc0dd891
--- /dev/null
+++ b/commands/bzip2-1.0.3/libbz2.def
@@ -0,0 +1,27 @@
+LIBRARY			LIBBZ2
+DESCRIPTION		"libbzip2: library for data compression"
+EXPORTS
+	BZ2_bzCompressInit
+	BZ2_bzCompress
+	BZ2_bzCompressEnd
+	BZ2_bzDecompressInit
+	BZ2_bzDecompress
+	BZ2_bzDecompressEnd
+	BZ2_bzReadOpen
+	BZ2_bzReadClose
+	BZ2_bzReadGetUnused
+	BZ2_bzRead
+	BZ2_bzWriteOpen
+	BZ2_bzWrite
+	BZ2_bzWriteClose
+	BZ2_bzWriteClose64
+	BZ2_bzBuffToBuffCompress
+	BZ2_bzBuffToBuffDecompress
+	BZ2_bzlibVersion
+	BZ2_bzopen
+	BZ2_bzdopen
+	BZ2_bzread
+	BZ2_bzwrite
+	BZ2_bzflush
+	BZ2_bzclose
+	BZ2_bzerror
diff --git a/commands/bzip2-1.0.3/libbz2.dsp b/commands/bzip2-1.0.3/libbz2.dsp
new file mode 100644
index 000000000..a21a20f75
--- /dev/null
+++ b/commands/bzip2-1.0.3/libbz2.dsp
@@ -0,0 +1,130 @@
+# Microsoft Developer Studio Project File - Name="libbz2" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 5.00
+# ** •ÒW‚µ‚È‚¢‚Å‚­‚¾‚³‚¢ **
+
+# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
+
+CFG=libbz2 - Win32 Debug
+!MESSAGE ‚±‚ê‚Í—LŒø‚ÈÒ²¸Ì§²Ù‚Å‚Í‚ ‚è‚Ü‚¹‚ñB ‚±‚ÌÌßÛ¼Þª¸Ä‚ðËÞÙÄނ·‚邽‚ß‚É‚Í NMAKE ‚ðŽg—p‚µ‚Ä‚­‚¾‚³‚¢B
+!MESSAGE [Ò²¸Ì§²Ù‚Ì´¸½Îß°Ä] ºÏÝÄނðŽg—p‚µ‚ÄŽÀs‚µ‚Ä‚­‚¾‚³‚¢
+!MESSAGE 
+!MESSAGE NMAKE /f "libbz2.mak".
+!MESSAGE 
+!MESSAGE NMAKE ‚ÌŽÀsŽž‚ɍ\¬‚ðŽw’è‚Å‚«‚Ü‚·
+!MESSAGE ºÏÝÄÞ ×²Ýã‚Åϸۂ̐ݒè‚ð’è‹`‚µ‚Ü‚·B—á:
+!MESSAGE 
+!MESSAGE NMAKE /f "libbz2.mak" CFG="libbz2 - Win32 Debug"
+!MESSAGE 
+!MESSAGE ‘I‘ð‰Â”\‚ÈËÞÙÄÞ Ó°ÄÞ:
+!MESSAGE 
+!MESSAGE "libbz2 - Win32 Release" ("Win32 (x86) Dynamic-Link Library" —p)
+!MESSAGE "libbz2 - Win32 Debug" ("Win32 (x86) Dynamic-Link Library" —p)
+!MESSAGE 
+
+# Begin Project
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+MTL=midl.exe
+RSC=rc.exe
+
+!IF  "$(CFG)" == "libbz2 - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
+# ADD BASE RSC /l 0x411 /d "NDEBUG"
+# ADD RSC /l 0x411 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 /out:"libbz2.dll"
+
+!ELSEIF  "$(CFG)" == "libbz2 - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
+# ADD BASE RSC /l 0x411 /d "_DEBUG"
+# ADD RSC /l 0x411 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"libbz2.dll" /pdbtype:sept
+
+!ENDIF 
+
+# Begin Target
+
+# Name "libbz2 - Win32 Release"
+# Name "libbz2 - Win32 Debug"
+# Begin Source File
+
+SOURCE=.\blocksort.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\bzlib.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\bzlib.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\bzlib_private.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\compress.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\crctable.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\decompress.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\huffman.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\libbz2.def
+# End Source File
+# Begin Source File
+
+SOURCE=.\randtable.c
+# End Source File
+# End Target
+# End Project
diff --git a/commands/bzip2-1.0.3/makefile.msc b/commands/bzip2-1.0.3/makefile.msc
new file mode 100644
index 000000000..799a18a5f
--- /dev/null
+++ b/commands/bzip2-1.0.3/makefile.msc
@@ -0,0 +1,63 @@
+# Makefile for Microsoft Visual C++ 6.0
+# usage: nmake -f makefile.msc
+# K.M. Syring (syring@gsf.de)
+# Fixed up by JRS for bzip2-0.9.5d release.
+
+CC=cl
+CFLAGS= -DWIN32 -MD -Ox -D_FILE_OFFSET_BITS=64 -nologo
+
+OBJS= blocksort.obj  \
+      huffman.obj    \
+      crctable.obj   \
+      randtable.obj  \
+      compress.obj   \
+      decompress.obj \
+      bzlib.obj
+
+all: lib bzip2 test
+
+bzip2: lib
+	$(CC) $(CFLAGS) -o bzip2 bzip2.c libbz2.lib setargv.obj
+	$(CC) $(CFLAGS) -o bzip2recover bzip2recover.c
+
+lib: $(OBJS)
+	lib /out:libbz2.lib $(OBJS)
+
+test: bzip2
+	type words1
+	.\\bzip2 -1  < sample1.ref > sample1.rb2
+	.\\bzip2 -2  < sample2.ref > sample2.rb2
+	.\\bzip2 -3  < sample3.ref > sample3.rb2
+	.\\bzip2 -d  < sample1.bz2 > sample1.tst
+	.\\bzip2 -d  < sample2.bz2 > sample2.tst
+	.\\bzip2 -ds < sample3.bz2 > sample3.tst
+	@echo All six of the fc's should find no differences.
+	@echo If fc finds an error on sample3.bz2, this could be
+	@echo because WinZip's 'TAR file smart CR/LF conversion'
+	@echo is too clever for its own good.  Disable this option.
+	@echo The correct size for sample3.ref is 120,244.  If it
+	@echo is 150,251, WinZip has messed it up.
+	fc sample1.bz2 sample1.rb2 
+	fc sample2.bz2 sample2.rb2
+	fc sample3.bz2 sample3.rb2
+	fc sample1.tst sample1.ref
+	fc sample2.tst sample2.ref
+	fc sample3.tst sample3.ref
+
+
+
+clean: 
+	del *.obj
+	del libbz2.lib 
+	del bzip2.exe
+	del bzip2recover.exe
+	del sample1.rb2 
+	del sample2.rb2 
+	del sample3.rb2
+	del sample1.tst 
+	del sample2.tst
+	del sample3.tst
+
+.c.obj: 
+	$(CC) $(CFLAGS) -c $*.c -o $*.obj
+
diff --git a/commands/bzip2-1.0.3/manual.html b/commands/bzip2-1.0.3/manual.html
new file mode 100644
index 000000000..b28cc79a8
--- /dev/null
+++ b/commands/bzip2-1.0.3/manual.html
@@ -0,0 +1,2687 @@
+
+
+
+bzip2 and libbzip2, version 1.0.3
+
+
+
+
+
+
+

+bzip2 and libbzip2, version 1.0.3

+

A program and library for data compression

+
+

+Julian Seward +

+
http://www.bzip.org
+
+

Version 1.0.3 of 15 February 2005

+
+
+

This program, bzip2, the + associated library libbzip2, and + all documentation, are copyright © 1996-2005 Julian Seward. + All rights reserved.

+

Redistribution and use in source and binary forms, with + or without modification, are permitted provided that the + following conditions are met:

+
    +
  • Redistributions of source code must retain the + above copyright notice, this list of conditions and the + following disclaimer.

  • +
  • 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.

  • +
  • Altered source versions must be plainly marked + as such, and must not be misrepresented as being the original + software.

  • +
  • The name of the author may not be used to + endorse or promote products derived from this software without + specific prior written permission.

  • +
+

THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE.

+

PATENTS: To the best of my knowledge, + bzip2 and + libbzip2 do not use any patented + algorithms. However, I do not have the resources to carry + out a patent search. Therefore I cannot give any guarantee of + the above statement. +

+
+
+
+
+
+ +
+
+

+1. Introduction

+
+
+

bzip2 compresses files +using the Burrows-Wheeler block-sorting text compression +algorithm, and Huffman coding. Compression is generally +considerably better than that achieved by more conventional +LZ77/LZ78-based compressors, and approaches the performance of +the PPM family of statistical compressors.

+

bzip2 is built on top of +libbzip2, a flexible library for +handling compressed data in the +bzip2 format. This manual +describes both how to use the program and how to work with the +library interface. Most of the manual is devoted to this +library, not the program, which is good news if your interest is +only in the program.

+
    +
  • How to use bzip2 describes how to use + bzip2; this is the only part + you need to read if you just want to know how to operate the + program.

  • +
  • Programming with libbzip2 describes the + programming interfaces in detail, and

  • +
  • Miscellanea records some + miscellaneous notes which I thought ought to be recorded + somewhere.

  • +
+
+
+
+

+2. How to use bzip2

+
+
+ +

This chapter contains a copy of the +bzip2 man page, and nothing +else.

+
+
+

+2.1. NAME

+
+
+
    +
  • bzip2, + bunzip2 - a block-sorting file + compressor, v1.0.3

  • +
  • bzcat - + decompresses files to stdout

  • +
  • bzip2recover - + recovers data from damaged bzip2 files

  • +
+
+
+
+

+2.2. SYNOPSIS

+
+
+
    +
  • bzip2 [ + -cdfkqstvzVL123456789 ] [ filenames ... ]

  • +
  • bunzip2 [ + -fkvsVL ] [ filenames ... ]

  • +
  • bzcat [ -s ] [ + filenames ... ]

  • +
  • bzip2recover + filename

  • +
+
+
+
+

+2.3. DESCRIPTION

+
+
+

bzip2 compresses files +using the Burrows-Wheeler block sorting text compression +algorithm, and Huffman coding. Compression is generally +considerably better than that achieved by more conventional +LZ77/LZ78-based compressors, and approaches the performance of +the PPM family of statistical compressors.

+

The command-line options are deliberately very similar to +those of GNU gzip, but they are +not identical.

+

bzip2 expects a list of +file names to accompany the command-line flags. Each file is +replaced by a compressed version of itself, with the name +original_name.bz2. Each +compressed file has the same modification date, permissions, and, +when possible, ownership as the corresponding original, so that +these properties can be correctly restored at decompression time. +File name handling is naive in the sense that there is no +mechanism for preserving original file names, permissions, +ownerships or dates in filesystems which lack these concepts, or +have serious file name length restrictions, such as +MS-DOS.

+

bzip2 and +bunzip2 will by default not +overwrite existing files. If you want this to happen, specify +the -f flag.

+

If no file names are specified, +bzip2 compresses from standard +input to standard output. In this case, +bzip2 will decline to write +compressed output to a terminal, as this would be entirely +incomprehensible and therefore pointless.

+

bunzip2 (or +bzip2 -d) decompresses all +specified files. Files which were not created by +bzip2 will be detected and +ignored, and a warning issued. +bzip2 attempts to guess the +filename for the decompressed file from that of the compressed +file as follows:

+
    +
  • filename.bz2 + becomes + filename

  • +
  • filename.bz + becomes + filename

  • +
  • filename.tbz2 + becomes + filename.tar

  • +
  • filename.tbz + becomes + filename.tar

  • +
  • anyothername + becomes + anyothername.out

  • +
+

If the file does not end in one of the recognised endings, +.bz2, +.bz, +.tbz2 or +.tbz, +bzip2 complains that it cannot +guess the name of the original file, and uses the original name +with .out appended.

+

As with compression, supplying no filenames causes +decompression from standard input to standard output.

+

bunzip2 will correctly +decompress a file which is the concatenation of two or more +compressed files. The result is the concatenation of the +corresponding uncompressed files. Integrity testing +(-t) of concatenated compressed +files is also supported.

+

You can also compress or decompress files to the standard +output by giving the -c flag. +Multiple files may be compressed and decompressed like this. The +resulting outputs are fed sequentially to stdout. Compression of +multiple files in this manner generates a stream containing +multiple compressed file representations. Such a stream can be +decompressed correctly only by +bzip2 version 0.9.0 or later. +Earlier versions of bzip2 will +stop after decompressing the first file in the stream.

+

bzcat (or +bzip2 -dc) decompresses all +specified files to the standard output.

+

bzip2 will read arguments +from the environment variables +BZIP2 and +BZIP, in that order, and will +process them before any arguments read from the command line. +This gives a convenient way to supply default arguments.

+

Compression is always performed, even if the compressed +file is slightly larger than the original. Files of less than +about one hundred bytes tend to get larger, since the compression +mechanism has a constant overhead in the region of 50 bytes. +Random data (including the output of most file compressors) is +coded at about 8.05 bits per byte, giving an expansion of around +0.5%.

+

As a self-check for your protection, +bzip2 uses 32-bit CRCs to make +sure that the decompressed version of a file is identical to the +original. This guards against corruption of the compressed data, +and against undetected bugs in +bzip2 (hopefully very unlikely). +The chances of data corruption going undetected is microscopic, +about one chance in four billion for each file processed. Be +aware, though, that the check occurs upon decompression, so it +can only tell you that something is wrong. It can't help you +recover the original uncompressed data. You can use +bzip2recover to try to recover +data from damaged files.

+

Return values: 0 for a normal exit, 1 for environmental +problems (file not found, invalid flags, I/O errors, etc.), 2 +to indicate a corrupt compressed file, 3 for an internal +consistency error (eg, bug) which caused +bzip2 to panic.

+
+
+
+

+2.4. OPTIONS

+
+
+
+
-c --stdout
+

Compress or decompress to standard + output.

+
-d --decompress
+

Force decompression. + bzip2, + bunzip2 and + bzcat are really the same + program, and the decision about what actions to take is done on + the basis of which name is used. This flag overrides that + mechanism, and forces bzip2 to decompress.

+
-z --compress
+

The complement to + -d: forces compression, + regardless of the invokation name.

+
-t --test
+

Check integrity of the specified file(s), but + don't decompress them. This really performs a trial + decompression and throws away the result.

+
-f --force
+
+

Force overwrite of output files. Normally, + bzip2 will not overwrite + existing output files. Also forces + bzip2 to break hard links to + files, which it otherwise wouldn't do.

+

bzip2 normally declines + to decompress files which don't have the correct magic header + bytes. If forced (-f), + however, it will pass such files through unmodified. This is + how GNU gzip behaves.

+
+
-k --keep
+

Keep (don't delete) input files during + compression or decompression.

+
-s --small
+
+

Reduce memory usage, for compression, + decompression and testing. Files are decompressed and tested + using a modified algorithm which only requires 2.5 bytes per + block byte. This means any file can be decompressed in 2300k + of memory, albeit at about half the normal speed.

+

During compression, -s + selects a block size of 200k, which limits memory use to around + the same figure, at the expense of your compression ratio. In + short, if your machine is low on memory (8 megabytes or less), + use -s for everything. See + MEMORY MANAGEMENT below.

+
+
-q --quiet
+

Suppress non-essential warning messages. + Messages pertaining to I/O errors and other critical events + will not be suppressed.

+
-v --verbose
+

Verbose mode -- show the compression ratio for + each file processed. Further + -v's increase the verbosity + level, spewing out lots of information which is primarily of + interest for diagnostic purposes.

+
-L --license -V --version
+

Display the software version, license terms and + conditions.

+
-1 (or + --fast) to + -9 (or + -best)
+

Set the block size to 100 k, 200 k ... 900 k + when compressing. Has no effect when decompressing. See MEMORY MANAGEMENT below. The + --fast and + --best aliases are primarily + for GNU gzip compatibility. + In particular, --fast doesn't + make things significantly faster. And + --best merely selects the + default behaviour.

+
--
+

Treats all subsequent arguments as file names, + even if they start with a dash. This is so you can handle + files with names beginning with a dash, for example: + bzip2 -- + -myfilename.

+
+--repetitive-fast, --repetitive-best, +
+

These flags are redundant in versions 0.9.5 and + above. They provided some coarse control over the behaviour of + the sorting algorithm in earlier versions, which was sometimes + useful. 0.9.5 and above have an improved algorithm which + renders these flags irrelevant.

+
+
+
+
+

+2.5. MEMORY MANAGEMENT

+
+
+

bzip2 compresses large +files in blocks. The block size affects both the compression +ratio achieved, and the amount of memory needed for compression +and decompression. The flags -1 +through -9 specify the block +size to be 100,000 bytes through 900,000 bytes (the default) +respectively. At decompression time, the block size used for +compression is read from the header of the compressed file, and +bunzip2 then allocates itself +just enough memory to decompress the file. Since block sizes are +stored in compressed files, it follows that the flags +-1 to +-9 are irrelevant to and so +ignored during decompression.

+

Compression and decompression requirements, in bytes, can be +estimated as:

+
Compression:   400k + ( 8 x block size )
+
+Decompression: 100k + ( 4 x block size ), or
+               100k + ( 2.5 x block size )
+

Larger block sizes give rapidly diminishing marginal +returns. Most of the compression comes from the first two or +three hundred k of block size, a fact worth bearing in mind when +using bzip2 on small machines. +It is also important to appreciate that the decompression memory +requirement is set at compression time by the choice of block +size.

+

For files compressed with the default 900k block size, +bunzip2 will require about 3700 +kbytes to decompress. To support decompression of any file on a +4 megabyte machine, bunzip2 has +an option to decompress using approximately half this amount of +memory, about 2300 kbytes. Decompression speed is also halved, +so you should use this option only where necessary. The relevant +flag is -s.

+

In general, try and use the largest block size memory +constraints allow, since that maximises the compression achieved. +Compression and decompression speed are virtually unaffected by +block size.

+

Another significant point applies to files which fit in a +single block -- that means most files you'd encounter using a +large block size. The amount of real memory touched is +proportional to the size of the file, since the file is smaller +than a block. For example, compressing a file 20,000 bytes long +with the flag -9 will cause the +compressor to allocate around 7600k of memory, but only touch +400k + 20000 * 8 = 560 kbytes of it. Similarly, the decompressor +will allocate 3700k but only touch 100k + 20000 * 4 = 180 +kbytes.

+

Here is a table which summarises the maximum memory usage +for different block sizes. Also recorded is the total compressed +size for 14 files of the Calgary Text Compression Corpus +totalling 3,141,622 bytes. This column gives some feel for how +compression varies with block size. These figures tend to +understate the advantage of larger block sizes for larger files, +since the Corpus is dominated by smaller files.

+
        Compress   Decompress   Decompress   Corpus
+Flag     usage      usage       -s usage     Size
+
+ -1      1200k       500k         350k      914704
+ -2      2000k       900k         600k      877703
+ -3      2800k      1300k         850k      860338
+ -4      3600k      1700k        1100k      846899
+ -5      4400k      2100k        1350k      845160
+ -6      5200k      2500k        1600k      838626
+ -7      6100k      2900k        1850k      834096
+ -8      6800k      3300k        2100k      828642
+ -9      7600k      3700k        2350k      828642
+
+
+
+

+2.6. RECOVERING DATA FROM DAMAGED FILES

+
+
+

bzip2 compresses files in +blocks, usually 900kbytes long. Each block is handled +independently. If a media or transmission error causes a +multi-block .bz2 file to become +damaged, it may be possible to recover data from the undamaged +blocks in the file.

+

The compressed representation of each block is delimited by +a 48-bit pattern, which makes it possible to find the block +boundaries with reasonable certainty. Each block also carries +its own 32-bit CRC, so damaged blocks can be distinguished from +undamaged ones.

+

bzip2recover is a simple +program whose purpose is to search for blocks in +.bz2 files, and write each block +out into its own .bz2 file. You +can then use bzip2 -t to test +the integrity of the resulting files, and decompress those which +are undamaged.

+

bzip2recover takes a +single argument, the name of the damaged file, and writes a +number of files rec0001file.bz2, +rec0002file.bz2, etc, containing +the extracted blocks. The output filenames are designed so that +the use of wildcards in subsequent processing -- for example, +bzip2 -dc rec*file.bz2 > +recovered_data -- lists the files in the correct +order.

+

bzip2recover should be of +most use dealing with large .bz2 +files, as these will contain many blocks. It is clearly futile +to use it on damaged single-block files, since a damaged block +cannot be recovered. If you wish to minimise any potential data +loss through media or transmission errors, you might consider +compressing with a smaller block size.

+
+
+
+

+2.7. PERFORMANCE NOTES

+
+
+

The sorting phase of compression gathers together similar +strings in the file. Because of this, files containing very long +runs of repeated symbols, like "aabaabaabaab ..." (repeated +several hundred times) may compress more slowly than normal. +Versions 0.9.5 and above fare much better than previous versions +in this respect. The ratio between worst-case and average-case +compression time is in the region of 10:1. For previous +versions, this figure was more like 100:1. You can use the +-vvvv option to monitor progress +in great detail, if you want.

+

Decompression speed is unaffected by these +phenomena.

+

bzip2 usually allocates +several megabytes of memory to operate in, and then charges all +over it in a fairly random fashion. This means that performance, +both for compressing and decompressing, is largely determined by +the speed at which your machine can service cache misses. +Because of this, small changes to the code to reduce the miss +rate have been observed to give disproportionately large +performance improvements. I imagine +bzip2 will perform best on +machines with very large caches.

+
+
+
+

+2.8. CAVEATS

+
+
+

I/O error messages are not as helpful as they could be. +bzip2 tries hard to detect I/O +errors and exit cleanly, but the details of what the problem is +sometimes seem rather misleading.

+

This manual page pertains to version 1.0.3 of +bzip2. Compressed data created +by this version is entirely forwards and backwards compatible +with the previous public releases, versions 0.1pl2, 0.9.0 and +0.9.5, 1.0.0, 1.0.1 and 1.0.2, but with the following exception: 0.9.0 +and above can correctly decompress multiple concatenated +compressed files. 0.1pl2 cannot do this; it will stop after +decompressing just the first file in the stream.

+

bzip2recover versions +prior to 1.0.2 used 32-bit integers to represent bit positions in +compressed files, so it could not handle compressed files more +than 512 megabytes long. Versions 1.0.2 and above use 64-bit ints +on some platforms which support them (GNU supported targets, and +Windows). To establish whether or not +bzip2recover was built with such +a limitation, run it without arguments. In any event you can +build yourself an unlimited version if you can recompile it with +MaybeUInt64 set to be an +unsigned 64-bit integer.

+
+
+
+

+2.9. AUTHOR

+
+
+

Julian Seward, +jseward@bzip.org

+

The ideas embodied in +bzip2 are due to (at least) the +following people: Michael Burrows and David Wheeler (for the +block sorting transformation), David Wheeler (again, for the +Huffman coder), Peter Fenwick (for the structured coding model in +the original bzip, and many +refinements), and Alistair Moffat, Radford Neal and Ian Witten +(for the arithmetic coder in the original +bzip). I am much indebted for +their help, support and advice. See the manual in the source +distribution for pointers to sources of documentation. Christian +von Roques encouraged me to look for faster sorting algorithms, +so as to speed up compression. Bela Lubkin encouraged me to +improve the worst-case compression performance. +Donna Robinson XMLised the documentation. +Many people sent +patches, helped with portability problems, lent machines, gave +advice and were generally helpful.

+
+
+
+
+

+3.  +Programming with libbzip2 +

+
+
+ +

This chapter describes the programming interface to +libbzip2.

+

For general background information, particularly about +memory use and performance aspects, you'd be well advised to read +How to use bzip2 as well.

+
+
+

+3.1. Top-level structure

+
+
+

libbzip2 is a flexible +library for compressing and decompressing data in the +bzip2 data format. Although +packaged as a single entity, it helps to regard the library as +three separate parts: the low level interface, and the high level +interface, and some utility functions.

+

The structure of +libbzip2's interfaces is similar +to that of Jean-loup Gailly's and Mark Adler's excellent +zlib library.

+

All externally visible symbols have names beginning +BZ2_. This is new in version +1.0. The intention is to minimise pollution of the namespaces of +library clients.

+

To use any part of the library, you need to +#include <bzlib.h> +into your sources.

+
+
+

+3.1.1. Low-level summary

+
+
+

This interface provides services for compressing and +decompressing data in memory. There's no provision for dealing +with files, streams or any other I/O mechanisms, just straight +memory-to-memory work. In fact, this part of the library can be +compiled without inclusion of +stdio.h, which may be helpful +for embedded applications.

+

The low-level part of the library has no global variables +and is therefore thread-safe.

+

Six routines make up the low level interface: +BZ2_bzCompressInit, +BZ2_bzCompress, and +BZ2_bzCompressEnd for +compression, and a corresponding trio +BZ2_bzDecompressInit, +BZ2_bzDecompress and +BZ2_bzDecompressEnd for +decompression. The *Init +functions allocate memory for compression/decompression and do +other initialisations, whilst the +*End functions close down +operations and release memory.

+

The real work is done by +BZ2_bzCompress and +BZ2_bzDecompress. These +compress and decompress data from a user-supplied input buffer to +a user-supplied output buffer. These buffers can be any size; +arbitrary quantities of data are handled by making repeated calls +to these functions. This is a flexible mechanism allowing a +consumer-pull style of activity, or producer-push, or a mixture +of both.

+
+
+
+

+3.1.2. High-level summary

+
+
+

This interface provides some handy wrappers around the +low-level interface to facilitate reading and writing +bzip2 format files +(.bz2 files). The routines +provide hooks to facilitate reading files in which the +bzip2 data stream is embedded +within some larger-scale file structure, or where there are +multiple bzip2 data streams +concatenated end-to-end.

+

For reading files, +BZ2_bzReadOpen, +BZ2_bzRead, +BZ2_bzReadClose and +BZ2_bzReadGetUnused are +supplied. For writing files, +BZ2_bzWriteOpen, +BZ2_bzWrite and +BZ2_bzWriteFinish are +available.

+

As with the low-level library, no global variables are used +so the library is per se thread-safe. However, if I/O errors +occur whilst reading or writing the underlying compressed files, +you may have to consult errno to +determine the cause of the error. In that case, you'd need a C +library which correctly supports +errno in a multithreaded +environment.

+

To make the library a little simpler and more portable, +BZ2_bzReadOpen and +BZ2_bzWriteOpen require you to +pass them file handles (FILE*s) +which have previously been opened for reading or writing +respectively. That avoids portability problems associated with +file operations and file attributes, whilst not being much of an +imposition on the programmer.

+
+
+
+

+3.1.3. Utility functions summary

+
+
+

For very simple needs, +BZ2_bzBuffToBuffCompress and +BZ2_bzBuffToBuffDecompress are +provided. These compress data in memory from one buffer to +another buffer in a single function call. You should assess +whether these functions fulfill your memory-to-memory +compression/decompression requirements before investing effort in +understanding the more general but more complex low-level +interface.

+

Yoshioka Tsuneo +(QWF00133@niftyserve.or.jp / +tsuneo-y@is.aist-nara.ac.jp) has +contributed some functions to give better +zlib compatibility. These +functions are BZ2_bzopen, +BZ2_bzread, +BZ2_bzwrite, +BZ2_bzflush, +BZ2_bzclose, +BZ2_bzerror and +BZ2_bzlibVersion. You may find +these functions more convenient for simple file reading and +writing, than those in the high-level interface. These functions +are not (yet) officially part of the library, and are minimally +documented here. If they break, you get to keep all the pieces. +I hope to document them properly when time permits.

+

Yoshioka also contributed modifications to allow the +library to be built as a Windows DLL.

+
+
+
+
+

+3.2. Error handling

+
+
+

The library is designed to recover cleanly in all +situations, including the worst-case situation of decompressing +random data. I'm not 100% sure that it can always do this, so +you might want to add a signal handler to catch segmentation +violations during decompression if you are feeling especially +paranoid. I would be interested in hearing more about the +robustness of the library to corrupted compressed data.

+

Version 1.0.3 more robust in this respect than any +previous version. Investigations with Valgrind (a tool for detecting +problems with memory management) indicate +that, at least for the few files I tested, all single-bit errors +in the decompressed data are caught properly, with no +segmentation faults, no uses of uninitialised data, no out of +range reads or writes, and no infinite looping in the decompressor. +So it's certainly pretty robust, although +I wouldn't claim it to be totally bombproof.

+

The file bzlib.h contains +all definitions needed to use the library. In particular, you +should definitely not include +bzlib_private.h.

+

In bzlib.h, the various +return values are defined. The following list is not intended as +an exhaustive description of the circumstances in which a given +value may be returned -- those descriptions are given later. +Rather, it is intended to convey the rough meaning of each return +value. The first five actions are normal and not intended to +denote an error situation.

+
+
BZ_OK
+

The requested action was completed + successfully.

+
BZ_RUN_OK, BZ_FLUSH_OK, + BZ_FINISH_OK
+

In + BZ2_bzCompress, the requested + flush/finish/nothing-special action was completed + successfully.

+
BZ_STREAM_END
+

Compression of data was completed, or the + logical stream end was detected during + decompression.

+
+

The following return values indicate an error of some +kind.

+
+
BZ_CONFIG_ERROR
+

Indicates that the library has been improperly + compiled on your platform -- a major configuration error. + Specifically, it means that + sizeof(char), + sizeof(short) and + sizeof(int) are not 1, 2 and + 4 respectively, as they should be. Note that the library + should still work properly on 64-bit platforms which follow + the LP64 programming model -- that is, where + sizeof(long) and + sizeof(void*) are 8. Under + LP64, sizeof(int) is still 4, + so libbzip2, which doesn't + use the long type, is + OK.

+
BZ_SEQUENCE_ERROR
+

When using the library, it is important to call + the functions in the correct sequence and with data structures + (buffers etc) in the correct states. + libbzip2 checks as much as it + can to ensure this is happening, and returns + BZ_SEQUENCE_ERROR if not. + Code which complies precisely with the function semantics, as + detailed below, should never receive this value; such an event + denotes buggy code which you should + investigate.

+
BZ_PARAM_ERROR
+

Returned when a parameter to a function call is + out of range or otherwise manifestly incorrect. As with + BZ_SEQUENCE_ERROR, this + denotes a bug in the client code. The distinction between + BZ_PARAM_ERROR and + BZ_SEQUENCE_ERROR is a bit + hazy, but still worth making.

+
BZ_MEM_ERROR
+

Returned when a request to allocate memory + failed. Note that the quantity of memory needed to decompress + a stream cannot be determined until the stream's header has + been read. So + BZ2_bzDecompress and + BZ2_bzRead may return + BZ_MEM_ERROR even though some + of the compressed data has been read. The same is not true + for compression; once + BZ2_bzCompressInit or + BZ2_bzWriteOpen have + successfully completed, + BZ_MEM_ERROR cannot + occur.

+
BZ_DATA_ERROR
+

Returned when a data integrity error is + detected during decompression. Most importantly, this means + when stored and computed CRCs for the data do not match. This + value is also returned upon detection of any other anomaly in + the compressed data.

+
BZ_DATA_ERROR_MAGIC
+

As a special case of + BZ_DATA_ERROR, it is + sometimes useful to know when the compressed stream does not + start with the correct magic bytes ('B' 'Z' + 'h').

+
BZ_IO_ERROR
+

Returned by + BZ2_bzRead and + BZ2_bzWrite when there is an + error reading or writing in the compressed file, and by + BZ2_bzReadOpen and + BZ2_bzWriteOpen for attempts + to use a file for which the error indicator (viz, + ferror(f)) is set. On + receipt of BZ_IO_ERROR, the + caller should consult errno + and/or perror to acquire + operating-system specific information about the + problem.

+
BZ_UNEXPECTED_EOF
+

Returned by + BZ2_bzRead when the + compressed file finishes before the logical end of stream is + detected.

+
BZ_OUTBUFF_FULL
+

Returned by + BZ2_bzBuffToBuffCompress and + BZ2_bzBuffToBuffDecompress to + indicate that the output data will not fit into the output + buffer provided.

+
+
+
+
+

+3.3. Low-level interface

+
+
+
+
+

+3.3.1. BZ2_bzCompressInit

+
+
+
typedef struct {
+  char *next_in;
+  unsigned int avail_in;
+  unsigned int total_in_lo32;
+  unsigned int total_in_hi32;
+
+  char *next_out;
+  unsigned int avail_out;
+  unsigned int total_out_lo32;
+  unsigned int total_out_hi32;
+
+  void *state;
+
+  void *(*bzalloc)(void *,int,int);
+  void (*bzfree)(void *,void *);
+  void *opaque;
+} bz_stream;
+
+int BZ2_bzCompressInit ( bz_stream *strm, 
+                         int blockSize100k, 
+                         int verbosity,
+                         int workFactor );
+

Prepares for compression. The +bz_stream structure holds all +data pertaining to the compression activity. A +bz_stream structure should be +allocated and initialised prior to the call. The fields of +bz_stream comprise the entirety +of the user-visible data. state +is a pointer to the private data structures required for +compression.

+

Custom memory allocators are supported, via fields +bzalloc, +bzfree, and +opaque. The value +opaque is passed to as the first +argument to all calls to bzalloc +and bzfree, but is otherwise +ignored by the library. The call bzalloc ( +opaque, n, m ) is expected to return a pointer +p to n * +m bytes of memory, and bzfree ( +opaque, p ) should free that memory.

+

If you don't want to use a custom memory allocator, set +bzalloc, +bzfree and +opaque to +NULL, and the library will then +use the standard malloc / +free routines.

+

Before calling +BZ2_bzCompressInit, fields +bzalloc, +bzfree and +opaque should be filled +appropriately, as just described. Upon return, the internal +state will have been allocated and initialised, and +total_in_lo32, +total_in_hi32, +total_out_lo32 and +total_out_hi32 will have been +set to zero. These four fields are used by the library to inform +the caller of the total amount of data passed into and out of the +library, respectively. You should not try to change them. As of +version 1.0, 64-bit counts are maintained, even on 32-bit +platforms, using the _hi32 +fields to store the upper 32 bits of the count. So, for example, +the total amount of data in is (total_in_hi32 +<< 32) + total_in_lo32.

+

Parameter blockSize100k +specifies the block size to be used for compression. It should +be a value between 1 and 9 inclusive, and the actual block size +used is 100000 x this figure. 9 gives the best compression but +takes most memory.

+

Parameter verbosity should +be set to a number between 0 and 4 inclusive. 0 is silent, and +greater numbers give increasingly verbose monitoring/debugging +output. If the library has been compiled with +-DBZ_NO_STDIO, no such output +will appear for any verbosity setting.

+

Parameter workFactor +controls how the compression phase behaves when presented with +worst case, highly repetitive, input data. If compression runs +into difficulties caused by repetitive data, the library switches +from the standard sorting algorithm to a fallback algorithm. The +fallback is slower than the standard algorithm by perhaps a +factor of three, but always behaves reasonably, no matter how bad +the input.

+

Lower values of workFactor +reduce the amount of effort the standard algorithm will expend +before resorting to the fallback. You should set this parameter +carefully; too low, and many inputs will be handled by the +fallback algorithm and so compress rather slowly, too high, and +your average-to-worst case compression times can become very +large. The default value of 30 gives reasonable behaviour over a +wide range of circumstances.

+

Allowable values range from 0 to 250 inclusive. 0 is a +special case, equivalent to using the default value of 30.

+

Note that the compressed output generated is the same +regardless of whether or not the fallback algorithm is +used.

+

Be aware also that this parameter may disappear entirely in +future versions of the library. In principle it should be +possible to devise a good way to automatically choose which +algorithm to use. Such a mechanism would render the parameter +obsolete.

+

Possible return values:

+
BZ_CONFIG_ERROR
+  if the library has been mis-compiled
+BZ_PARAM_ERROR
+  if strm is NULL 
+  or blockSize < 1 or blockSize > 9
+  or verbosity < 0 or verbosity > 4
+  or workFactor < 0 or workFactor > 250
+BZ_MEM_ERROR 
+  if not enough memory is available
+BZ_OK 
+  otherwise
+

Allowable next actions:

+
BZ2_bzCompress
+  if BZ_OK is returned
+  no specific action needed in case of error
+
+
+
+

+3.3.2. BZ2_bzCompress

+
+
+
int BZ2_bzCompress ( bz_stream *strm, int action );
+

Provides more input and/or output buffer space for the +library. The caller maintains input and output buffers, and +calls BZ2_bzCompress to transfer +data between them.

+

Before each call to +BZ2_bzCompress, +next_in should point at the data +to be compressed, and avail_in +should indicate how many bytes the library may read. +BZ2_bzCompress updates +next_in, +avail_in and +total_in to reflect the number +of bytes it has read.

+

Similarly, next_out should +point to a buffer in which the compressed data is to be placed, +with avail_out indicating how +much output space is available. +BZ2_bzCompress updates +next_out, +avail_out and +total_out to reflect the number +of bytes output.

+

You may provide and remove as little or as much data as you +like on each call of +BZ2_bzCompress. In the limit, +it is acceptable to supply and remove data one byte at a time, +although this would be terribly inefficient. You should always +ensure that at least one byte of output space is available at +each call.

+

A second purpose of +BZ2_bzCompress is to request a +change of mode of the compressed stream.

+

Conceptually, a compressed stream can be in one of four +states: IDLE, RUNNING, FLUSHING and FINISHING. Before +initialisation +(BZ2_bzCompressInit) and after +termination (BZ2_bzCompressEnd), +a stream is regarded as IDLE.

+

Upon initialisation +(BZ2_bzCompressInit), the stream +is placed in the RUNNING state. Subsequent calls to +BZ2_bzCompress should pass +BZ_RUN as the requested action; +other actions are illegal and will result in +BZ_SEQUENCE_ERROR.

+

At some point, the calling program will have provided all +the input data it wants to. It will then want to finish up -- in +effect, asking the library to process any data it might have +buffered internally. In this state, +BZ2_bzCompress will no longer +attempt to read data from +next_in, but it will want to +write data to next_out. Because +the output buffer supplied by the user can be arbitrarily small, +the finishing-up operation cannot necessarily be done with a +single call of +BZ2_bzCompress.

+

Instead, the calling program passes +BZ_FINISH as an action to +BZ2_bzCompress. This changes +the stream's state to FINISHING. Any remaining input (ie, +next_in[0 .. avail_in-1]) is +compressed and transferred to the output buffer. To do this, +BZ2_bzCompress must be called +repeatedly until all the output has been consumed. At that +point, BZ2_bzCompress returns +BZ_STREAM_END, and the stream's +state is set back to IDLE. +BZ2_bzCompressEnd should then be +called.

+

Just to make sure the calling program does not cheat, the +library makes a note of avail_in +at the time of the first call to +BZ2_bzCompress which has +BZ_FINISH as an action (ie, at +the time the program has announced its intention to not supply +any more input). By comparing this value with that of +avail_in over subsequent calls +to BZ2_bzCompress, the library +can detect any attempts to slip in more data to compress. Any +calls for which this is detected will return +BZ_SEQUENCE_ERROR. This +indicates a programming mistake which should be corrected.

+

Instead of asking to finish, the calling program may ask +BZ2_bzCompress to take all the +remaining input, compress it and terminate the current +(Burrows-Wheeler) compression block. This could be useful for +error control purposes. The mechanism is analogous to that for +finishing: call BZ2_bzCompress +with an action of BZ_FLUSH, +remove output data, and persist with the +BZ_FLUSH action until the value +BZ_RUN is returned. As with +finishing, BZ2_bzCompress +detects any attempt to provide more input data once the flush has +begun.

+

Once the flush is complete, the stream returns to the +normal RUNNING state.

+

This all sounds pretty complex, but isn't really. Here's a +table which shows which actions are allowable in each state, what +action will be taken, what the next state is, and what the +non-error return values are. Note that you can't explicitly ask +what state the stream is in, but nor do you need to -- it can be +inferred from the values returned by +BZ2_bzCompress.

+
IDLE/any
+  Illegal.  IDLE state only exists after BZ2_bzCompressEnd or
+  before BZ2_bzCompressInit.
+  Return value = BZ_SEQUENCE_ERROR
+
+RUNNING/BZ_RUN
+  Compress from next_in to next_out as much as possible.
+  Next state = RUNNING
+  Return value = BZ_RUN_OK
+
+RUNNING/BZ_FLUSH
+  Remember current value of next_in. Compress from next_in
+  to next_out as much as possible, but do not accept any more input.
+  Next state = FLUSHING
+  Return value = BZ_FLUSH_OK
+
+RUNNING/BZ_FINISH
+  Remember current value of next_in. Compress from next_in
+  to next_out as much as possible, but do not accept any more input.
+  Next state = FINISHING
+  Return value = BZ_FINISH_OK
+
+FLUSHING/BZ_FLUSH
+  Compress from next_in to next_out as much as possible, 
+  but do not accept any more input.
+  If all the existing input has been used up and all compressed
+  output has been removed
+    Next state = RUNNING; Return value = BZ_RUN_OK
+  else
+    Next state = FLUSHING; Return value = BZ_FLUSH_OK
+
+FLUSHING/other     
+  Illegal.
+  Return value = BZ_SEQUENCE_ERROR
+
+FINISHING/BZ_FINISH
+  Compress from next_in to next_out as much as possible,
+  but to not accept any more input.  
+  If all the existing input has been used up and all compressed
+  output has been removed
+    Next state = IDLE; Return value = BZ_STREAM_END
+  else
+    Next state = FINISHING; Return value = BZ_FINISHING
+
+FINISHING/other
+  Illegal.
+  Return value = BZ_SEQUENCE_ERROR
+

That still looks complicated? Well, fair enough. The +usual sequence of calls for compressing a load of data is:

+
    +
  1. Get started with + BZ2_bzCompressInit.

  2. +
  3. Shovel data in and shlurp out its compressed form + using zero or more calls of + BZ2_bzCompress with action = + BZ_RUN.

  4. +
  5. Finish up. Repeatedly call + BZ2_bzCompress with action = + BZ_FINISH, copying out the + compressed output, until + BZ_STREAM_END is + returned.

  6. +
  7. Close up and go home. Call + BZ2_bzCompressEnd.

  8. +
+

If the data you want to compress fits into your input +buffer all at once, you can skip the calls of +BZ2_bzCompress ( ..., BZ_RUN ) +and just do the BZ2_bzCompress ( ..., BZ_FINISH +) calls.

+

All required memory is allocated by +BZ2_bzCompressInit. The +compression library can accept any data at all (obviously). So +you shouldn't get any error return values from the +BZ2_bzCompress calls. If you +do, they will be +BZ_SEQUENCE_ERROR, and indicate +a bug in your programming.

+

Trivial other possible return values:

+
BZ_PARAM_ERROR
+  if strm is NULL, or strm->s is NULL
+
+
+
+

+3.3.3. BZ2_bzCompressEnd

+
+
+
int BZ2_bzCompressEnd ( bz_stream *strm );
+

Releases all memory associated with a compression +stream.

+

Possible return values:

+
BZ_PARAM_ERROR  if strm is NULL or strm->s is NULL
+BZ_OK           otherwise
+
+
+
+

+3.3.4. BZ2_bzDecompressInit

+
+
+
int BZ2_bzDecompressInit ( bz_stream *strm, int verbosity, int small );
+

Prepares for decompression. As with +BZ2_bzCompressInit, a +bz_stream record should be +allocated and initialised before the call. Fields +bzalloc, +bzfree and +opaque should be set if a custom +memory allocator is required, or made +NULL for the normal +malloc / +free routines. Upon return, the +internal state will have been initialised, and +total_in and +total_out will be zero.

+

For the meaning of parameter +verbosity, see +BZ2_bzCompressInit.

+

If small is nonzero, the +library will use an alternative decompression algorithm which +uses less memory but at the cost of decompressing more slowly +(roughly speaking, half the speed, but the maximum memory +requirement drops to around 2300k). See How to use bzip2 +for more information on memory management.

+

Note that the amount of memory needed to decompress a +stream cannot be determined until the stream's header has been +read, so even if +BZ2_bzDecompressInit succeeds, a +subsequent BZ2_bzDecompress +could fail with +BZ_MEM_ERROR.

+

Possible return values:

+
BZ_CONFIG_ERROR
+  if the library has been mis-compiled
+BZ_PARAM_ERROR
+  if ( small != 0 && small != 1 )
+  or (verbosity <; 0 || verbosity > 4)
+BZ_MEM_ERROR
+  if insufficient memory is available
+

Allowable next actions:

+
BZ2_bzDecompress
+  if BZ_OK was returned
+  no specific action required in case of error
+
+
+
+

+3.3.5. BZ2_bzDecompress

+
+
+
int BZ2_bzDecompress ( bz_stream *strm );
+

Provides more input and/out output buffer space for the +library. The caller maintains input and output buffers, and uses +BZ2_bzDecompress to transfer +data between them.

+

Before each call to +BZ2_bzDecompress, +next_in should point at the +compressed data, and avail_in +should indicate how many bytes the library may read. +BZ2_bzDecompress updates +next_in, +avail_in and +total_in to reflect the number +of bytes it has read.

+

Similarly, next_out should +point to a buffer in which the uncompressed output is to be +placed, with avail_out +indicating how much output space is available. +BZ2_bzCompress updates +next_out, +avail_out and +total_out to reflect the number +of bytes output.

+

You may provide and remove as little or as much data as you +like on each call of +BZ2_bzDecompress. In the limit, +it is acceptable to supply and remove data one byte at a time, +although this would be terribly inefficient. You should always +ensure that at least one byte of output space is available at +each call.

+

Use of BZ2_bzDecompress is +simpler than +BZ2_bzCompress.

+

You should provide input and remove output as described +above, and repeatedly call +BZ2_bzDecompress until +BZ_STREAM_END is returned. +Appearance of BZ_STREAM_END +denotes that BZ2_bzDecompress +has detected the logical end of the compressed stream. +BZ2_bzDecompress will not +produce BZ_STREAM_END until all +output data has been placed into the output buffer, so once +BZ_STREAM_END appears, you are +guaranteed to have available all the decompressed output, and +BZ2_bzDecompressEnd can safely +be called.

+

If case of an error return value, you should call +BZ2_bzDecompressEnd to clean up +and release memory.

+

Possible return values:

+
BZ_PARAM_ERROR
+  if strm is NULL or strm->s is NULL
+  or strm->avail_out < 1
+BZ_DATA_ERROR
+  if a data integrity error is detected in the compressed stream
+BZ_DATA_ERROR_MAGIC
+  if the compressed stream doesn't begin with the right magic bytes
+BZ_MEM_ERROR
+  if there wasn't enough memory available
+BZ_STREAM_END
+  if the logical end of the data stream was detected and all
+  output in has been consumed, eg s-->avail_out > 0
+BZ_OK
+  otherwise
+

Allowable next actions:

+
BZ2_bzDecompress
+  if BZ_OK was returned
+BZ2_bzDecompressEnd
+  otherwise
+
+
+
+

+3.3.6. BZ2_bzDecompressEnd

+
+
+
int BZ2_bzDecompressEnd ( bz_stream *strm );
+

Releases all memory associated with a decompression +stream.

+

Possible return values:

+
BZ_PARAM_ERROR
+  if strm is NULL or strm->s is NULL
+BZ_OK
+  otherwise
+

Allowable next actions:

+
  None.
+
+
+
+
+

+3.4. High-level interface

+
+
+

This interface provides functions for reading and writing +bzip2 format files. First, some +general points.

+
    +
  • All of the functions take an + int* first argument, + bzerror. After each call, + bzerror should be consulted + first to determine the outcome of the call. If + bzerror is + BZ_OK, the call completed + successfully, and only then should the return value of the + function (if any) be consulted. If + bzerror is + BZ_IO_ERROR, there was an + error reading/writing the underlying compressed file, and you + should then consult errno / + perror to determine the cause + of the difficulty. bzerror + may also be set to various other values; precise details are + given on a per-function basis below.

  • +
  • If bzerror indicates + an error (ie, anything except + BZ_OK and + BZ_STREAM_END), you should + immediately call + BZ2_bzReadClose (or + BZ2_bzWriteClose, depending on + whether you are attempting to read or to write) to free up all + resources associated with the stream. Once an error has been + indicated, behaviour of all calls except + BZ2_bzReadClose + (BZ2_bzWriteClose) is + undefined. The implication is that (1) + bzerror should be checked + after each call, and (2) if + bzerror indicates an error, + BZ2_bzReadClose + (BZ2_bzWriteClose) should then + be called to clean up.

  • +
  • The FILE* arguments + passed to BZ2_bzReadOpen / + BZ2_bzWriteOpen should be set + to binary mode. Most Unix systems will do this by default, but + other platforms, including Windows and Mac, will not. If you + omit this, you may encounter problems when moving code to new + platforms.

  • +
  • Memory allocation requests are handled by + malloc / + free. At present there is no + facility for user-defined memory allocators in the file I/O + functions (could easily be added, though).

  • +
+
+
+

+3.4.1. BZ2_bzReadOpen

+
+
+
typedef void BZFILE;
+
+BZFILE *BZ2_bzReadOpen( int *bzerror, FILE *f, 
+                        int verbosity, int small,
+                        void *unused, int nUnused );
+

Prepare to read compressed data from file handle +f. +f should refer to a file which +has been opened for reading, and for which the error indicator +(ferror(f))is not set. If +small is 1, the library will try +to decompress using less memory, at the expense of speed.

+

For reasons explained below, +BZ2_bzRead will decompress the +nUnused bytes starting at +unused, before starting to read +from the file f. At most +BZ_MAX_UNUSED bytes may be +supplied like this. If this facility is not required, you should +pass NULL and +0 for +unused and +nUnused respectively.

+

For the meaning of parameters +small and +verbosity, see +BZ2_bzDecompressInit.

+

The amount of memory needed to decompress a file cannot be +determined until the file's header has been read. So it is +possible that BZ2_bzReadOpen +returns BZ_OK but a subsequent +call of BZ2_bzRead will return +BZ_MEM_ERROR.

+

Possible assignments to +bzerror:

+
BZ_CONFIG_ERROR
+  if the library has been mis-compiled
+BZ_PARAM_ERROR
+  if f is NULL
+  or small is neither 0 nor 1
+  or ( unused == NULL && nUnused != 0 )
+  or ( unused != NULL && !(0 <= nUnused <= BZ_MAX_UNUSED) )
+BZ_IO_ERROR
+  if ferror(f) is nonzero
+BZ_MEM_ERROR
+  if insufficient memory is available
+BZ_OK
+  otherwise.
+

Possible return values:

+
Pointer to an abstract BZFILE
+  if bzerror is BZ_OK
+NULL
+  otherwise
+

Allowable next actions:

+
BZ2_bzRead
+  if bzerror is BZ_OK
+BZ2_bzClose
+  otherwise
+
+
+
+

+3.4.2. BZ2_bzRead

+
+
+
int BZ2_bzRead ( int *bzerror, BZFILE *b, void *buf, int len );
+

Reads up to len +(uncompressed) bytes from the compressed file +b into the buffer +buf. If the read was +successful, bzerror is set to +BZ_OK and the number of bytes +read is returned. If the logical end-of-stream was detected, +bzerror will be set to +BZ_STREAM_END, and the number of +bytes read is returned. All other +bzerror values denote an +error.

+

BZ2_bzRead will supply +len bytes, unless the logical +stream end is detected or an error occurs. Because of this, it +is possible to detect the stream end by observing when the number +of bytes returned is less than the number requested. +Nevertheless, this is regarded as inadvisable; you should instead +check bzerror after every call +and watch out for +BZ_STREAM_END.

+

Internally, BZ2_bzRead +copies data from the compressed file in chunks of size +BZ_MAX_UNUSED bytes before +decompressing it. If the file contains more bytes than strictly +needed to reach the logical end-of-stream, +BZ2_bzRead will almost certainly +read some of the trailing data before signalling +BZ_SEQUENCE_END. To collect the +read but unused data once +BZ_SEQUENCE_END has appeared, +call BZ2_bzReadGetUnused +immediately before +BZ2_bzReadClose.

+

Possible assignments to +bzerror:

+
BZ_PARAM_ERROR
+  if b is NULL or buf is NULL or len < 0
+BZ_SEQUENCE_ERROR
+  if b was opened with BZ2_bzWriteOpen
+BZ_IO_ERROR
+  if there is an error reading from the compressed file
+BZ_UNEXPECTED_EOF
+  if the compressed file ended before 
+  the logical end-of-stream was detected
+BZ_DATA_ERROR
+  if a data integrity error was detected in the compressed stream
+BZ_DATA_ERROR_MAGIC
+  if the stream does not begin with the requisite header bytes 
+  (ie, is not a bzip2 data file).  This is really 
+  a special case of BZ_DATA_ERROR.
+BZ_MEM_ERROR
+  if insufficient memory was available
+BZ_STREAM_END
+  if the logical end of stream was detected.
+BZ_OK
+  otherwise.
+

Possible return values:

+
number of bytes read
+  if bzerror is BZ_OK or BZ_STREAM_END
+undefined
+  otherwise
+

Allowable next actions:

+
collect data from buf, then BZ2_bzRead or BZ2_bzReadClose
+  if bzerror is BZ_OK
+collect data from buf, then BZ2_bzReadClose or BZ2_bzReadGetUnused
+  if bzerror is BZ_SEQUENCE_END
+BZ2_bzReadClose
+  otherwise
+
+
+
+

+3.4.3. BZ2_bzReadGetUnused

+
+
+
void BZ2_bzReadGetUnused( int* bzerror, BZFILE *b, 
+                          void** unused, int* nUnused );
+

Returns data which was read from the compressed file but +was not needed to get to the logical end-of-stream. +*unused is set to the address of +the data, and *nUnused to the +number of bytes. *nUnused will +be set to a value between 0 and +BZ_MAX_UNUSED inclusive.

+

This function may only be called once +BZ2_bzRead has signalled +BZ_STREAM_END but before +BZ2_bzReadClose.

+

Possible assignments to +bzerror:

+
BZ_PARAM_ERROR
+  if b is NULL
+  or unused is NULL or nUnused is NULL
+BZ_SEQUENCE_ERROR
+  if BZ_STREAM_END has not been signalled
+  or if b was opened with BZ2_bzWriteOpen
+BZ_OK
+  otherwise
+

Allowable next actions:

+
BZ2_bzReadClose
+
+
+
+

+3.4.4. BZ2_bzReadClose

+
+
+
void BZ2_bzReadClose ( int *bzerror, BZFILE *b );
+

Releases all memory pertaining to the compressed file +b. +BZ2_bzReadClose does not call +fclose on the underlying file +handle, so you should do that yourself if appropriate. +BZ2_bzReadClose should be called +to clean up after all error situations.

+

Possible assignments to +bzerror:

+
BZ_SEQUENCE_ERROR
+  if b was opened with BZ2_bzOpenWrite
+BZ_OK
+  otherwise
+

Allowable next actions:

+
none
+
+
+
+

+3.4.5. BZ2_bzWriteOpen

+
+
+
BZFILE *BZ2_bzWriteOpen( int *bzerror, FILE *f, 
+                         int blockSize100k, int verbosity,
+                         int workFactor );
+

Prepare to write compressed data to file handle +f. +f should refer to a file which +has been opened for writing, and for which the error indicator +(ferror(f))is not set.

+

For the meaning of parameters +blockSize100k, +verbosity and +workFactor, see +BZ2_bzCompressInit.

+

All required memory is allocated at this stage, so if the +call completes successfully, +BZ_MEM_ERROR cannot be signalled +by a subsequent call to +BZ2_bzWrite.

+

Possible assignments to +bzerror:

+
BZ_CONFIG_ERROR
+  if the library has been mis-compiled
+BZ_PARAM_ERROR
+  if f is NULL
+  or blockSize100k < 1 or blockSize100k > 9
+BZ_IO_ERROR
+  if ferror(f) is nonzero
+BZ_MEM_ERROR
+  if insufficient memory is available
+BZ_OK
+  otherwise
+

Possible return values:

+
Pointer to an abstract BZFILE
+  if bzerror is BZ_OK
+NULL
+  otherwise
+

Allowable next actions:

+
BZ2_bzWrite
+  if bzerror is BZ_OK
+  (you could go directly to BZ2_bzWriteClose, but this would be pretty pointless)
+BZ2_bzWriteClose
+  otherwise
+
+
+
+

+3.4.6. BZ2_bzWrite

+
+
+
void BZ2_bzWrite ( int *bzerror, BZFILE *b, void *buf, int len );
+

Absorbs len bytes from the +buffer buf, eventually to be +compressed and written to the file.

+

Possible assignments to +bzerror:

+
BZ_PARAM_ERROR
+  if b is NULL or buf is NULL or len < 0
+BZ_SEQUENCE_ERROR
+  if b was opened with BZ2_bzReadOpen
+BZ_IO_ERROR
+  if there is an error writing the compressed file.
+BZ_OK
+  otherwise
+
+
+
+

+3.4.7. BZ2_bzWriteClose

+
+
+
void BZ2_bzWriteClose( int *bzerror, BZFILE* f,
+                       int abandon,
+                       unsigned int* nbytes_in,
+                       unsigned int* nbytes_out );
+
+void BZ2_bzWriteClose64( int *bzerror, BZFILE* f,
+                         int abandon,
+                         unsigned int* nbytes_in_lo32,
+                         unsigned int* nbytes_in_hi32,
+                         unsigned int* nbytes_out_lo32,
+                         unsigned int* nbytes_out_hi32 );
+

Compresses and flushes to the compressed file all data so +far supplied by BZ2_bzWrite. +The logical end-of-stream markers are also written, so subsequent +calls to BZ2_bzWrite are +illegal. All memory associated with the compressed file +b is released. +fflush is called on the +compressed file, but it is not +fclose'd.

+

If BZ2_bzWriteClose is +called to clean up after an error, the only action is to release +the memory. The library records the error codes issued by +previous calls, so this situation will be detected automatically. +There is no attempt to complete the compression operation, nor to +fflush the compressed file. You +can force this behaviour to happen even in the case of no error, +by passing a nonzero value to +abandon.

+

If nbytes_in is non-null, +*nbytes_in will be set to be the +total volume of uncompressed data handled. Similarly, +nbytes_out will be set to the +total volume of compressed data written. For compatibility with +older versions of the library, +BZ2_bzWriteClose only yields the +lower 32 bits of these counts. Use +BZ2_bzWriteClose64 if you want +the full 64 bit counts. These two functions are otherwise +absolutely identical.

+

Possible assignments to +bzerror:

+
BZ_SEQUENCE_ERROR
+  if b was opened with BZ2_bzReadOpen
+BZ_IO_ERROR
+  if there is an error writing the compressed file
+BZ_OK
+  otherwise
+
+
+
+

+3.4.8. Handling embedded compressed data streams

+
+
+

The high-level library facilitates use of +bzip2 data streams which form +some part of a surrounding, larger data stream.

+
    +
  • For writing, the library takes an open file handle, + writes compressed data to it, + fflushes it but does not + fclose it. The calling + application can write its own data before and after the + compressed data stream, using that same file handle.

  • +
  • Reading is more complex, and the facilities are not as + general as they could be since generality is hard to reconcile + with efficiency. BZ2_bzRead + reads from the compressed file in blocks of size + BZ_MAX_UNUSED bytes, and in + doing so probably will overshoot the logical end of compressed + stream. To recover this data once decompression has ended, + call BZ2_bzReadGetUnused after + the last call of BZ2_bzRead + (the one returning + BZ_STREAM_END) but before + calling + BZ2_bzReadClose.

  • +
+

This mechanism makes it easy to decompress multiple +bzip2 streams placed end-to-end. +As the end of one stream, when +BZ2_bzRead returns +BZ_STREAM_END, call +BZ2_bzReadGetUnused to collect +the unused data (copy it into your own buffer somewhere). That +data forms the start of the next compressed stream. To start +uncompressing that next stream, call +BZ2_bzReadOpen again, feeding in +the unused data via the unused / +nUnused parameters. Keep doing +this until BZ_STREAM_END return +coincides with the physical end of file +(feof(f)). In this situation +BZ2_bzReadGetUnused will of +course return no data.

+

This should give some feel for how the high-level interface +can be used. If you require extra flexibility, you'll have to +bite the bullet and get to grips with the low-level +interface.

+
+
+
+

+3.4.9. Standard file-reading/writing code

+
+
+

Here's how you'd write data to a compressed file:

+
FILE*   f;
+BZFILE* b;
+int     nBuf;
+char    buf[ /* whatever size you like */ ];
+int     bzerror;
+int     nWritten;
+
+f = fopen ( "myfile.bz2", "w" );
+if ( !f ) {
+ /* handle error */
+}
+b = BZ2_bzWriteOpen( &bzerror, f, 9 );
+if (bzerror != BZ_OK) {
+ BZ2_bzWriteClose ( b );
+ /* handle error */
+}
+
+while ( /* condition */ ) {
+ /* get data to write into buf, and set nBuf appropriately */
+ nWritten = BZ2_bzWrite ( &bzerror, b, buf, nBuf );
+ if (bzerror == BZ_IO_ERROR) { 
+   BZ2_bzWriteClose ( &bzerror, b );
+   /* handle error */
+ }
+}
+
+BZ2_bzWriteClose( &bzerror, b );
+if (bzerror == BZ_IO_ERROR) {
+ /* handle error */
+}
+

And to read from a compressed file:

+
FILE*   f;
+BZFILE* b;
+int     nBuf;
+char    buf[ /* whatever size you like */ ];
+int     bzerror;
+int     nWritten;
+
+f = fopen ( "myfile.bz2", "r" );
+if ( !f ) {
+  /* handle error */
+}
+b = BZ2_bzReadOpen ( &bzerror, f, 0, NULL, 0 );
+if ( bzerror != BZ_OK ) {
+  BZ2_bzReadClose ( &bzerror, b );
+  /* handle error */
+}
+
+bzerror = BZ_OK;
+while ( bzerror == BZ_OK && /* arbitrary other conditions */) {
+  nBuf = BZ2_bzRead ( &bzerror, b, buf, /* size of buf */ );
+  if ( bzerror == BZ_OK ) {
+    /* do something with buf[0 .. nBuf-1] */
+  }
+}
+if ( bzerror != BZ_STREAM_END ) {
+   BZ2_bzReadClose ( &bzerror, b );
+   /* handle error */
+} else {
+   BZ2_bzReadClose ( &bzerror );
+}
+
+
+
+
+

+3.5. Utility functions

+
+
+
+
+

+3.5.1. BZ2_bzBuffToBuffCompress

+
+
+
int BZ2_bzBuffToBuffCompress( char*         dest,
+                              unsigned int* destLen,
+                              char*         source,
+                              unsigned int  sourceLen,
+                              int           blockSize100k,
+                              int           verbosity,
+                              int           workFactor );
+

Attempts to compress the data in source[0 +.. sourceLen-1] into the destination buffer, +dest[0 .. *destLen-1]. If the +destination buffer is big enough, +*destLen is set to the size of +the compressed data, and BZ_OK +is returned. If the compressed data won't fit, +*destLen is unchanged, and +BZ_OUTBUFF_FULL is +returned.

+

Compression in this manner is a one-shot event, done with a +single call to this function. The resulting compressed data is a +complete bzip2 format data +stream. There is no mechanism for making additional calls to +provide extra input data. If you want that kind of mechanism, +use the low-level interface.

+

For the meaning of parameters +blockSize100k, +verbosity and +workFactor, see +BZ2_bzCompressInit.

+

To guarantee that the compressed data will fit in its +buffer, allocate an output buffer of size 1% larger than the +uncompressed data, plus six hundred extra bytes.

+

BZ2_bzBuffToBuffDecompress +will not write data at or beyond +dest[*destLen], even in case of +buffer overflow.

+

Possible return values:

+
BZ_CONFIG_ERROR
+  if the library has been mis-compiled
+BZ_PARAM_ERROR
+  if dest is NULL or destLen is NULL
+  or blockSize100k < 1 or blockSize100k > 9
+  or verbosity < 0 or verbosity > 4
+  or workFactor < 0 or workFactor > 250
+BZ_MEM_ERROR
+  if insufficient memory is available 
+BZ_OUTBUFF_FULL
+  if the size of the compressed data exceeds *destLen
+BZ_OK
+  otherwise
+
+
+
+

+3.5.2. BZ2_bzBuffToBuffDecompress

+
+
+
int BZ2_bzBuffToBuffDecompress( char*         dest,
+                                unsigned int* destLen,
+                                char*         source,
+                                unsigned int  sourceLen,
+                                int           small,
+                                int           verbosity );
+

Attempts to decompress the data in source[0 +.. sourceLen-1] into the destination buffer, +dest[0 .. *destLen-1]. If the +destination buffer is big enough, +*destLen is set to the size of +the uncompressed data, and BZ_OK +is returned. If the compressed data won't fit, +*destLen is unchanged, and +BZ_OUTBUFF_FULL is +returned.

+

source is assumed to hold +a complete bzip2 format data +stream. +BZ2_bzBuffToBuffDecompress tries +to decompress the entirety of the stream into the output +buffer.

+

For the meaning of parameters +small and +verbosity, see +BZ2_bzDecompressInit.

+

Because the compression ratio of the compressed data cannot +be known in advance, there is no easy way to guarantee that the +output buffer will be big enough. You may of course make +arrangements in your code to record the size of the uncompressed +data, but such a mechanism is beyond the scope of this +library.

+

BZ2_bzBuffToBuffDecompress +will not write data at or beyond +dest[*destLen], even in case of +buffer overflow.

+

Possible return values:

+
BZ_CONFIG_ERROR
+  if the library has been mis-compiled
+BZ_PARAM_ERROR
+  if dest is NULL or destLen is NULL
+  or small != 0 && small != 1
+  or verbosity < 0 or verbosity > 4
+BZ_MEM_ERROR
+  if insufficient memory is available 
+BZ_OUTBUFF_FULL
+  if the size of the compressed data exceeds *destLen
+BZ_DATA_ERROR
+  if a data integrity error was detected in the compressed data
+BZ_DATA_ERROR_MAGIC
+  if the compressed data doesn't begin with the right magic bytes
+BZ_UNEXPECTED_EOF
+  if the compressed data ends unexpectedly
+BZ_OK
+  otherwise
+
+
+
+
+

+3.6. zlib compatibility functions

+
+
+

Yoshioka Tsuneo has contributed some functions to give +better zlib compatibility. +These functions are BZ2_bzopen, +BZ2_bzread, +BZ2_bzwrite, +BZ2_bzflush, +BZ2_bzclose, +BZ2_bzerror and +BZ2_bzlibVersion. These +functions are not (yet) officially part of the library. If they +break, you get to keep all the pieces. Nevertheless, I think +they work ok.

+
typedef void BZFILE;
+
+const char * BZ2_bzlibVersion ( void );
+

Returns a string indicating the library version.

+
BZFILE * BZ2_bzopen  ( const char *path, const char *mode );
+BZFILE * BZ2_bzdopen ( int        fd,    const char *mode );
+

Opens a .bz2 file for +reading or writing, using either its name or a pre-existing file +descriptor. Analogous to fopen +and fdopen.

+
int BZ2_bzread  ( BZFILE* b, void* buf, int len );
+int BZ2_bzwrite ( BZFILE* b, void* buf, int len );
+

Reads/writes data from/to a previously opened +BZFILE. Analogous to +fread and +fwrite.

+
int  BZ2_bzflush ( BZFILE* b );
+void BZ2_bzclose ( BZFILE* b );
+

Flushes/closes a BZFILE. +BZ2_bzflush doesn't actually do +anything. Analogous to fflush +and fclose.

+
const char * BZ2_bzerror ( BZFILE *b, int *errnum )
+

Returns a string describing the more recent error status of +b, and also sets +*errnum to its numerical +value.

+
+
+
+

+3.7. Using the library in a stdio-free environment

+
+
+
+
+

+3.7.1. Getting rid of stdio

+
+
+

In a deeply embedded application, you might want to use +just the memory-to-memory functions. You can do this +conveniently by compiling the library with preprocessor symbol +BZ_NO_STDIO defined. Doing this +gives you a library containing only the following eight +functions:

+

BZ2_bzCompressInit, +BZ2_bzCompress, +BZ2_bzCompressEnd +BZ2_bzDecompressInit, +BZ2_bzDecompress, +BZ2_bzDecompressEnd +BZ2_bzBuffToBuffCompress, +BZ2_bzBuffToBuffDecompress

+

When compiled like this, all functions will ignore +verbosity settings.

+
+
+
+

+3.7.2. Critical error handling

+
+
+

libbzip2 contains a number +of internal assertion checks which should, needless to say, never +be activated. Nevertheless, if an assertion should fail, +behaviour depends on whether or not the library was compiled with +BZ_NO_STDIO set.

+

For a normal compile, an assertion failure yields the +message:

+
+

bzip2/libbzip2: internal error number N.

+

This is a bug in bzip2/libbzip2, 1.0.3 of 15 February 2005. +Please report it to me at: jseward@bzip.org. If this happened +when you were using some program which uses libbzip2 as a +component, you should also report this bug to the author(s) +of that program. Please make an effort to report this bug; +timely and accurate bug reports eventually lead to higher +quality software. Thanks. Julian Seward, 15 February 2005. +

+
+

where N is some error code +number. If N == 1007, it also +prints some extra text advising the reader that unreliable memory +is often associated with internal error 1007. (This is a +frequently-observed-phenomenon with versions 1.0.0/1.0.1).

+

exit(3) is then +called.

+

For a stdio-free library, +assertion failures result in a call to a function declared +as:

+
extern void bz_internal_error ( int errcode );
+

The relevant code is passed as a parameter. You should +supply such a function.

+

In either case, once an assertion failure has occurred, any +bz_stream records involved can +be regarded as invalid. You should not attempt to resume normal +operation with them.

+

You may, of course, change critical error handling to suit +your needs. As I said above, critical errors indicate bugs in +the library and should not occur. All "normal" error situations +are indicated via error return codes from functions, and can be +recovered from.

+
+
+
+
+

+3.8. Making a Windows DLL

+
+
+

Everything related to Windows has been contributed by +Yoshioka Tsuneo +(QWF00133@niftyserve.or.jp / +tsuneo-y@is.aist-nara.ac.jp), so +you should send your queries to him (but perhaps Cc: me, +jseward@bzip.org).

+

My vague understanding of what to do is: using Visual C++ +5.0, open the project file +libbz2.dsp, and build. That's +all.

+

If you can't open the project file for some reason, make a +new one, naming these files: +blocksort.c, +bzlib.c, +compress.c, +crctable.c, +decompress.c, +huffman.c, +randtable.c and +libbz2.def. You will also need +to name the header files bzlib.h +and bzlib_private.h.

+

If you don't use VC++, you may need to define the +proprocessor symbol +_WIN32.

+

Finally, dlltest.c is a +sample program using the DLL. It has a project file, +dlltest.dsp.

+

If you just want a makefile for Visual C, have a look at +makefile.msc.

+

Be aware that if you compile +bzip2 itself on Win32, you must +set BZ_UNIX to 0 and +BZ_LCCWIN32 to 1, in the file +bzip2.c, before compiling. +Otherwise the resulting binary won't work correctly.

+

I haven't tried any of this stuff myself, but it all looks +plausible.

+
+
+
+
+

+4. Miscellanea

+
+
+ +

These are just some random thoughts of mine. Your mileage +may vary.

+
+
+

+4.1. Limitations of the compressed file format

+
+
+

bzip2-1.0.X, +0.9.5 and +0.9.0 use exactly the same file +format as the original version, +bzip2-0.1. This decision was +made in the interests of stability. Creating yet another +incompatible compressed file format would create further +confusion and disruption for users.

+

Nevertheless, this is not a painless decision. Development +work since the release of +bzip2-0.1 in August 1997 has +shown complexities in the file format which slow down +decompression and, in retrospect, are unnecessary. These +are:

+
    +
  • The run-length encoder, which is the first of the + compression transformations, is entirely irrelevant. The + original purpose was to protect the sorting algorithm from the + very worst case input: a string of repeated symbols. But + algorithm steps Q6a and Q6b in the original Burrows-Wheeler + technical report (SRC-124) show how repeats can be handled + without difficulty in block sorting.

  • +
  • +

    The randomisation mechanism doesn't really need to be + there. Udi Manber and Gene Myers published a suffix array + construction algorithm a few years back, which can be employed + to sort any block, no matter how repetitive, in O(N log N) + time. Subsequent work by Kunihiko Sadakane has produced a + derivative O(N (log N)^2) algorithm which usually outperforms + the Manber-Myers algorithm.

    +

    I could have changed to Sadakane's algorithm, but I find + it to be slower than bzip2's + existing algorithm for most inputs, and the randomisation + mechanism protects adequately against bad cases. I didn't + think it was a good tradeoff to make. Partly this is due to + the fact that I was not flooded with email complaints about + bzip2-0.1's performance on + repetitive data, so perhaps it isn't a problem for real + inputs.

    +

    Probably the best long-term solution, and the one I have + incorporated into 0.9.5 and above, is to use the existing + sorting algorithm initially, and fall back to a O(N (log N)^2) + algorithm if the standard algorithm gets into + difficulties.

    +
  • +
  • The compressed file format was never designed to be + handled by a library, and I have had to jump though some hoops + to produce an efficient implementation of decompression. It's + a bit hairy. Try passing + decompress.c through the C + preprocessor and you'll see what I mean. Much of this + complexity could have been avoided if the compressed size of + each block of data was recorded in the data stream.

  • +
  • An Adler-32 checksum, rather than a CRC32 checksum, + would be faster to compute.

  • +
+

It would be fair to say that the +bzip2 format was frozen before I +properly and fully understood the performance consequences of +doing so.

+

Improvements which I was able to incorporate into 0.9.0, +despite using the same file format, are:

+
    +
  • Single array implementation of the inverse BWT. This + significantly speeds up decompression, presumably because it + reduces the number of cache misses.

  • +
  • Faster inverse MTF transform for large MTF values. + The new implementation is based on the notion of sliding blocks + of values.

  • +
  • bzip2-0.9.0 now reads + and writes files with fread + and fwrite; version 0.1 used + putc and + getc. Duh! Well, you live + and learn.

  • +
+

Further ahead, it would be nice to be able to do random +access into files. This will require some careful design of +compressed file formats.

+
+
+
+

+4.2. Portability issues

+
+
+

After some consideration, I have decided not to use GNU +autoconf to configure 0.9.5 or +1.0.

+

autoconf, admirable and +wonderful though it is, mainly assists with portability problems +between Unix-like platforms. But +bzip2 doesn't have much in the +way of portability problems on Unix; most of the difficulties +appear when porting to the Mac, or to Microsoft's operating +systems. autoconf doesn't help +in those cases, and brings in a whole load of new +complexity.

+

Most people should be able to compile the library and +program under Unix straight out-of-the-box, so to speak, +especially if you have a version of GNU C available.

+

There are a couple of +__inline__ directives in the +code. GNU C (gcc) should be +able to handle them. If you're not using GNU C, your C compiler +shouldn't see them at all. If your compiler does, for some +reason, see them and doesn't like them, just +#define +__inline__ to be +/* */. One easy way to do this +is to compile with the flag +-D__inline__=, which should be +understood by most Unix compilers.

+

If you still have difficulties, try compiling with the +macro BZ_STRICT_ANSI defined. +This should enable you to build the library in a strictly ANSI +compliant environment. Building the program itself like this is +dangerous and not supported, since you remove +bzip2's checks against +compressing directories, symbolic links, devices, and other +not-really-a-file entities. This could cause filesystem +corruption!

+

One other thing: if you create a +bzip2 binary for public distribution, +please consider linking it statically (gcc +-static). This avoids all sorts of library-version +issues that others may encounter later on.

+

If you build bzip2 on +Win32, you must set BZ_UNIX to 0 +and BZ_LCCWIN32 to 1, in the +file bzip2.c, before compiling. +Otherwise the resulting binary won't work correctly.

+
+
+
+

+4.3. Reporting bugs

+
+
+

I tried pretty hard to make sure +bzip2 is bug free, both by +design and by testing. Hopefully you'll never need to read this +section for real.

+

Nevertheless, if bzip2 dies +with a segmentation fault, a bus error or an internal assertion +failure, it will ask you to email me a bug report. Experience from +years of feedback of bzip2 users indicates that almost all these +problems can be traced to either compiler bugs or hardware +problems.

+
    +
  • +

    Recompile the program with no optimisation, and + see if it works. And/or try a different compiler. I heard all + sorts of stories about various flavours of GNU C (and other + compilers) generating bad code for + bzip2, and I've run across two + such examples myself.

    +

    2.7.X versions of GNU C are known to generate bad code + from time to time, at high optimisation levels. If you get + problems, try using the flags + -O2 + -fomit-frame-pointer + -fno-strength-reduce. You + should specifically not use + -funroll-loops.

    +

    You may notice that the Makefile runs six tests as part + of the build process. If the program passes all of these, it's + a pretty good (but not 100%) indication that the compiler has + done its job correctly.

    +
  • +
  • +

    If bzip2 + crashes randomly, and the crashes are not repeatable, you may + have a flaky memory subsystem. + bzip2 really hammers your + memory hierarchy, and if it's a bit marginal, you may get these + problems. Ditto if your disk or I/O subsystem is slowly + failing. Yup, this really does happen.

    +

    Try using a different machine of the same type, and see + if you can repeat the problem.

    +
  • +
  • This isn't really a bug, but ... If + bzip2 tells you your file is + corrupted on decompression, and you obtained the file via FTP, + there is a possibility that you forgot to tell FTP to do a + binary mode transfer. That absolutely will cause the file to + be non-decompressible. You'll have to transfer it + again.

  • +
+

If you've incorporated +libbzip2 into your own program +and are getting problems, please, please, please, check that the +parameters you are passing in calls to the library, are correct, +and in accordance with what the documentation says is allowable. +I have tried to make the library robust against such problems, +but I'm sure I haven't succeeded.

+

Finally, if the above comments don't help, you'll have to +send me a bug report. Now, it's just amazing how many people +will send me a bug report saying something like:

+
bzip2 crashed with segmentation fault on my machine
+

and absolutely nothing else. Needless to say, a such a +report is totally, utterly, completely and +comprehensively 100% useless; a waste of your time, my time, and +net bandwidth. With no details at all, there's no way +I can possibly begin to figure out what the problem is.

+

The rules of the game are: facts, facts, facts. Don't omit +them because "oh, they won't be relevant". At the bare +minimum:

+
Machine type.  Operating system version.  
+Exact version of bzip2 (do bzip2 -V).  
+Exact version of the compiler used.  
+Flags passed to the compiler.
+

However, the most important single thing that will help me +is the file that you were trying to compress or decompress at the +time the problem happened. Without that, my ability to do +anything more than speculate about the cause, is limited.

+
+
+
+

+4.4. Did you get the right package?

+
+
+

bzip2 is a resource hog. +It soaks up large amounts of CPU cycles and memory. Also, it +gives very large latencies. In the worst case, you can feed many +megabytes of uncompressed data into the library before getting +any compressed output, so this probably rules out applications +requiring interactive behaviour.

+

These aren't faults of my implementation, I hope, but more +an intrinsic property of the Burrows-Wheeler transform +(unfortunately). Maybe this isn't what you want.

+

If you want a compressor and/or library which is faster, +uses less memory but gets pretty good compression, and has +minimal latency, consider Jean-loup Gailly's and Mark Adler's +work, zlib-1.2.1 and +gzip-1.2.4. Look for them at +http://www.zlib.org and +http://www.gzip.org +respectively.

+

For something faster and lighter still, you might try Markus F +X J Oberhumer's LZO real-time +compression/decompression library, at +http://www.oberhumer.com/opensource.

+
+
+
+

+4.5. Further Reading

+
+
+

bzip2 is not research +work, in the sense that it doesn't present any new ideas. +Rather, it's an engineering exercise based on existing +ideas.

+

Four documents describe essentially all the ideas behind +bzip2:

+

Michael Burrows and D. J. Wheeler:
+  "A block-sorting lossless data compression algorithm"
+   10th May 1994. 
+   Digital SRC Research Report 124.
+   ftp://ftp.digital.com/pub/DEC/SRC/research-reports/SRC-124.ps.gz
+   If you have trouble finding it, try searching at the
+   New Zealand Digital Library, http://www.nzdl.org.
+
+Daniel S. Hirschberg and Debra A. LeLewer
+  "Efficient Decoding of Prefix Codes"
+   Communications of the ACM, April 1990, Vol 33, Number 4.
+   You might be able to get an electronic copy of this
+   from the ACM Digital Library.
+
+David J. Wheeler
+   Program bred3.c and accompanying document bred3.ps.
+   This contains the idea behind the multi-table Huffman coding scheme.
+   ftp://ftp.cl.cam.ac.uk/users/djw3/
+
+Jon L. Bentley and Robert Sedgewick
+  "Fast Algorithms for Sorting and Searching Strings"
+   Available from Sedgewick's web page,
+   www.cs.princeton.edu/~rs
+

+

The following paper gives valuable additional insights into +the algorithm, but is not immediately the basis of any code used +in bzip2.

+

Peter Fenwick:
+   Block Sorting Text Compression
+   Proceedings of the 19th Australasian Computer Science Conference,
+     Melbourne, Australia.  Jan 31 - Feb 2, 1996.
+   ftp://ftp.cs.auckland.ac.nz/pub/peter-f/ACSC96paper.ps

+

Kunihiko Sadakane's sorting algorithm, mentioned above, is +available from:

+

http://naomi.is.s.u-tokyo.ac.jp/~sada/papers/Sada98b.ps.gz
+

+

The Manber-Myers suffix array construction algorithm is +described in a paper available from:

+

http://www.cs.arizona.edu/people/gene/PAPERS/suffix.ps
+

+

Finally, the following papers document some +investigations I made into the performance of sorting +and decompression algorithms:

+

Julian Seward
+   On the Performance of BWT Sorting Algorithms
+   Proceedings of the IEEE Data Compression Conference 2000
+     Snowbird, Utah.  28-30 March 2000.
+
+Julian Seward
+   Space-time Tradeoffs in the Inverse B-W Transform
+   Proceedings of the IEEE Data Compression Conference 2001
+     Snowbird, Utah.  27-29 March 2001.
+

+
+
+
+ diff --git a/commands/bzip2-1.0.3/manual.pdf b/commands/bzip2-1.0.3/manual.pdf new file mode 100644 index 0000000000000000000000000000000000000000..394b8092565f6f365992436a3412367576af20ef GIT binary patch literal 207093 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

HJFsrFZWbe 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�C~7HVE6~kwWM)UMf}2dMXmtr@z

W2HX5OME_2GcX!4pMZ@uE_zFf!DTFj;yu# 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 5.9778 Tj +72 214.963 Td +(recovered_data) 83.6892 Tj +[1 0 0 1 155.686 214.963] cm +0 g +0 G +[1 0 0 1 -155.686 -214.963] cm +[1 0 0 1 0 0] Tm +0 0 Td +158.177 214.963 Td +/F128_0 9.963 Tf +(--) 6.63536 Tj +-250 TJm +(lists) 16.0604 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(\002les) 16.6083 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(corr) 16.0404 Tj +1 TJm +(ect) 11.6169 Tj +-250 TJm +(order) 21.0219 Tj +55 TJm +(.) 2.49075 Tj +[1 0 0 1 72 213.797] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -203.834] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 193.045 Td +/F130_0 9.963 Tf +(bzip2recover) 71.7336 Tj +[1 0 0 1 143.731 193.045] cm +0 g +0 G +[1 0 0 1 -143.731 -193.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +145.93 193.045 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-221 TJm +(be) 9.40507 Tj +-220 TJm +(of) 8.29918 Tj +-221 TJm +(most) 19.378 Tj +-220 TJm +(use) 13.2807 Tj +-221 TJm +(dealing) 29.3311 Tj +-221 TJm +(with) 17.7142 Tj +-220 TJm +(lar) 10.511 Tj +18 TJm +(ge) 9.40507 Tj +[1 0 0 1 307.229 193.045] cm +0 g +0 G +[1 0 0 1 -307.229 -193.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +307.229 193.045 Td +/F130_0 9.963 Tf +(.bz2) 23.9112 Tj +[1 0 0 1 331.14 193.045] cm +0 g +0 G +[1 0 0 1 -331.14 -193.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +333.338 193.045 Td +/F128_0 9.963 Tf +(\002les,) 19.0991 Tj +-226 TJm +(as) 8.29918 Tj +-221 TJm +(these) 20.474 Tj +-221 TJm +(will) 15.5024 Tj +-220 TJm +(contain) 29.3311 Tj +-221 TJm +(man) 17.1563 Tj +15 TJm +(y) 4.9815 Tj +-221 TJm +(b) 4.9815 Tj +1 TJm +(locks.) 23.5226 Tj +-601 TJm +(It) 6.08739 Tj +-220 TJm +(is) 6.64532 Tj +-221 TJm +(clearly) 27.1093 Tj +72 181.09 Td +(futile) 21.0319 Tj +-289 TJm +(to) 7.75121 Tj +-289 TJm +(use) 13.2807 Tj +-289 TJm +(it) 5.53943 Tj +-289 TJm +(on) 9.963 Tj +-289 TJm +(damaged) 35.9664 Tj +-289 TJm +(single-block) 49.2571 Tj +-289 TJm +(\002les,) 19.0991 Tj +-299 TJm +(since) 20.474 Tj +-289 TJm +(a) 4.42357 Tj +-289 TJm +(damaged) 35.9664 Tj +-289 TJm +(block) 22.1378 Tj +-289 TJm +(cannot) 26.5614 Tj +-289 TJm +(be) 9.40507 Tj +-289 TJm +(reco) 17.1463 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(ered) 17.1463 Tj +1 TJm +(.) 2.49075 Tj +-855 TJm +(If) 6.63536 Tj +-289 TJm +(you) 14.9445 Tj +-289 TJm +(wish) 18.8201 Tj +-289 TJm +(to) 7.75121 Tj +-289 TJm +(minimise) 37.0922 Tj +72 169.134 Td +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-320 TJm +(potential) 34.8705 Tj +-319 TJm +(data) 16.5984 Tj +-320 TJm +(loss) 15.5024 Tj +-320 TJm +(through) 30.9949 Tj +-319 TJm +(media) 24.3496 Tj +-320 TJm +(or) 8.29918 Tj +-320 TJm +(transmission) 50.3729 Tj +-319 TJm +(errors,) 25.7245 Tj +-337 TJm +(you) 14.9445 Tj +-320 TJm +(might) 23.2536 Tj +-320 TJm +(consider) 33.7546 Tj +-319 TJm +(compressing) 50.363 Tj +-320 TJm +(with) 17.7142 Tj +-320 TJm +(a) 4.42357 Tj +-319 TJm +(smaller) 29.3311 Tj +-320 TJm +(block) 22.1378 Tj +72 157.179 Td +(size.) 17.9832 Tj +[1 0 0 1 72 157.08] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -147.117] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 122.426 Td +/F121_0 20.659 Tf +(2.7.) 34.4592 Tj +-278 TJm +(PERFORMANCE) 161.822 Tj +-278 TJm +(NO) 30.9885 Tj +40 TJm +(TES) 40.1818 Tj +[1 0 0 1 72 122.168] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -112.206] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 100.509 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-304 TJm +(sorting) 27.6772 Tj +-305 TJm +(phase) 22.6858 Tj +-304 TJm +(of) 8.29918 Tj +-305 TJm +(compression) 50.363 Tj +-304 TJm +(g) 4.9815 Tj +5 TJm +(athers) 23.7916 Tj +-305 TJm +(together) 32.6488 Tj +-304 TJm +(similar) 27.6772 Tj +-304 TJm +(strings) 26.5713 Tj +-305 TJm +(in) 7.75121 Tj +-304 TJm +(the) 12.1748 Tj +-305 TJm +(\002le.) 15.2235 Tj +-947 TJm +(Because) 33.1967 Tj +-305 TJm +(of) 8.29918 Tj +-304 TJm +(this,) 16.8873 Tj +-318 TJm +(\002les) 16.6083 Tj +-305 TJm +(contai) 24.3496 Tj +1 TJm +(ning) 17.7142 Tj +-305 TJm +(v) 4.9815 Tj +15 TJm +(ery) 12.7228 Tj +72 88.553 Td +(long) 17.7142 Tj +-286 TJm +(run) 13.2807 Tj +1 TJm +(s) 3.87561 Tj +-286 TJm +(of) 8.29918 Tj +-286 TJm +(repeated) 33.7447 Tj +-285 TJm +(symbols,) 35.7074 Tj +-295 TJm +(l) 2.76971 Tj +1 TJm +(ik) 7.75121 Tj +10 TJm +(e) 4.42357 Tj +-286 TJm +("aabaabaabaab) 59.3795 Tj +-285 TJm +(...") 11.5372 Tj +-572 TJm +(\(repea) 24.8876 Tj +1 TJm +(ted) 12.1748 Tj +-286 TJm +(se) 8.29918 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(eral) 14.9345 Tj +-286 TJm +(hun) 14.9445 Tj +1 TJm +(dred) 17.7043 Tj +-286 TJm +(times\)) 24.9075 Tj +-286 TJm +(m) 7.75121 Tj +1 TJm +(ay) 9.40507 Tj +-286 TJm +(compress) 37.6303 Tj +-286 TJm +(m) 7.75121 Tj +1 TJm +(ore) 12.7228 Tj +-286 TJm +(slo) 11.6268 Tj +25 TJm +(wly) 14.9445 Tj +72 76.598 Td +(than) 17.1563 Tj +-321 TJm +(normal.) 30.7159 Tj +-525 TJm +(V) 7.19329 Tj +111 TJm +(ersions) 28.2252 Tj +-321 TJm +(0.9.5) 19.926 Tj +-322 TJm +(and) 14.3866 Tj +-322 TJm +(a) 4.42357 Tj +1 TJm +(bo) 9.963 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-322 TJm +(f) 3.31768 Tj +10 TJm +(are) 12.1648 Tj +-321 TJm +(much) 22.1378 Tj +-322 TJm +(better) 22.6858 Tj +-321 TJm +(than) 17.1563 Tj +-322 TJm +(pre) 12.7228 Tj +25 TJm +(vious) 21.5898 Tj +-321 TJm +(v) 4.9815 Tj +15 TJm +(ersions) 28.2252 Tj +-322 TJm +(in) 7.75121 Tj +-321 TJm +(this) 14.3965 Tj +-322 TJm +(respect.) 30.706 Tj +-1049 TJm +(The) 15.4925 Tj +-322 TJm +(ratio) 18.2622 Tj +-321 TJm +(between) 33.1967 Tj +[1 0 0 1 72 50.852] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 43.063 -6.755] cm +0 g +0 G +[1 0 0 1 -496.332 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +539.395 50.951 Td +/F128_0 9.963 Tf +(6) 4.9815 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 10 10 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 105.519 -6.755] cm +0 g +0 G +[1 0 0 1 -371.59 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +477.109 749.245 Td +/F128_0 9.963 Tf +(Ho) 12.1748 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(bzip2) 22.1378 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -540 -741.554] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(w) 7.19329 Tj +10 TJm +(orst-case) 35.4085 Tj +-289 TJm +(and) 14.3866 Tj +-290 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(erage-c) 29.3111 Tj +1 TJm +(ase) 12.7228 Tj +-290 TJm +(compression) 50.363 Tj +-289 TJm +(time) 17.7142 Tj +-289 TJm +(is) 6.64532 Tj +-290 TJm +(in) 7.75121 Tj +-289 TJm +(the) 12.1748 Tj +-290 TJm +(re) 7.74125 Tj +15 TJm +(gion) 17.7142 Tj +-289 TJm +(of) 8.29918 Tj +-289 TJm +(10:1.) 20.205 Tj +-857 TJm +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-289 TJm +(pre) 12.7228 Tj +25 TJm +(vious) 21.5898 Tj +-290 TJm +(v) 4.9815 Tj +15 TJm +(ersions,) 30.7159 Tj +-299 TJm +(this) 14.3965 Tj +-289 TJm +(\002gure) 23.2437 Tj +-290 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-289 TJm +(more) 20.474 Tj +72 698.082 Td +(lik) 10.5209 Tj +10 TJm +(e) 4.42357 Tj +-250 TJm +(100:1.) 25.1865 Tj +-620 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-250 TJm +(can) 13.8286 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(the) 12.1748 Tj +[1 0 0 1 186.002 698.082] cm +0 g +0 G +[1 0 0 1 -186.002 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +186.002 698.082 Td +/F130_0 9.963 Tf +(-vvvv) 29.889 Tj +[1 0 0 1 215.89 698.082] cm +0 g +0 G +[1 0 0 1 -215.89 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +218.38 698.082 Td +/F128_0 9.963 Tf +(option) 25.4654 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(monitor) 31.5528 Tj +-250 TJm +(progress) 33.7546 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(g) 4.9815 Tj +1 TJm +(reat) 14.9345 Tj +-250 TJm +(detail,) 24.6285 Tj +-250 TJm +(if) 6.08739 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ant.) 14.6655 Tj +[1 0 0 1 72 695.925] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -685.963] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 676.164 Td +/F128_0 9.963 Tf +(Decompression) 61.9798 Tj +-250 TJm +(speed) 22.6858 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(unaf) 17.7043 Tj +26 TJm +(fected) 24.3396 Tj +-250 TJm +(by) 9.963 Tj +-250 TJm +(these) 20.474 Tj +-250 TJm +(phenomena.) 48.4202 Tj +[1 0 0 1 72 674.008] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -664.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 654.247 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 101.888 654.247] cm +0 g +0 G +[1 0 0 1 -101.888 -654.247] cm +[1 0 0 1 0 0] Tm +0 0 Td +104.863 654.247 Td +/F128_0 9.963 Tf +(usually) 28.7831 Tj +-298 TJm +(allocates) 34.8605 Tj +-299 TJm +(se) 8.29918 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(eral) 14.9345 Tj +-298 TJm +(me) 12.1748 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(abytes) 25.4555 Tj +-299 TJm +(of) 8.29918 Tj +-298 TJm +(memory) 33.2067 Tj +-299 TJm +(to) 7.75121 Tj +-298 TJm +(operate) 29.3211 Tj +-299 TJm +(in,) 10.242 Tj +-311 TJm +(and) 14.3866 Tj +-298 TJm +(then) 17.1563 Tj +-299 TJm +(char) 17.1463 Tj +18 TJm +(ges) 13.2807 Tj +-298 TJm +(all) 9.963 Tj +-299 TJm +(o) 4.9815 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-298 TJm +(it) 5.53943 Tj +-299 TJm +(in) 7.75121 Tj +-298 TJm +(a) 4.42357 Tj +-299 TJm +(f) 3.31768 Tj +10 TJm +(airly) 18.2622 Tj +-299 TJm +(r) 3.31768 Tj +1 TJm +(andom) 27.1193 Tj +72 642.291 Td +(f) 3.31768 Tj +10 TJm +(ashion.) 28.5041 Tj +-743 TJm +(This) 17.7142 Tj +-270 TJm +(means) 25.4555 Tj +-271 TJm +(t) 2.76971 Tj +1 TJm +(hat) 12.1748 Tj +-271 TJm +(performance,) 52.8338 Tj +-275 TJm +(both) 17.7142 Tj +-271 TJm +(for) 11.6169 Tj +-270 TJm +(compressing) 50.363 Tj +-270 TJm +(and) 14.3866 Tj +-271 TJm +(decompressing,) 62.2588 Tj +-275 TJm +(is) 6.64532 Tj +-271 TJm +(la) 7.19329 Tj +1 TJm +(r) 3.31768 Tj +18 TJm +(gely) 17.1563 Tj +-271 TJm +(determined) 44.8235 Tj +-270 TJm +(by) 9.963 Tj +-271 TJm +(the) 12.1748 Tj +-270 TJm +(speed) 22.6858 Tj +72 630.336 Td +(at) 7.19329 Tj +-294 TJm +(which) 24.3496 Tj +-294 TJm +(your) 18.2622 Tj +-294 TJm +(machine) 33.7546 Tj +-294 TJm +(can) 13.8286 Tj +-294 TJm +(service) 28.2152 Tj +-294 TJm +(cache) 22.6758 Tj +-294 TJm +(misses.) 29.0621 Tj +-442 TJm +(Because) 33.1967 Tj +-294 TJm +(of) 8.29918 Tj +-295 TJm +(t) 2.76971 Tj +1 TJm +(his,) 14.1176 Tj +-306 TJm +(smal) 18.8201 Tj +1 TJm +(l) 2.76971 Tj +-295 TJm +(chang) 23.7916 Tj +1 TJm +(es) 8.29918 Tj +-295 TJm +(to) 7.75121 Tj +-294 TJm +(the) 12.1748 Tj +-294 TJm +(code) 18.8101 Tj +-294 TJm +(to) 7.75121 Tj +-294 TJm +(reduce) 26.5514 Tj +-294 TJm +(the) 12.1748 Tj +-294 TJm +(miss) 18.2721 Tj +-294 TJm +(rate) 14.9345 Tj +72 618.381 Td +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-253 TJm +(been) 18.8101 Tj +-253 TJm +(observ) 26.5614 Tj +15 TJm +(ed) 9.40507 Tj +-253 TJm +(to) 7.75121 Tj +-253 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-253 TJm +(disproportionately) 73.0587 Tj +-253 TJm +(la) 7.19329 Tj +1 TJm +(r) 3.31768 Tj +18 TJm +(ge) 9.40507 Tj +-253 TJm +(performance) 50.343 Tj +-253 TJm +(impro) 23.8016 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(ements.) 30.7159 Tj +-638 TJm +(I) 3.31768 Tj +-253 TJm +(imagine) 32.1008 Tj +[1 0 0 1 438.909 618.381] cm +0 g +0 G +[1 0 0 1 -438.909 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +438.909 618.381 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 468.797 618.381] cm +0 g +0 G +[1 0 0 1 -468.797 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +471.318 618.381 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-253 TJm +(perform) 32.0908 Tj +-253 TJm +(best) 16.0504 Tj +72 606.426 Td +(on) 9.963 Tj +-250 TJm +(machines) 37.6303 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(v) 4.9815 Tj +15 TJm +(ery) 12.7228 Tj +-250 TJm +(lar) 10.511 Tj +18 TJm +(ge) 9.40507 Tj +-250 TJm +(c) 4.42357 Tj +1 TJm +(aches.) 24.6186 Tj +[1 0 0 1 72 604.269] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -594.306] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 571.673 Td +/F121_0 20.659 Tf +(2.8.) 34.4592 Tj +-278 TJm +(CA) 29.8316 Tj +80 TJm +(VEA) 42.4749 Tj +90 TJm +(TS) 26.4022 Tj +[1 0 0 1 72 571.415] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -561.452] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 549.755 Td +/F128_0 9.963 Tf +(I/O) 13.2807 Tj +-268 TJm +(error) 19.3581 Tj +-267 TJm +(messages) 37.6303 Tj +-268 TJm +(are) 12.1648 Tj +-267 TJm +(not) 12.7327 Tj +-268 TJm +(as) 8.29918 Tj +-268 TJm +(helpful) 28.2252 Tj +-267 TJm +(as) 8.29918 Tj +-268 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-268 TJm +(could) 22.1378 Tj +-267 TJm +(be.) 11.8958 Tj +[1 0 0 1 293.313 549.755] cm +0 g +0 G +[1 0 0 1 -293.313 -549.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +293.313 549.755 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 323.201 549.755] cm +0 g +0 G +[1 0 0 1 -323.201 -549.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +325.868 549.755 Td +/F128_0 9.963 Tf +(tries) 17.1563 Tj +-268 TJm +(hard) 17.7043 Tj +-267 TJm +(to) 7.75121 Tj +-268 TJm +(detect) 23.7916 Tj +-268 TJm +(I/O) 13.2807 Tj +-267 TJm +(errors) 23.2337 Tj +-268 TJm +(and) 14.3866 Tj +-267 TJm +(e) 4.42357 Tj +15 TJm +(xit) 10.5209 Tj +-268 TJm +(cleanly) 28.7731 Tj +65 TJm +(,) 2.49075 Tj +-272 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-268 TJm +(the) 12.1748 Tj +72 537.8 Td +(details) 26.0134 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(what) 19.3681 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(problem) 33.2067 Tj +-249 TJm +(is) 6.64532 Tj +-250 TJm +(sometimes) 42.6217 Tj +-250 TJm +(seem) 20.474 Tj +-250 TJm +(rather) 23.2337 Tj +-250 TJm +(misleading.) 46.2184 Tj +[1 0 0 1 72 535.643] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -525.681] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 515.882 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-280 TJm +(manu) 22.1378 Tj +1 TJm +(al) 7.19329 Tj +-280 TJm +(page) 18.8101 Tj +-280 TJm +(pertains) 31.5429 Tj +-279 TJm +(to) 7.75121 Tj +-280 TJm +(v) 4.9815 Tj +15 TJm +(ersion) 24.3496 Tj +-279 TJm +(1.0.3) 19.926 Tj +-280 TJm +(of) 8.29918 Tj +[1 0 0 1 256.84 515.882] cm +0 g +0 G +[1 0 0 1 -256.84 -515.882] cm +[1 0 0 1 0 0] Tm +0 0 Td +256.84 515.882 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 286.727 515.882] cm +0 g +0 G +[1 0 0 1 -286.727 -515.882] cm +[1 0 0 1 0 0] Tm +0 0 Td +286.727 515.882 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-798 TJm +(Compressed) 49.2571 Tj +-280 TJm +(da) 9.40507 Tj +1 TJm +(ta) 7.19329 Tj +-280 TJm +(created) 28.7632 Tj +-280 TJm +(by) 9.963 Tj +-279 TJm +(this) 14.3965 Tj +-280 TJm +(v) 4.9815 Tj +15 TJm +(ersion) 24.3496 Tj +-279 TJm +(is) 6.64532 Tj +-280 TJm +(entirely) 30.437 Tj +-280 TJm +(forw) 18.8101 Tj +11 TJm +(ards) 16.5984 Tj +72 503.927 Td +(and) 14.3866 Tj +-294 TJm +(backw) 26.0034 Tj +10 TJm +(ards) 16.5984 Tj +-294 TJm +(compatible) 44.2756 Tj +-295 TJm +(wit) 12.7327 Tj +1 TJm +(h) 4.9815 Tj +-295 TJm +(the) 12.1748 Tj +-294 TJm +(pre) 12.7228 Tj +25 TJm +(vious) 21.5898 Tj +-294 TJm +(public) 24.9075 Tj +-294 TJm +(releases,) 34.0236 Tj +-306 TJm +(v) 4.9815 Tj +15 TJm +(ersions) 28.2252 Tj +-294 TJm +(0.1pl2,) 27.6772 Tj +-305 TJm +(0.9.0) 19.926 Tj +-294 TJm +(and) 14.3866 Tj +-295 TJm +(0.9.5,) 22.4168 Tj +-305 TJm +(1.0.0,) 22.4168 Tj +-305 TJm +(1.0.1) 19.926 Tj +-295 TJm +(and) 14.3866 Tj +-294 TJm +(1.0.2,) 22.4168 Tj +72 491.972 Td +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-282 TJm +(with) 17.7142 Tj +-283 TJm +(the) 12.1748 Tj +-282 TJm +(follo) 18.8201 Tj +25 TJm +(wing) 19.926 Tj +-282 TJm +(e) 4.42357 Tj +15 TJm +(xception:) 37.0823 Tj +-375 TJm +(0.9.0) 19.926 Tj +-282 TJm +(and) 14.3866 Tj +-282 TJm +(abo) 14.3866 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-283 TJm +(can) 13.8286 Tj +-282 TJm +(correctly) 35.4085 Tj +-282 TJm +(decompress) 47.0353 Tj +-282 TJm +(multiple) 33.2166 Tj +-283 TJm +(concatena) 39.8321 Tj +1 TJm +(ted) 12.1748 Tj +-283 TJm +(compressed) 47.0353 Tj +-282 TJm +(\002les.) 19.0991 Tj +72 480.017 Td +(0.1pl2) 25.1865 Tj +-250 TJm +(cannot) 26.5614 Tj +-250 TJm +(do) 9.963 Tj +-250 TJm +(this;) 17.1662 Tj +-250 TJm +(it) 5.53943 Tj +-250 TJm +(will) 15.5024 Tj +-249 TJm +(stop) 16.6083 Tj +-250 TJm +(after) 18.2522 Tj +-250 TJm +(decompressing) 59.768 Tj +-250 TJm +(just) 14.3965 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(\002rst) 15.5024 Tj +-250 TJm +(\002le) 12.7327 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(strea) 18.8101 Tj +1 TJm +(m.) 10.242 Tj +[1 0 0 1 72 477.86] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -467.897] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 458.099 Td +/F130_0 9.963 Tf +(bzip2recover) 71.7336 Tj +[1 0 0 1 143.731 458.099] cm +0 g +0 G +[1 0 0 1 -143.731 -458.099] cm +[1 0 0 1 0 0] Tm +0 0 Td +146.174 458.099 Td +/F128_0 9.963 Tf +(v) 4.9815 Tj +15 TJm +(ersions) 28.2252 Tj +-245 TJm +(prior) 19.3681 Tj +-245 TJm +(to) 7.75121 Tj +-245 TJm +(1.0.2) 19.926 Tj +-245 TJm +(used) 18.2622 Tj +-245 TJm +(32-bit) 23.8016 Tj +-245 TJm +(inte) 14.9445 Tj +15 TJm +(gers) 16.5984 Tj +-245 TJm +(to) 7.75121 Tj +-246 TJm +(repre) 20.464 Tj +1 TJm +(sent) 16.0504 Tj +-246 TJm +(bit) 10.5209 Tj +-245 TJm +(positions) 35.9864 Tj +-245 TJm +(in) 7.75121 Tj +-245 TJm +(compressed) 47.0353 Tj +-245 TJm +(\002les,) 19.0991 Tj +-246 TJm +(so) 8.85711 Tj +-245 TJm +(it) 5.53943 Tj +-245 TJm +(could) 22.1378 Tj +72 446.144 Td +(not) 12.7327 Tj +-383 TJm +(handle) 26.5614 Tj +-384 TJm +(compressed) 47.0353 Tj +-383 TJm +(\002les) 16.6083 Tj +-384 TJm +(more) 20.474 Tj +-383 TJm +(than) 17.1563 Tj +-384 TJm +(51) 9.963 Tj +1 TJm +(2) 4.9815 Tj +-384 TJm +(me) 12.1748 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(abytes) 25.4555 Tj +-383 TJm +(long.) 20.205 Tj +-1421 TJm +(V) 7.19329 Tj +111 TJm +(ersions) 28.2252 Tj +-384 TJm +(1.0.2) 19.926 Tj +-383 TJm +(and) 14.3866 Tj +-384 TJm +(abo) 14.3866 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-383 TJm +(use) 13.2807 Tj +-384 TJm +(64-bit) 23.8016 Tj +-383 TJm +(ints) 14.3965 Tj +-384 TJm +(on) 9.963 Tj +-383 TJm +(some) 21.0319 Tj +72 434.189 Td +(platforms) 38.1882 Tj +-245 TJm +(which) 24.3496 Tj +-246 TJm +(su) 8.85711 Tj +1 TJm +(pport) 21.0319 Tj +-246 TJm +(them) 19.926 Tj +-245 TJm +(\(GNU) 24.8975 Tj +-245 TJm +(supported) 39.2941 Tj +-246 TJm +(tar) 10.511 Tj +18 TJm +(gets,) 18.5411 Tj +-246 TJm +(and) 14.3866 Tj +-245 TJm +(W) 9.40507 Tj +40 TJm +(indo) 17.7142 Tj +25 TJm +(ws\).) 16.8773 Tj +-309 TJm +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-245 TJm +(establish) 34.8705 Tj +-245 TJm +(whether) 32.0908 Tj +-245 TJm +(or) 8.29918 Tj +-246 TJm +(not) 12.7327 Tj +[1 0 0 1 468.269 434.189] cm +0 g +0 G +[1 0 0 1 -468.269 -434.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +468.269 434.189 Td +/F130_0 9.963 Tf +(bzip2recover) 71.7336 Tj +[1 0 0 1 540 434.189] cm +0 g +0 G +[1 0 0 1 -540 -434.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 422.233 Td +/F128_0 9.963 Tf +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-255 TJm +(b) 4.9815 Tj +20 TJm +(uilt) 13.2906 Tj +-255 TJm +(with) 17.7142 Tj +-255 TJm +(such) 18.2622 Tj +-255 TJm +(a) 4.42357 Tj +-255 TJm +(limitation,) 41.2468 Tj +-256 TJm +(run) 13.2807 Tj +-255 TJm +(it) 5.53943 Tj +-255 TJm +(without) 30.4469 Tj +-255 TJm +(ar) 7.74125 Tj +18 TJm +(guments.) 36.2554 Tj +-325 TJm +(In) 8.29918 Tj +-255 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-255 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +1 TJm +(t) 2.76971 Tj +-255 TJm +(you) 14.9445 Tj +-255 TJm +(can) 13.8286 Tj +-255 TJm +(b) 4.9815 Tj +20 TJm +(uild) 15.5024 Tj +-255 TJm +(yourself) 32.6488 Tj +-255 TJm +(an) 9.40507 Tj +-255 TJm +(unlimited) 38.1981 Tj +-255 TJm +(v) 4.9815 Tj +15 TJm +(ersion) 24.3496 Tj +-255 TJm +(if) 6.08739 Tj +72 410.278 Td +(you) 14.9445 Tj +-250 TJm +(can) 13.8286 Tj +-250 TJm +(recompile) 39.842 Tj +-250 TJm +(it) 5.53943 Tj +-250 TJm +(with) 17.7142 Tj +[1 0 0 1 176.318 410.278] cm +0 g +0 G +[1 0 0 1 -176.318 -410.278] cm +[1 0 0 1 0 0] Tm +0 0 Td +176.318 410.278 Td +/F130_0 9.963 Tf +(MaybeUInt64) 65.7558 Tj +[1 0 0 1 242.071 410.278] cm +0 g +0 G +[1 0 0 1 -242.071 -410.278] cm +[1 0 0 1 0 0] Tm +0 0 Td +244.562 410.278 Td +/F128_0 9.963 Tf +(set) 11.0689 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(an) 9.40507 Tj +-250 TJm +(unsigned) 35.9764 Tj +-250 TJm +(64-bit) 23.8016 Tj +-249 TJm +(inte) 14.9445 Tj +15 TJm +(ger) 12.7228 Tj +55 TJm +(.) 2.49075 Tj +[1 0 0 1 72 408.121] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -398.159] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 375.525 Td +/F121_0 20.659 Tf +(2.9.) 34.4592 Tj +-278 TJm +(A) 14.9158 Tj +50 TJm +(UTHOR) 73.4427 Tj +[1 0 0 1 72 375.267] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -365.305] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 353.608 Td +/F128_0 9.963 Tf +(Julian) 23.8016 Tj +-250 TJm +(Se) 9.963 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(ard,) 15.2135 Tj +[1 0 0 1 132.801 353.608] cm +0 g +0 G +[1 0 0 1 -132.801 -353.608] cm +[1 0 0 1 0 0] Tm +0 0 Td +132.801 353.608 Td +/F130_0 9.963 Tf +(jseward@bzip.org) 95.6448 Tj +[1 0 0 1 228.443 353.608] cm +0 g +0 G +[1 0 0 1 -156.443 -1.564] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -342.081] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 331.69 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-299 TJm +(ideas) 20.474 Tj +-300 TJm +(embodied) 39.2941 Tj +-299 TJm +(in) 7.75121 Tj +[1 0 0 1 166.942 331.69] cm +0 g +0 G +[1 0 0 1 -166.942 -331.69] cm +[1 0 0 1 0 0] Tm +0 0 Td +166.942 331.69 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 196.83 331.69] cm +0 g +0 G +[1 0 0 1 -196.83 -331.69] cm +[1 0 0 1 0 0] Tm +0 0 Td +199.813 331.69 Td +/F128_0 9.963 Tf +(are) 12.1648 Tj +-299 TJm +(due) 14.3866 Tj +-300 TJm +(to) 7.75121 Tj +-299 TJm +(\(at) 10.511 Tj +-300 TJm +(least\)) 21.5799 Tj +-299 TJm +(the) 12.1748 Tj +-299 TJm +(follo) 18.8201 Tj +25 TJm +(wing) 19.926 Tj +-300 TJm +(people:) 29.3311 Tj +-408 TJm +(Michael) 32.6488 Tj +-300 TJm +(Burro) 23.2437 Tj +25 TJm +(ws) 11.0689 Tj +-299 TJm +(and) 14.3866 Tj +-300 TJm +(D) 7.19329 Tj +1 TJm +(a) 4.42357 Tj +20 TJm +(vid) 12.7327 Tj +-300 TJm +(Wheeler) 33.7447 Tj +-299 TJm +(\(for) 14.9345 Tj +72 319.735 Td +(the) 12.1748 Tj +-312 TJm +(block) 22.1378 Tj +-313 TJm +(s) 3.87561 Tj +1 TJm +(orting) 23.8016 Tj +-313 TJm +(transformati) 48.6991 Tj +1 TJm +(on\),) 15.7714 Tj +-328 TJm +(Da) 11.6169 Tj +20 TJm +(vid) 12.7327 Tj +-313 TJm +(Whee) 23.2337 Tj +1 TJm +(ler) 10.511 Tj +-313 TJm +(\(ag) 12.7228 Tj +5 TJm +(ain,) 14.6655 Tj +-328 TJm +(for) 11.6169 Tj +-312 TJm +(the) 12.1748 Tj +-312 TJm +(Huf) 15.4925 Tj +25 TJm +(fman) 20.474 Tj +-312 TJm +(coder\),) 27.9363 Tj +-328 TJm +(Peter) 20.474 Tj +-312 TJm +(Fenwick) 34.3126 Tj +-313 TJm +(\(for) 14.9345 Tj +-312 TJm +(the) 12.1748 Tj +-312 TJm +(structured) 39.842 Tj +72 307.779 Td +(coding) 27.1193 Tj +-325 TJm +(model) 24.9075 Tj +-326 TJm +(in) 7.75121 Tj +-325 TJm +(the) 12.1748 Tj +-326 TJm +(origin) 23.8016 Tj +1 TJm +(al) 7.19329 Tj +[1 0 0 1 191.156 307.779] cm +0 g +0 G +[1 0 0 1 -191.156 -307.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +191.156 307.779 Td +/F130_0 9.963 Tf +(bzip) 23.9112 Tj +[1 0 0 1 215.067 307.779] cm +0 g +0 G +[1 0 0 1 -215.067 -307.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +215.067 307.779 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-344 TJm +(and) 14.3866 Tj +-326 TJm +(man) 17.1563 Tj +15 TJm +(y) 4.9815 Tj +-325 TJm +(re\002nements\),) 52.2958 Tj +-344 TJm +(and) 14.3866 Tj +-326 TJm +(Alistair) 29.889 Tj +-325 TJm +(Mof) 17.1563 Tj +25 TJm +(f) 3.31768 Tj +10 TJm +(at,) 9.68404 Tj +-344 TJm +(Radford) 32.6488 Tj +-326 TJm +(Ne) 11.6169 Tj +1 TJm +(al) 7.19329 Tj +-326 TJm +(and) 14.3866 Tj +-325 TJm +(Ian) 12.7228 Tj +-326 TJm +(W) 9.40507 Tj +40 TJm +(itten) 17.7142 Tj +-325 TJm +(\(for) 14.9345 Tj +72 295.824 Td +(the) 12.1748 Tj +-277 TJm +(arithmetic) 40.4 Tj +-277 TJm +(coder) 22.1278 Tj +-276 TJm +(in) 7.75121 Tj +-277 TJm +(the) 12.1748 Tj +-277 TJm +(original) 30.9949 Tj +[1 0 0 1 214.171 295.824] cm +0 g +0 G +[1 0 0 1 -214.171 -295.824] cm +[1 0 0 1 0 0] Tm +0 0 Td +214.171 295.824 Td +/F130_0 9.963 Tf +(bzip) 23.9112 Tj +[1 0 0 1 238.082 295.824] cm +0 g +0 G +[1 0 0 1 -238.082 -295.824] cm +[1 0 0 1 0 0] Tm +0 0 Td +238.082 295.824 Td +/F128_0 9.963 Tf +(\).) 5.80843 Tj +-782 TJm +(I) 3.31768 Tj +-276 TJm +(am) 12.1748 Tj +-277 TJm +(much) 22.1378 Tj +-277 TJm +(indebted) 34.3126 Tj +-277 TJm +(for) 11.6169 Tj +-277 TJm +(their) 18.2622 Tj +-277 TJm +(help,) 19.647 Tj +-283 TJm +(support) 29.889 Tj +-277 TJm +(and) 14.3866 Tj +-277 TJm +(advice.) 28.4942 Tj +-781 TJm +(See) 14.3866 Tj +-277 TJm +(the) 12.1748 Tj +-277 TJm +(manual) 29.3311 Tj +72 283.869 Td +(in) 7.75121 Tj +-330 TJm +(the) 12.1748 Tj +-330 TJm +(source) 26.0034 Tj +-329 TJm +(distrib) 25.4654 Tj +20 TJm +(ution) 20.4839 Tj +-330 TJm +(for) 11.6169 Tj +-330 TJm +(pointers) 32.1008 Tj +-330 TJm +(to) 7.75121 Tj +-330 TJm +(sour) 17.1563 Tj +1 TJm +(ces) 12.7228 Tj +-330 TJm +(of) 8.29918 Tj +-330 TJm +(documentation.) 61.7108 Tj +-1099 TJm +(Christian) 36.5343 Tj +-330 TJm +(v) 4.9815 Tj +20 TJm +(on) 9.963 Tj +-330 TJm +(Roques) 29.889 Tj +-330 TJm +(encou) 23.7916 Tj +1 TJm +(raged) 22.1278 Tj +-330 TJm +(me) 12.1748 Tj +-330 TJm +(to) 7.75121 Tj +-330 TJm +(look) 17.7142 Tj +72 271.914 Td +(for) 11.6169 Tj +-271 TJm +(f) 3.31768 Tj +10 TJm +(aster) 18.8101 Tj +-271 TJm +(sorting) 27.6772 Tj +-271 TJm +(algorithms,) 45.1125 Tj +-276 TJm +(so) 8.85711 Tj +-271 TJm +(as) 8.29918 Tj +-271 TJm +(to) 7.75121 Tj +-271 TJm +(speed) 22.6858 Tj +-271 TJm +(up) 9.963 Tj +-271 TJm +(compression.) 52.8537 Tj +-746 TJm +(Bela) 18.2622 Tj +-271 TJm +(Lubkin) 28.7831 Tj +-271 TJm +(encouraged) 45.9195 Tj +-271 TJm +(me) 12.1748 Tj +-271 TJm +(to) 7.75121 Tj +-271 TJm +(impro) 23.8016 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-271 TJm +(the) 12.1748 Tj +-271 TJm +(w) 7.19329 Tj +10 TJm +(orst-case) 35.4085 Tj +72 259.959 Td +(compression) 50.363 Tj +-340 TJm +(performan) 41.4959 Tj +1 TJm +(ce.) 11.3379 Tj +-580 TJm +(Donna) 26.5614 Tj +-340 TJm +(Robinson) 38.1981 Tj +-340 TJm +(XMLise) 33.2067 Tj +1 TJm +(d) 4.9815 Tj +-340 TJm +(the) 12.1748 Tj +-340 TJm +(documentation.) 61.7108 Tj +-580 TJm +(Man) 18.2622 Tj +15 TJm +(y) 4.9815 Tj +-339 TJm +(people) 26.5614 Tj +-340 TJm +(sent) 16.0504 Tj +-340 TJm +(patches,) 32.3698 Tj +-362 TJm +(helped) 26.5614 Tj +-340 TJm +(with) 17.7142 Tj +72 248.004 Td +(portability) 41.5158 Tj +-250 TJm +(problems,) 39.573 Tj +-250 TJm +(lent) 14.9445 Tj +-250 TJm +(m) 7.75121 Tj +1 TJm +(achines,) 32.3698 Tj +-250 TJm +(g) 4.9815 Tj +5 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(advice) 26.0034 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(were) 19.3581 Tj +-250 TJm +(generally) 37.0723 Tj +-250 TJm +(helpful.) 30.7159 Tj +[1 0 0 1 72 245.847] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -194.995] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.585] cm +0 g +0 G +0 g +0 G +[1 0 0 1 43.063 -6.486] cm +0 g +0 G +[1 0 0 1 -496.332 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +539.395 50.951 Td +/F128_0 9.963 Tf +(7) 4.9815 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 11 11 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 4.384 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 141.644 0] cm +0 g +0 G +[1 0 0 1 -141.644 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -13.948] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -15.037 0] cm +0 g +0 G +[1 0 0 1 -468 -21.554] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -720] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 701.916 Td +/F121_0 24.79 Tf +(3.) 20.6749 Tj +-556 TJm +(Pr) 26.1782 Tj +20 TJm +(ogramming) 134.982 Tj +-278 TJm +(with) 49.58 Tj +[1 0 0 1 330.484 701.916] cm +0 g +0 G +[1 0 0 1 -330.484 -701.916] cm +[1 0 0 1 0 0] Tm +0 0 Td +330.484 701.916 Td +/F387_0 24.79 Tf +(libbzip2) 118.992 Tj +[1 0 0 1 449.477 701.916] cm +0 g +0 G +[1 0 0 1 -377.477 -5.516] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -14.944] cm +0 g +0 G +[1 0 0 1 -72 -671.493] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 656.35 Td +/F121_0 17.215 Tf +(T) 10.5184 Tj +80 TJm +(ab) 20.0899 Tj +10 TJm +(le) 14.3573 Tj +-278 TJm +(of) 16.251 Tj +-278 TJm +(Contents) 74.5926 Tj +[1 0 0 1 72 647.528] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -11.74] cm +0 g +0 G +[1 0 0 1 -72 -635.788] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 635.788 Td +/F128_0 9.963 Tf +(3.1.) 14.9445 Tj +-310 TJm +(T) 6.08739 Tj +80 TJm +(op-le) 20.474 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(structure) 34.8605 Tj +[1 0 0 1 164.921 635.788] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -169.902 -635.788] cm +[1 0 0 1 0 0] Tm +0 0 Td +179.997 635.788 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 511.108 635.788] cm +0 g +0 G +[1 0 0 1 -511.108 -635.788] cm +[1 0 0 1 0 0] Tm +0 0 Td +511.108 635.788 Td +/F128_0 9.963 Tf +(8) 4.9815 Tj +[1 0 0 1 516.09 635.788] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.799] cm +0 g +0 G +[1 0 0 1 -119.821 -623.832] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 623.832 Td +/F128_0 9.963 Tf +(3.1.1.) 22.4168 Tj +-310 TJm +(Lo) 11.0689 Tj +25 TJm +(w-le) 17.7043 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(summary) 37.0823 Tj +[1 0 0 1 225.195 623.832] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -230.176 -623.832] cm +[1 0 0 1 0 0] Tm +0 0 Td +238.915 623.832 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 511.108 623.832] cm +0 g +0 G +[1 0 0 1 -511.108 -623.832] cm +[1 0 0 1 0 0] Tm +0 0 Td +511.108 623.832 Td +/F128_0 9.963 Tf +(9) 4.9815 Tj +[1 0 0 1 516.09 623.832] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.156] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.799] cm +0 g +0 G +[1 0 0 1 -119.821 -611.877] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 611.877 Td +/F128_0 9.963 Tf +(3.1.2.) 22.4168 Tj +-310 TJm +(High-le) 30.437 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(summary) 37.0823 Tj +[1 0 0 1 227.107 611.877] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -232.089 -611.877] cm +[1 0 0 1 0 0] Tm +0 0 Td +242.085 611.877 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 511.108 611.877] cm +0 g +0 G +[1 0 0 1 -511.108 -611.877] cm +[1 0 0 1 0 0] Tm +0 0 Td +511.108 611.877 Td +/F128_0 9.963 Tf +(9) 4.9815 Tj +[1 0 0 1 516.09 611.877] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -599.922] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 599.922 Td +/F128_0 9.963 Tf +(3.1.3.) 22.4168 Tj +-310 TJm +(Utility) 26.0234 Tj +-250 TJm +(functions) 37.0823 Tj +-250 TJm +(sum) 16.6083 Tj +1 TJm +(mary) 20.474 Tj +[1 0 0 1 250.489 599.922] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -255.471 -599.922] cm +[1 0 0 1 0 0] Tm +0 0 Td +264.846 599.922 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 511.108 599.922] cm +0 g +0 G +[1 0 0 1 -511.108 -599.922] cm +[1 0 0 1 0 0] Tm +0 0 Td +511.108 599.922 Td +/F128_0 9.963 Tf +(9) 4.9815 Tj +[1 0 0 1 516.09 599.922] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -587.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 587.967 Td +/F128_0 9.963 Tf +(3.2.) 14.9445 Tj +-310 TJm +(Error) 21.0219 Tj +-250 TJm +(handling) 34.8705 Tj +[1 0 0 1 148.413 587.967] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -153.394 -587.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +162.611 587.967 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 587.967] cm +0 g +0 G +[1 0 0 1 -506.127 -587.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 587.967 Td +/F128_0 9.963 Tf +(10) 9.963 Tj +[1 0 0 1 516.09 587.967] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -576.012] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 576.012 Td +/F128_0 9.963 Tf +(3.3.) 14.9445 Tj +-310 TJm +(Lo) 11.0689 Tj +25 TJm +(w-le) 17.7043 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace) 13.2707 Tj +[1 0 0 1 167.571 576.012] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -172.552 -576.012] cm +[1 0 0 1 0 0] Tm +0 0 Td +181.045 576.012 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 576.012] cm +0 g +0 G +[1 0 0 1 -506.127 -576.012] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 576.012 Td +/F128_0 9.963 Tf +(11) 9.963 Tj +[1 0 0 1 516.09 576.012] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -0.1] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -11.855] cm +0 g +0 G +[1 0 0 1 -119.821 -564.057] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 564.057 Td +/F128_0 9.963 Tf +(3.3.1.) 22.4168 Tj +-310 TJm +(BZ2_bzCompressInit) 85.7914 Tj +[1 0 0 1 231.112 564.057] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -236.094 -564.057] cm +[1 0 0 1 0 0] Tm +0 0 Td +246.025 564.057 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 564.057] cm +0 g +0 G +[1 0 0 1 -506.127 -564.057] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 564.057 Td +/F128_0 9.963 Tf +(11) 9.963 Tj +[1 0 0 1 516.09 564.057] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.799] cm +0 g +0 G +[1 0 0 1 -119.821 -552.101] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 552.101 Td +/F128_0 9.963 Tf +(3.3.2.) 22.4168 Tj +-310 TJm +(BZ2_bzCompress) 71.9528 Tj +[1 0 0 1 217.275 552.101] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -222.256 -552.101] cm +[1 0 0 1 0 0] Tm +0 0 Td +232.464 552.101 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 552.101] cm +0 g +0 G +[1 0 0 1 -506.127 -552.101] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 552.101 Td +/F128_0 9.963 Tf +(13) 9.963 Tj +[1 0 0 1 516.09 552.101] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.156] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.799] cm +0 g +0 G +[1 0 0 1 -119.821 -540.146] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 540.146 Td +/F128_0 9.963 Tf +(3.3.3.) 22.4168 Tj +-310 TJm +(BZ2_bzCompressEnd) 88.0032 Tj +[1 0 0 1 233.324 540.146] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -238.306 -540.146] cm +[1 0 0 1 0 0] Tm +0 0 Td +247.131 540.146 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 540.146] cm +0 g +0 G +[1 0 0 1 -506.127 -540.146] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 540.146 Td +/F128_0 9.963 Tf +(16) 9.963 Tj +[1 0 0 1 516.09 540.146] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -528.191] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 528.191 Td +/F128_0 9.963 Tf +(3.3.4.) 22.4168 Tj +-310 TJm +(BZ2_bzDecompressIni) 92.4168 Tj +1 TJm +(t) 2.76971 Tj +[1 0 0 1 240.507 528.191] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -245.488 -528.191] cm +[1 0 0 1 0 0] Tm +0 0 Td +255.15 528.191 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 528.191] cm +0 g +0 G +[1 0 0 1 -506.127 -528.191] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 528.191 Td +/F128_0 9.963 Tf +(16) 9.963 Tj +[1 0 0 1 516.09 528.191] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -516.236] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 516.236 Td +/F128_0 9.963 Tf +(3.3.5.) 22.4168 Tj +-310 TJm +(BZ2_bzDecompress) 81.3479 Tj +[1 0 0 1 226.669 516.236] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -231.651 -516.236] cm +[1 0 0 1 0 0] Tm +0 0 Td +241.589 516.236 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 516.236] cm +0 g +0 G +[1 0 0 1 -506.127 -516.236] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 516.236 Td +/F128_0 9.963 Tf +(17) 9.963 Tj +[1 0 0 1 516.09 516.236] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -504.281] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 504.281 Td +/F128_0 9.963 Tf +(3.3.6.) 22.4168 Tj +-310 TJm +(BZ2_bzDecompressEn) 92.4168 Tj +1 TJm +(d) 4.9815 Tj +[1 0 0 1 242.719 504.281] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -247.7 -504.281] cm +[1 0 0 1 0 0] Tm +0 0 Td +256.256 504.281 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 504.281] cm +0 g +0 G +[1 0 0 1 -506.127 -504.281] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 504.281 Td +/F128_0 9.963 Tf +(18) 9.963 Tj +[1 0 0 1 516.09 504.281] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -492.326] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 492.326 Td +/F128_0 9.963 Tf +(3.4.) 14.9445 Tj +-310 TJm +(High-le) 30.437 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace) 13.2707 Tj +[1 0 0 1 169.483 492.326] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -174.465 -492.326] cm +[1 0 0 1 0 0] Tm +0 0 Td +184.216 492.326 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 492.326] cm +0 g +0 G +[1 0 0 1 -506.127 -492.326] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 492.326 Td +/F128_0 9.963 Tf +(18) 9.963 Tj +[1 0 0 1 516.09 492.326] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.799] cm +0 g +0 G +[1 0 0 1 -119.821 -480.37] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 480.37 Td +/F128_0 9.963 Tf +(3.4.1.) 22.4168 Tj +-310 TJm +(BZ2_bzReadOpen) 74.1546 Tj +[1 0 0 1 219.476 480.37] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -224.458 -480.37] cm +[1 0 0 1 0 0] Tm +0 0 Td +233.565 480.37 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 480.37] cm +0 g +0 G +[1 0 0 1 -506.127 -480.37] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 480.37 Td +/F128_0 9.963 Tf +(19) 9.963 Tj +[1 0 0 1 516.09 480.37] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.156] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.799] cm +0 g +0 G +[1 0 0 1 -119.821 -468.415] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 468.415 Td +/F128_0 9.963 Tf +(3.4.2.) 22.4168 Tj +-310 TJm +(BZ2_bzRead) 52.5748 Tj +[1 0 0 1 197.898 468.415] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -202.879 -468.415] cm +[1 0 0 1 0 0] Tm +0 0 Td +211.706 468.415 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 468.415] cm +0 g +0 G +[1 0 0 1 -506.127 -468.415] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 468.415 Td +/F128_0 9.963 Tf +(20) 9.963 Tj +[1 0 0 1 516.09 468.415] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -1.18] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -10.775] cm +0 g +0 G +[1 0 0 1 -119.821 -456.46] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 456.46 Td +/F128_0 9.963 Tf +(3.4.3.) 22.4168 Tj +-310 TJm +(BZ2_bzReadGetUnuse) 92.4168 Tj +1 TJm +(d) 4.9815 Tj +[1 0 0 1 242.719 456.46] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -247.7 -456.46] cm +[1 0 0 1 0 0] Tm +0 0 Td +256.256 456.46 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 456.46] cm +0 g +0 G +[1 0 0 1 -506.127 -456.46] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 456.46 Td +/F128_0 9.963 Tf +(21) 9.963 Tj +[1 0 0 1 516.09 456.46] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -1.181] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -10.774] cm +0 g +0 G +[1 0 0 1 -119.821 -444.505] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 444.505 Td +/F128_0 9.963 Tf +(3.4.4.) 22.4168 Tj +-310 TJm +(BZ2_bzReadClose) 75.2705 Tj +[1 0 0 1 220.592 444.505] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -225.573 -444.505] cm +[1 0 0 1 0 0] Tm +0 0 Td +234.123 444.505 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 444.505] cm +0 g +0 G +[1 0 0 1 -506.127 -444.505] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 444.505 Td +/F128_0 9.963 Tf +(22) 9.963 Tj +[1 0 0 1 516.09 444.505] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -1.181] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -10.774] cm +0 g +0 G +[1 0 0 1 -119.821 -432.55] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 432.55 Td +/F128_0 9.963 Tf +(3.4.5.) 22.4168 Tj +-310 TJm +(BZ2_bzWriteOpen) 76.3664 Tj +[1 0 0 1 221.688 432.55] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -226.669 -432.55] cm +[1 0 0 1 0 0] Tm +0 0 Td +236.885 432.55 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 432.55] cm +0 g +0 G +[1 0 0 1 -506.127 -432.55] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 432.55 Td +/F128_0 9.963 Tf +(22) 9.963 Tj +[1 0 0 1 516.09 432.55] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -420.595] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 420.595 Td +/F128_0 9.963 Tf +(3.4.6.) 22.4168 Tj +-310 TJm +(BZ2_bzWrite) 54.7865 Tj +[1 0 0 1 200.109 420.595] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -205.09 -420.595] cm +[1 0 0 1 0 0] Tm +0 0 Td +215.026 420.595 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 420.595] cm +0 g +0 G +[1 0 0 1 -506.127 -420.595] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 420.595 Td +/F128_0 9.963 Tf +(23) 9.963 Tj +[1 0 0 1 516.09 420.595] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -1.181] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -10.775] cm +0 g +0 G +[1 0 0 1 -119.821 -408.639] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 408.639 Td +/F128_0 9.963 Tf +(3.4.7.) 22.4168 Tj +-310 TJm +(BZ2_bzWriteClose) 77.4823 Tj +[1 0 0 1 222.804 408.639] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -227.785 -408.639] cm +[1 0 0 1 0 0] Tm +0 0 Td +237.443 408.639 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 408.639] cm +0 g +0 G +[1 0 0 1 -506.127 -408.639] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 408.639 Td +/F128_0 9.963 Tf +(23) 9.963 Tj +[1 0 0 1 516.09 408.639] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -1.18] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -10.775] cm +0 g +0 G +[1 0 0 1 -119.821 -396.684] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 396.684 Td +/F128_0 9.963 Tf +(3.4.8.) 22.4168 Tj +-310 TJm +(Handling) 37.0823 Tj +-250 TJm +(embedded) 40.9479 Tj +-250 TJm +(com) 17.1563 Tj +1 TJm +(pressed) 29.879 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(streams) 30.437 Tj +[1 0 0 1 327.38 396.684] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -332.362 -396.684] cm +[1 0 0 1 0 0] Tm +0 0 Td +342.865 396.684 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 396.684] cm +0 g +0 G +[1 0 0 1 -506.127 -396.684] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 396.684 Td +/F128_0 9.963 Tf +(24) 9.963 Tj +[1 0 0 1 516.09 396.684] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -384.729] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 384.729 Td +/F128_0 9.963 Tf +(3.4.9.) 22.4168 Tj +-310 TJm +(Standard) 35.4185 Tj +-250 TJm +(\002le-reading/) 48.6991 Tj +1 TJm +(writing) 28.7831 Tj +-250 TJm +(code) 18.8101 Tj +[1 0 0 1 282.011 384.729] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -286.992 -384.729] cm +[1 0 0 1 0 0] Tm +0 0 Td +295.827 384.729 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 384.729] cm +0 g +0 G +[1 0 0 1 -506.127 -384.729] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 384.729 Td +/F128_0 9.963 Tf +(25) 9.963 Tj +[1 0 0 1 516.09 384.729] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -372.774] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 372.774 Td +/F128_0 9.963 Tf +(3.5.) 14.9445 Tj +-310 TJm +(Utility) 26.0234 Tj +-250 TJm +(functions) 37.0823 Tj +[1 0 0 1 155.625 372.774] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -160.607 -372.774] cm +[1 0 0 1 0 0] Tm +0 0 Td +170.645 372.774 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 372.774] cm +0 g +0 G +[1 0 0 1 -506.127 -372.774] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 372.774 Td +/F128_0 9.963 Tf +(26) 9.963 Tj +[1 0 0 1 516.09 372.774] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -360.819] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 360.819 Td +/F128_0 9.963 Tf +(3.5.1.) 22.4168 Tj +-310 TJm +(BZ2_bzBuf) 47.0453 Tj +25 TJm +(fT) 9.40507 Tj +80 TJm +(oBuf) 19.926 Tj +25 TJm +(fCom) 22.6957 Tj +1 TJm +(press) 20.474 Tj +[1 0 0 1 263.571 360.819] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -268.552 -360.819] cm +[1 0 0 1 0 0] Tm +0 0 Td +277.751 360.819 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 360.819] cm +0 g +0 G +[1 0 0 1 -506.127 -360.819] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 360.819 Td +/F128_0 9.963 Tf +(26) 9.963 Tj +[1 0 0 1 516.09 360.819] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -348.864] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 348.864 Td +/F128_0 9.963 Tf +(3.5.2.) 22.4168 Tj +-310 TJm +(BZ2_bzBuf) 47.0453 Tj +25 TJm +(fT) 9.40507 Tj +80 TJm +(oBuf) 19.926 Tj +25 TJm +(fDeco) 24.3396 Tj +1 TJm +(mpress) 28.2252 Tj +[1 0 0 1 272.965 348.864] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -277.947 -348.864] cm +[1 0 0 1 0 0] Tm +0 0 Td +286.876 348.864 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 348.864] cm +0 g +0 G +[1 0 0 1 -506.127 -348.864] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 348.864 Td +/F128_0 9.963 Tf +(27) 9.963 Tj +[1 0 0 1 516.09 348.864] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.799] cm +0 g +0 G +[1 0 0 1 -72 -336.908] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 336.908 Td +/F128_0 9.963 Tf +(3.6.) 14.9445 Tj +-310 TJm +(zlib) 14.9445 Tj +-250 TJm +(compatibility) 53.1426 Tj +-250 TJm +(funct) 20.474 Tj +1 TJm +(ions) 16.6083 Tj +[1 0 0 1 200.178 336.908] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -205.159 -336.908] cm +[1 0 0 1 0 0] Tm +0 0 Td +215.06 336.908 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 336.908] cm +0 g +0 G +[1 0 0 1 -506.127 -336.908] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 336.908 Td +/F128_0 9.963 Tf +(28) 9.963 Tj +[1 0 0 1 516.09 336.908] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.156] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.799] cm +0 g +0 G +[1 0 0 1 -72 -324.953] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 324.953 Td +/F128_0 9.963 Tf +(3.7.) 14.9445 Tj +-310 TJm +(Using) 23.8016 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(library) 26.5614 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(std) 11.6268 Tj +1 TJm +(io-free) 26.5514 Tj +-250 TJm +(en) 9.40507 Tj +40 TJm +(vironment) 40.9579 Tj +[1 0 0 1 267.824 324.953] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -272.805 -324.953] cm +[1 0 0 1 0 0] Tm +0 0 Td +282.092 324.953 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 324.953] cm +0 g +0 G +[1 0 0 1 -506.127 -324.953] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 324.953 Td +/F128_0 9.963 Tf +(28) 9.963 Tj +[1 0 0 1 516.09 324.953] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -312.998] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 312.998 Td +/F128_0 9.963 Tf +(3.7.1.) 22.4168 Tj +-310 TJm +(Getting) 29.889 Tj +-250 TJm +(rid) 11.0689 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(stdio) 19.378 Tj +[1 0 0 1 221.429 312.998] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -226.41 -312.998] cm +[1 0 0 1 0 0] Tm +0 0 Td +236.755 312.998 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 312.998] cm +0 g +0 G +[1 0 0 1 -506.127 -312.998] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 312.998 Td +/F128_0 9.963 Tf +(29) 9.963 Tj +[1 0 0 1 516.09 312.998] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 47.821 -9.798] cm +0 g +0 G +[1 0 0 1 -119.821 -301.043] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 301.043 Td +/F128_0 9.963 Tf +(3.7.2.) 22.4168 Tj +-310 TJm +(Critical) 29.889 Tj +-250 TJm +(error) 19.3581 Tj +-250 TJm +(handlin) 29.889 Tj +1 TJm +(g) 4.9815 Tj +[1 0 0 1 234.42 301.043] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -239.401 -301.043] cm +[1 0 0 1 0 0] Tm +0 0 Td +249.892 301.043 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 301.043] cm +0 g +0 G +[1 0 0 1 -506.127 -301.043] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 301.043 Td +/F128_0 9.963 Tf +(29) 9.963 Tj +[1 0 0 1 516.09 301.043] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -289.088] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 289.088 Td +/F128_0 9.963 Tf +(3.8.) 14.9445 Tj +-310 TJm +(Making) 30.9949 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(W) 9.40507 Tj +40 TJm +(indo) 17.7142 Tj +25 TJm +(ws) 11.0689 Tj +-250 TJm +(DLL) 19.3681 Tj +[1 0 0 1 189.827 289.088] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -194.809 -289.088] cm +[1 0 0 1 0 0] Tm +0 0 Td +203.243 289.088 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 289.088] cm +0 g +0 G +[1 0 0 1 -506.127 -289.088] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 289.088 Td +/F128_0 9.963 Tf +(29) 9.963 Tj +[1 0 0 1 516.09 289.088] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -267.006] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 257.207 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-250 TJm +(chapter) 29.3211 Tj +-250 TJm +(describes) 37.0723 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(pr) 8.29918 Tj +1 TJm +(ogramming) 45.9394 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace) 13.2707 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 282.448 257.207] cm +0 g +0 G +[1 0 0 1 -282.448 -257.207] cm +[1 0 0 1 0 0] Tm +0 0 Td +282.448 257.207 Td +/F130_0 9.963 Tf +(libbzip2) 47.8224 Tj +[1 0 0 1 330.269 257.207] cm +0 g +0 G +[1 0 0 1 -330.269 -257.207] cm +[1 0 0 1 0 0] Tm +0 0 Td +330.269 257.207 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 255.05] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -245.088] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 235.289 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-273 TJm +(general) 29.3211 Tj +-272 TJm +(background) 47.0353 Tj +-273 TJm +(informati) 37.0823 Tj +1 TJm +(on,) 12.4538 Tj +-279 TJm +(particularly) 45.9294 Tj +-272 TJm +(about) 22.1378 Tj +-273 TJm +(memory) 33.2067 Tj +-272 TJm +(use) 13.2807 Tj +-273 TJm +(and) 14.3866 Tj +-273 TJm +(perfor) 24.3396 Tj +1 TJm +(mance) 26.0034 Tj +-273 TJm +(aspects,) 31.2639 Tj +-278 TJm +(you') 18.2622 Tj +50 TJm +(d) 4.9815 Tj +-273 TJm +(be) 9.40507 Tj +-272 TJm +(well) 17.1563 Tj +-273 TJm +(advised) 30.437 Tj +72 223.334 Td +(to) 7.75121 Tj +-250 TJm +(read) 17.1463 Tj +[1 0 0 1 101.878 223.334] cm +0 0 1 rg +0 0 1 RG +[1 0 0 1 -101.878 -223.334] cm +[1 0 0 1 0 0] Tm +0 0 Td +101.878 223.334 Td +/F128_0 9.963 Tf +(Ho) 12.1748 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(bzip2) 22.1378 Tj +[1 0 0 1 171.636 223.334] cm +0 g +0 G +0 0 1 rg +0 0 1 RG +0 0 1 rg +0 0 1 RG +[1 0 0 1 -171.636 -223.334] cm +[1 0 0 1 0 0] Tm +0 0 Td +174.126 223.334 Td +/F128_0 9.963 Tf +([2]) 11.6169 Tj +[1 0 0 1 185.743 223.334] cm +0 0 1 rg +0 0 1 RG +0 g +0 G +[1 0 0 1 -185.743 -223.334] cm +[1 0 0 1 0 0] Tm +0 0 Td +188.233 223.334 Td +/F128_0 9.963 Tf +(as) 8.29918 Tj +-250 TJm +(well.) 19.647 Tj +[1 0 0 1 72 221.177] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -211.215] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 188.581 Td +/F121_0 20.659 Tf +(3.1.) 34.4592 Tj +-278 TJm +(T) 12.6226 Tj +80 TJm +(op-le) 49.3544 Tj +15 TJm +(vel) 28.716 Tj +-278 TJm +(structure) 89.5361 Tj +[1 0 0 1 72 184.305] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -174.343] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 166.664 Td +/F130_0 9.963 Tf +(libbzip2) 47.8224 Tj +[1 0 0 1 119.821 166.664] cm +0 g +0 G +[1 0 0 1 -119.821 -166.664] cm +[1 0 0 1 0 0] Tm +0 0 Td +123.608 166.664 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-380 TJm +(a) 4.42357 Tj +-380 TJm +(\003e) 9.963 Tj +15 TJm +(xible) 19.926 Tj +-380 TJm +(library) 26.5614 Tj +-380 TJm +(for) 11.6169 Tj +-381 TJm +(com) 17.1563 Tj +1 TJm +(pressing) 33.2067 Tj +-381 TJm +(an) 9.40507 Tj +1 TJm +(d) 4.9815 Tj +-381 TJm +(decompre) 39.2841 Tj +1 TJm +(ssing) 20.4839 Tj +-381 TJm +(data) 16.5984 Tj +-380 TJm +(in) 7.75121 Tj +-380 TJm +(the) 12.1748 Tj +[1 0 0 1 405.291 166.664] cm +0 g +0 G +[1 0 0 1 -405.291 -166.664] cm +[1 0 0 1 0 0] Tm +0 0 Td +405.291 166.664 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 435.179 166.664] cm +0 g +0 G +[1 0 0 1 -435.179 -166.664] cm +[1 0 0 1 0 0] Tm +0 0 Td +438.966 166.664 Td +/F128_0 9.963 Tf +(data) 16.5984 Tj +-380 TJm +(format.) 29.0521 Tj +-1401 TJm +(Although) 37.6402 Tj +72 154.708 Td +(packaged) 37.6203 Tj +-285 TJm +(as) 8.29918 Tj +-284 TJm +(a) 4.42357 Tj +-285 TJm +(single) 23.8016 Tj +-284 TJm +(entity) 22.6957 Tj +65 TJm +(,) 2.49075 Tj +-294 TJm +(it) 5.53943 Tj +-284 TJm +(helps) 21.0319 Tj +-285 TJm +(to) 7.75121 Tj +-285 TJm +(re) 7.74125 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(ard) 12.7228 Tj +-284 TJm +(the) 12.1748 Tj +-285 TJm +(library) 26.5614 Tj +-285 TJm +(a) 4.42357 Tj +1 TJm +(s) 3.87561 Tj +-285 TJm +(three) 19.916 Tj +-285 TJm +(separate) 32.6388 Tj +-284 TJm +(parts:) 22.1378 Tj +-380 TJm +(the) 12.1748 Tj +-284 TJm +(lo) 7.75121 Tj +25 TJm +(w) 7.19329 Tj +-285 TJm +(le) 7.19329 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-285 TJm +(i) 2.76971 Tj +1 TJm +(nterf) 18.8101 Tj +10 TJm +(ace,) 15.7615 Tj +-294 TJm +(and) 14.3866 Tj +-284 TJm +(the) 12.1748 Tj +-285 TJm +(high) 17.7142 Tj +72 142.753 Td +(le) 7.19329 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace,) 15.7615 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(some) 21.0319 Tj +-250 TJm +(uti) 10.5209 Tj +1 TJm +(lity) 13.2906 Tj +-250 TJm +(functions.) 39.573 Tj +[1 0 0 1 72 140.596] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -130.634] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 120.835 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-349 TJm +(structure) 34.8605 Tj +-349 TJm +(of) 8.29918 Tj +[1 0 0 1 141.082 120.835] cm +0 g +0 G +[1 0 0 1 -141.082 -120.835] cm +[1 0 0 1 0 0] Tm +0 0 Td +141.082 120.835 Td +/F130_0 9.963 Tf +(libbzip2) 47.8224 Tj +[1 0 0 1 188.903 120.835] cm +0 g +0 G +[1 0 0 1 -188.903 -120.835] cm +[1 0 0 1 0 0] Tm +0 0 Td +188.903 120.835 Td +/F128_0 9.963 Tf +(') 3.31768 Tj +55 TJm +(s) 3.87561 Tj +-349 TJm +(interf) 21.5799 Tj +10 TJm +(aces) 17.1463 Tj +-349 TJm +(is) 6.64532 Tj +-349 TJm +(similar) 27.6772 Tj +-349 TJm +(to) 7.75121 Tj +-349 TJm +(that) 14.9445 Tj +-349 TJm +(of) 8.29918 Tj +-349 TJm +(Jean-loup) 38.7361 Tj +-349 TJm +(Gailly') 28.2252 Tj +55 TJm +(s) 3.87561 Tj +-349 TJm +(an) 9.40507 Tj +1 TJm +(d) 4.9815 Tj +-350 TJm +(M) 8.85711 Tj +1 TJm +(ark) 12.7228 Tj +-349 TJm +(Adler') 26.0034 Tj +55 TJm +(s) 3.87561 Tj +-349 TJm +(e) 4.42357 Tj +15 TJm +(xcellent) 31.5429 Tj +[1 0 0 1 516.09 120.835] cm +0 g +0 G +[1 0 0 1 -516.09 -120.835] cm +[1 0 0 1 0 0] Tm +0 0 Td +516.09 120.835 Td +/F130_0 9.963 Tf +(zlib) 23.9112 Tj +[1 0 0 1 540 120.835] cm +0 g +0 G +[1 0 0 1 -540 -120.835] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 108.88 Td +/F128_0 9.963 Tf +(library) 26.5614 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 106.723] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -96.761] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 86.962 Td +/F128_0 9.963 Tf +(All) 12.7327 Tj +-242 TJm +(e) 4.42357 Tj +15 TJm +(xternally) 35.4185 Tj +-241 TJm +(visible) 26.5713 Tj +-242 TJm +(symbols) 33.2166 Tj +-242 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-241 TJm +(names) 25.4555 Tj +-242 TJm +(be) 9.40507 Tj +15 TJm +(ginning) 30.4469 Tj +[1 0 0 1 284.687 86.962] cm +0 g +0 G +[1 0 0 1 -284.687 -86.962] cm +[1 0 0 1 0 0] Tm +0 0 Td +284.687 86.962 Td +/F130_0 9.963 Tf +(BZ2_) 23.9112 Tj +[1 0 0 1 308.597 86.962] cm +0 g +0 G +[1 0 0 1 -308.597 -86.962] cm +[1 0 0 1 0 0] Tm +0 0 Td +308.597 86.962 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-615 TJm +(T) 6.08739 Tj +1 TJm +(his) 11.6268 Tj +-242 TJm +(is) 6.64532 Tj +-242 TJm +(ne) 9.40507 Tj +25 TJm +(w) 7.19329 Tj +-242 TJm +(in) 7.75121 Tj +-241 TJm +(v) 4.9815 Tj +15 TJm +(ersion) 24.3496 Tj +-242 TJm +(1.0.) 14.9445 Tj +-615 TJm +(The) 15.4925 Tj +-241 TJm +(intention) 35.4284 Tj +-242 TJm +(is) 6.64532 Tj +-242 TJm +(to) 7.75121 Tj +-241 TJm +(minimise) 37.0922 Tj +72 75.007 Td +(pollution) 35.9864 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(namespaces) 47.5833 Tj +-249 TJm +(of) 8.29918 Tj +-250 TJm +(library) 26.5614 Tj +-250 TJm +(clients.) 28.5041 Tj +[1 0 0 1 72 72.85] cm +0 g +0 G +[1 0 0 1 0 -21.998] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 4.384 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 43.064 -6.755] cm +0 g +0 G +[1 0 0 1 -498.225 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +541.288 50.951 Td +/F128_0 9.963 Tf +(8) 4.9815 Tj +[1 0 0 1 455.161 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.599 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -15.037 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 12 12 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 4.384 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -352.044 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +436.124 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip) 27.6772 Tj +1 TJm +(2) 4.9815 Tj +[1 0 0 1 267.964 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -15.037 0] cm +0 g +0 G +[1 0 0 1 -468 -21.554] cm +0 g +0 G +[1 0 0 1 -72 -720] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-250 TJm +(part) 15.4925 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(yo) 9.963 Tj +1 TJm +(u) 4.9815 Tj +-250 TJm +(need) 18.8101 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 240.567 710.037] cm +0 g +0 G +[1 0 0 1 -240.567 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +240.567 710.037 Td +/F130_0 9.963 Tf +(#include) 47.8224 Tj +-600 TJm +() 53.8002 Tj +[1 0 0 1 348.163 710.037] cm +0 g +0 G +[1 0 0 1 -348.163 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +350.654 710.037 Td +/F128_0 9.963 Tf +(into) 15.5024 Tj +-250 TJm +(your) 18.2622 Tj +-250 TJm +(sources.) 32.3698 Tj +[1 0 0 1 72 707.881] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -697.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 679.416 Td +/F121_0 17.215 Tf +(3.1.1.) 43.0719 Tj +-278 TJm +(Lo) 21.0367 Tj +15 TJm +(w-le) 33.4832 Tj +15 TJm +(vel) 23.9289 Tj +-278 TJm +(summar) 66.9664 Tj +-10 TJm +(y) 9.57154 Tj +[1 0 0 1 72 675.853] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -665.89] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 657.498 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-212 TJm +(interf) 21.5799 Tj +10 TJm +(ace) 13.2707 Tj +-212 TJm +(pro) 13.2807 Tj +15 TJm +(vides) 21.0319 Tj +-211 TJm +(services) 32.0908 Tj +-212 TJm +(for) 11.6169 Tj +-212 TJm +(compressing) 50.363 Tj +-212 TJm +(and) 14.3866 Tj +-212 TJm +(decompressi) 49.805 Tj +1 TJm +(ng) 9.963 Tj +-212 TJm +(data) 16.5984 Tj +-212 TJm +(in) 7.75121 Tj +-212 TJm +(memory) 33.2067 Tj +65 TJm +(.) 2.49075 Tj +-595 TJm +(There') 26.5514 Tj +55 TJm +(s) 3.87561 Tj +-211 TJm +(no) 9.963 Tj +-212 TJm +(pro) 13.2807 Tj +15 TJm +(vision) 24.3595 Tj +-212 TJm +(for) 11.6169 Tj +-212 TJm +(dealing) 29.3311 Tj +72 645.543 Td +(with) 17.7142 Tj +-213 TJm +(\002les,) 19.0991 Tj +-220 TJm +(streams) 30.437 Tj +-213 TJm +(or) 8.29918 Tj +-213 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-213 TJm +(other) 20.474 Tj +-213 TJm +(I/O) 13.2807 Tj +-213 TJm +(mechanisms,) 51.7478 Tj +-220 TJm +(just) 14.3965 Tj +-213 TJm +(straight) 29.889 Tj +-213 TJm +(memory-to-memory) 80.7999 Tj +-213 TJm +(w) 7.19329 Tj +10 TJm +(ork.) 15.7714 Tj +-595 TJm +(In) 8.29918 Tj +-213 TJm +(f) 3.31768 Tj +10 TJm +(act,) 14.1076 Tj +-220 TJm +(this) 14.3965 Tj +-213 TJm +(part) 15.4925 Tj +-213 TJm +(of) 8.29918 Tj +-213 TJm +(the) 12.1748 Tj +-213 TJm +(library) 26.5614 Tj +72 633.588 Td +(can) 13.8286 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(compiled) 37.0823 Tj +-250 TJm +(without) 30.4469 Tj +-250 TJm +(incl) 14.9445 Tj +1 TJm +(usion) 21.5898 Tj +-250 TJm +(of) 8.29918 Tj +[1 0 0 1 222.534 633.588] cm +0 g +0 G +[1 0 0 1 -222.534 -633.588] cm +[1 0 0 1 0 0] Tm +0 0 Td +222.534 633.588 Td +/F130_0 9.963 Tf +(stdio.h) 41.8446 Tj +[1 0 0 1 264.377 633.588] cm +0 g +0 G +[1 0 0 1 -264.377 -633.588] cm +[1 0 0 1 0 0] Tm +0 0 Td +264.377 633.588 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(which) 24.3496 Tj +-250 TJm +(may) 17.1563 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(helpful) 28.2252 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(emb) 17.1563 Tj +1 TJm +(edded) 23.7916 Tj +-250 TJm +(applications.) 50.6419 Tj +[1 0 0 1 72 631.431] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -621.469] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 611.67 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-250 TJm +(lo) 7.75121 Tj +25 TJm +(w-le) 17.7043 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(part) 15.4925 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(libra) 18.2622 Tj +1 TJm +(ry) 8.29918 Tj +-250 TJm +(has) 13.2807 Tj +-250 TJm +(no) 9.963 Tj +-250 TJm +(global) 24.9075 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(ariables) 30.9849 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(therefore) 35.9565 Tj +-250 TJm +(thread-safe.) 46.7464 Tj +[1 0 0 1 72 609.513] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -599.551] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 589.752 Td +/F128_0 9.963 Tf +(Six) 13.2906 Tj +-875 TJm +(routines) 32.1008 Tj +-876 TJm +(mak) 17.1563 Tj +10 TJm +(e) 4.42357 Tj +-875 TJm +(up) 9.963 Tj +-875 TJm +(the) 12.1748 Tj +-876 TJm +(lo) 7.75121 Tj +25 TJm +(w) 7.19329 Tj +-875 TJm +(le) 7.19329 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-875 TJm +(interf) 21.5799 Tj +10 TJm +(ace:) 16.0404 Tj +[1 0 0 1 308.791 589.752] cm +0 g +0 G +[1 0 0 1 -308.791 -589.752] cm +[1 0 0 1 0 0] Tm +0 0 Td +308.791 589.752 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 416.387 589.752] cm +0 g +0 G +[1 0 0 1 -416.387 -589.752] cm +[1 0 0 1 0 0] Tm +0 0 Td +416.387 589.752 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 429.158 589.752] cm +0 g +0 G +[1 0 0 1 -429.158 -589.752] cm +[1 0 0 1 0 0] Tm +0 0 Td +429.158 589.752 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 512.844 589.752] cm +0 g +0 G +[1 0 0 1 -512.844 -589.752] cm +[1 0 0 1 0 0] Tm +0 0 Td +512.844 589.752 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-1032 TJm +(and) 14.3866 Tj +[1 0 0 1 72 577.797] cm +0 g +0 G +[1 0 0 1 -72 -577.797] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 577.797 Td +/F130_0 9.963 Tf +(BZ2_bzCompressEnd) 101.623 Tj +[1 0 0 1 173.619 577.797] cm +0 g +0 G +[1 0 0 1 -173.619 -577.797] cm +[1 0 0 1 0 0] Tm +0 0 Td +186.15 577.797 Td +/F128_0 9.963 Tf +(for) 11.6169 Tj +-1258 TJm +(compression,) 52.8537 Tj +-1509 TJm +(and) 14.3866 Tj +-1258 TJm +(a) 4.42357 Tj +-1258 TJm +(correspond) 44.2656 Tj +1 TJm +(ing) 12.7327 Tj +-1258 TJm +(trio) 13.8386 Tj +[1 0 0 1 417.958 577.797] cm +0 g +0 G +[1 0 0 1 -417.958 -577.797] cm +[1 0 0 1 0 0] Tm +0 0 Td +417.958 577.797 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressInit) 119.556 Tj +[1 0 0 1 537.509 577.797] cm +0 g +0 G +[1 0 0 1 -537.509 -577.797] cm +[1 0 0 1 0 0] Tm +0 0 Td +537.509 577.797 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 72 565.842] cm +0 g +0 G +[1 0 0 1 -72 -565.842] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 565.842 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 167.641 565.842] cm +0 g +0 G +[1 0 0 1 -167.641 -565.842] cm +[1 0 0 1 0 0] Tm +0 0 Td +172.707 565.842 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 192.158 565.842] cm +0 g +0 G +[1 0 0 1 -192.158 -565.842] cm +[1 0 0 1 0 0] Tm +0 0 Td +192.158 565.842 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressEnd) 113.578 Tj +[1 0 0 1 305.732 565.842] cm +0 g +0 G +[1 0 0 1 -305.732 -565.842] cm +[1 0 0 1 0 0] Tm +0 0 Td +310.798 565.842 Td +/F128_0 9.963 Tf +(for) 11.6169 Tj +-508 TJm +(decompression.) 62.2588 Tj +-2171 TJm +(The) 15.4925 Tj +[1 0 0 1 431.918 565.842] cm +0 g +0 G +[1 0 0 1 -431.918 -565.842] cm +[1 0 0 1 0 0] Tm +0 0 Td +431.918 565.842 Td +/F130_0 9.963 Tf +(*Init) 29.889 Tj +[1 0 0 1 461.805 565.842] cm +0 g +0 G +[1 0 0 1 -461.805 -565.842] cm +[1 0 0 1 0 0] Tm +0 0 Td +466.871 565.842 Td +/F128_0 9.963 Tf +(functions) 37.0823 Tj +-508 TJm +(allocate) 30.9849 Tj +72 553.887 Td +(memory) 33.2067 Tj +-574 TJm +(f) 3.31768 Tj +1 TJm +(or) 8.29918 Tj +-574 TJm +(compression/decompression) 112.901 Tj +-573 TJm +(and) 14.3866 Tj +-574 TJm +(do) 9.963 Tj +-573 TJm +(other) 20.474 Tj +-574 TJm +(initialisations,) 56.1913 Tj +-654 TJm +(whilst) 24.3595 Tj +-574 TJm +(the) 12.1748 Tj +[1 0 0 1 419.503 553.887] cm +0 g +0 G +[1 0 0 1 -419.503 -553.887] cm +[1 0 0 1 0 0] Tm +0 0 Td +419.503 553.887 Td +/F130_0 9.963 Tf +(*End) 23.9112 Tj +[1 0 0 1 443.413 553.887] cm +0 g +0 G +[1 0 0 1 -443.413 -553.887] cm +[1 0 0 1 0 0] Tm +0 0 Td +449.128 553.887 Td +/F128_0 9.963 Tf +(functions) 37.0823 Tj +-573 TJm +(close) 20.474 Tj +-574 TJm +(do) 9.963 Tj +25 TJm +(wn) 12.1748 Tj +72 541.932 Td +(operations) 41.5059 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(release) 27.6573 Tj +-250 TJm +(mem) 19.926 Tj +1 TJm +(ory) 13.2807 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 539.775] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -529.812] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 520.014 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-303 TJm +(real) 14.9345 Tj +-303 TJm +(w) 7.19329 Tj +10 TJm +(ork) 13.2807 Tj +-303 TJm +(is) 6.64532 Tj +-303 TJm +(done) 19.3681 Tj +-303 TJm +(by) 9.963 Tj +[1 0 0 1 176.892 520.014] cm +0 g +0 G +[1 0 0 1 -176.892 -520.014] cm +[1 0 0 1 0 0] Tm +0 0 Td +176.892 520.014 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 260.578 520.014] cm +0 g +0 G +[1 0 0 1 -260.578 -520.014] cm +[1 0 0 1 0 0] Tm +0 0 Td +263.598 520.014 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 281.003 520.014] cm +0 g +0 G +[1 0 0 1 -281.003 -520.014] cm +[1 0 0 1 0 0] Tm +0 0 Td +281.003 520.014 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 376.645 520.014] cm +0 g +0 G +[1 0 0 1 -376.645 -520.014] cm +[1 0 0 1 0 0] Tm +0 0 Td +376.645 520.014 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-938 TJm +(These) 23.7916 Tj +-303 TJm +(compress) 37.6303 Tj +-303 TJm +(and) 14.3866 Tj +-303 TJm +(decompress) 47.0353 Tj +-303 TJm +(data) 16.5984 Tj +72 508.059 Td +(from) 19.3681 Tj +-205 TJm +(a) 4.42357 Tj +-205 TJm +(user) 16.5984 Tj +20 TJm +(-supplied) 37.0823 Tj +-205 TJm +(input) 20.4839 Tj +-205 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-205 TJm +(to) 7.75121 Tj +-205 TJm +(a) 4.42357 Tj +-206 TJm +(use) 13.2807 Tj +1 TJm +(r) 3.31768 Tj +20 TJm +(-supplied) 37.0823 Tj +-205 TJm +(output) 25.4654 Tj +-206 TJm +(b) 4.9815 Tj +20 TJm +(u) 4.9815 Tj +1 TJm +(f) 3.31768 Tj +25 TJm +(fer) 11.0589 Tj +55 TJm +(.) 2.49075 Tj +-591 TJm +(T) 6.08739 Tj +1 TJm +(hese) 17.7043 Tj +-206 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +1 TJm +(s) 3.87561 Tj +-206 TJm +(can) 13.8286 Tj +-205 TJm +(be) 9.40507 Tj +-205 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-205 TJm +(size;) 18.2622 Tj +-220 TJm +(arbitrary) 34.3026 Tj +-205 TJm +(quantities) 38.7461 Tj +-205 TJm +(of) 8.29918 Tj +72 496.104 Td +(data) 16.5984 Tj +-258 TJm +(are) 12.1648 Tj +-258 TJm +(handl) 22.1378 Tj +1 TJm +(ed) 9.40507 Tj +-258 TJm +(by) 9.963 Tj +-258 TJm +(making) 29.889 Tj +-258 TJm +(repeated) 33.7447 Tj +-258 TJm +(cal) 11.6169 Tj +1 TJm +(ls) 6.64532 Tj +-258 TJm +(to) 7.75121 Tj +-258 TJm +(these) 20.474 Tj +-258 TJm +(functions.) 39.573 Tj +-667 TJm +(This) 17.7142 Tj +-258 TJm +(is) 6.64532 Tj +-257 TJm +(a) 4.42357 Tj +-258 TJm +(\003e) 9.963 Tj +15 TJm +(xible) 19.926 Tj +-258 TJm +(mechanism) 45.3815 Tj +-258 TJm +(allo) 14.9445 Tj +25 TJm +(wing) 19.926 Tj +-257 TJm +(a) 4.42357 Tj +-258 TJm +(consumer) 38.7361 Tj +20 TJm +(-pull) 18.8201 Tj +72 484.148 Td +(style) 18.8201 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(acti) 14.3866 Tj +25 TJm +(vity) 15.5024 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(or) 8.29918 Tj +-250 TJm +(producer) 35.4085 Tj +20 TJm +(-p) 8.29918 Tj +1 TJm +(ush,) 16.3294 Tj +-250 TJm +(or) 8.29918 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(mixture) 30.9949 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(both.) 20.205 Tj +[1 0 0 1 72 481.992] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -472.029] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 453.527 Td +/F121_0 17.215 Tf +(3.1.2.) 43.0719 Tj +-278 TJm +(High-le) 58.3416 Tj +15 TJm +(vel) 23.9289 Tj +-278 TJm +(summar) 66.9664 Tj +-10 TJm +(y) 9.57154 Tj +[1 0 0 1 72 449.697] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -439.734] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 431.609 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-284 TJm +(interf) 21.5799 Tj +10 TJm +(ace) 13.2707 Tj +-284 TJm +(pro) 13.2807 Tj +15 TJm +(vides) 21.0319 Tj +-284 TJm +(some) 21.0319 Tj +-284 TJm +(handy) 24.3496 Tj +-284 TJm +(wrappers) 36.5144 Tj +-284 TJm +(around) 27.6673 Tj +-284 TJm +(the) 12.1748 Tj +-285 TJm +(lo) 7.75121 Tj +25 TJm +(w-l) 13.2807 Tj +1 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-285 TJm +(interf) 21.5799 Tj +10 TJm +(a) 4.42357 Tj +1 TJm +(ce) 8.84714 Tj +-285 TJm +(to) 7.75121 Tj +-284 TJm +(f) 3.31768 Tj +10 TJm +(acilitate) 31.5429 Tj +-284 TJm +(reading) 29.879 Tj +-284 TJm +(and) 14.3866 Tj +-284 TJm +(writing) 28.7831 Tj +[1 0 0 1 510.112 431.609] cm +0 g +0 G +[1 0 0 1 -510.112 -431.609] cm +[1 0 0 1 0 0] Tm +0 0 Td +510.112 431.609 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 540 431.609] cm +0 g +0 G +[1 0 0 1 -540 -431.609] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 419.654 Td +/F128_0 9.963 Tf +(format) 26.5614 Tj +-346 TJm +(\002les) 16.6083 Tj +-347 TJm +(\() 3.31768 Tj +[1 0 0 1 125.391 419.654] cm +0 g +0 G +[1 0 0 1 -125.391 -419.654] cm +[1 0 0 1 0 0] Tm +0 0 Td +125.391 419.654 Td +/F130_0 9.963 Tf +(.bz2) 23.9112 Tj +[1 0 0 1 149.301 419.654] cm +0 g +0 G +[1 0 0 1 -149.301 -419.654] cm +[1 0 0 1 0 0] Tm +0 0 Td +152.754 419.654 Td +/F128_0 9.963 Tf +(\002les\).) 22.4168 Tj +-1199 TJm +(The) 15.4925 Tj +-347 TJm +(routines) 32.1008 Tj +-346 TJm +(pro) 13.2807 Tj +15 TJm +(vide) 17.1563 Tj +-347 TJm +(hooks) 23.8016 Tj +-346 TJm +(to) 7.75121 Tj +-347 TJm +(f) 3.31768 Tj +10 TJm +(acilitate) 31.5429 Tj +-346 TJm +(reading) 29.879 Tj +-347 TJm +(\002les) 16.6083 Tj +-346 TJm +(in) 7.75121 Tj +-347 TJm +(which) 24.3496 Tj +-346 TJm +(the) 12.1748 Tj +[1 0 0 1 460.049 419.654] cm +0 g +0 G +[1 0 0 1 -460.049 -419.654] cm +[1 0 0 1 0 0] Tm +0 0 Td +460.049 419.654 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 489.937 419.654] cm +0 g +0 G +[1 0 0 1 -489.937 -419.654] cm +[1 0 0 1 0 0] Tm +0 0 Td +493.39 419.654 Td +/F128_0 9.963 Tf +(data) 16.5984 Tj +-346 TJm +(stream) 26.5614 Tj +72 407.699 Td +(is) 6.64532 Tj +-339 TJm +(embedded) 40.9479 Tj +-339 TJm +(within) 25.4654 Tj +-339 TJm +(some) 21.0319 Tj +-339 TJm +(lar) 10.511 Tj +18 TJm +(ger) 12.7228 Tj +20 TJm +(-scale) 23.2337 Tj +-339 TJm +(\002le) 12.7327 Tj +-339 TJm +(st) 6.64532 Tj +1 TJm +(ructure,) 30.706 Tj +-362 TJm +(or) 8.29918 Tj +-339 TJm +(where) 24.3396 Tj +-339 TJm +(there) 19.916 Tj +-339 TJm +(are) 12.1648 Tj +-339 TJm +(m) 7.75121 Tj +1 TJm +(ultiple) 25.4654 Tj +[1 0 0 1 400.941 407.699] cm +0 g +0 G +[1 0 0 1 -400.941 -407.699] cm +[1 0 0 1 0 0] Tm +0 0 Td +400.941 407.699 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 430.829 407.699] cm +0 g +0 G +[1 0 0 1 -430.829 -407.699] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.207 407.699 Td +/F128_0 9.963 Tf +(data) 16.5984 Tj +-339 TJm +(streams) 30.437 Tj +-339 TJm +(concatenated) 52.0069 Tj +72 395.744 Td +(end-to-end.) 45.6505 Tj +[1 0 0 1 72 395.644] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -385.682] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 373.826 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-332 TJm +(reading) 29.879 Tj +-333 TJm +(\002) 5.53943 Tj +1 TJm +(les,) 13.5596 Tj +[1 0 0 1 144.803 373.826] cm +0 g +0 G +[1 0 0 1 -144.803 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +144.803 373.826 Td +/F130_0 9.963 Tf +(BZ2_bzReadOpen) 83.6892 Tj +[1 0 0 1 228.489 373.826] cm +0 g +0 G +[1 0 0 1 -228.489 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +228.489 373.826 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 234.496 373.826] cm +0 g +0 G +[1 0 0 1 -234.496 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +234.496 373.826 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 294.272 373.826] cm +0 g +0 G +[1 0 0 1 -294.272 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +294.272 373.826 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 300.279 373.826] cm +0 g +0 G +[1 0 0 1 -300.279 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +300.279 373.826 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 389.942 373.826] cm +0 g +0 G +[1 0 0 1 -389.942 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +393.253 373.826 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 410.951 373.826] cm +0 g +0 G +[1 0 0 1 -410.951 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +410.951 373.826 Td +/F130_0 9.963 Tf +(BZ2_bzReadGetUnused) 113.578 Tj +[1 0 0 1 524.525 373.826] cm +0 g +0 G +[1 0 0 1 -524.525 -373.826] cm +[1 0 0 1 0 0] Tm +0 0 Td +527.836 373.826 Td +/F128_0 9.963 Tf +(are) 12.1648 Tj +72 361.871 Td +(supplied.) 36.2554 Tj +-620 TJm +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-250 TJm +(writing) 28.7831 Tj +-250 TJm +(\002les,) 19.0991 Tj +[1 0 0 1 183.471 361.871] cm +0 g +0 G +[1 0 0 1 -183.471 -361.871] cm +[1 0 0 1 0 0] Tm +0 0 Td +183.471 361.871 Td +/F130_0 9.963 Tf +(BZ2_bzWriteOpen) 89.667 Tj +[1 0 0 1 273.135 361.871] cm +0 g +0 G +[1 0 0 1 -273.135 -361.871] cm +[1 0 0 1 0 0] Tm +0 0 Td +273.135 361.871 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 278.116 361.871] cm +0 g +0 G +[1 0 0 1 -278.116 -361.871] cm +[1 0 0 1 0 0] Tm +0 0 Td +278.116 361.871 Td +/F130_0 9.963 Tf +(BZ2_bzWrite) 65.7558 Tj +[1 0 0 1 343.869 361.871] cm +0 g +0 G +[1 0 0 1 -343.869 -361.871] cm +[1 0 0 1 0 0] Tm +0 0 Td +346.36 361.871 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 363.237 361.871] cm +0 g +0 G +[1 0 0 1 -363.237 -361.871] cm +[1 0 0 1 0 0] Tm +0 0 Td +363.237 361.871 Td +/F130_0 9.963 Tf +(BZ2_bzWriteFinish) 101.623 Tj +[1 0 0 1 464.856 361.871] cm +0 g +0 G +[1 0 0 1 -464.856 -361.871] cm +[1 0 0 1 0 0] Tm +0 0 Td +467.346 361.871 Td +/F128_0 9.963 Tf +(are) 12.1648 Tj +-250 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailable.) 29.0521 Tj +[1 0 0 1 72 359.714] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -349.752] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 339.953 Td +/F128_0 9.963 Tf +(As) 11.0689 Tj +-374 TJm +(with) 17.7142 Tj +-374 TJm +(the) 12.1748 Tj +-374 TJm +(lo) 7.75121 Tj +25 TJm +(w-le) 17.7043 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-374 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-406 TJm +(n) 4.9815 Tj +1 TJm +(o) 4.9815 Tj +-375 TJm +(global) 24.9075 Tj +-374 TJm +(v) 4.9815 Tj +25 TJm +(ariables) 30.9849 Tj +-374 TJm +(are) 12.1648 Tj +-374 TJm +(used) 18.2622 Tj +-374 TJm +(so) 8.85711 Tj +-374 TJm +(the) 12.1748 Tj +-374 TJm +(library) 26.5614 Tj +-374 TJm +(is) 6.64532 Tj +-374 TJm +(per) 12.7228 Tj +-375 TJm +(se) 8.29918 Tj +-374 TJm +(thread-safe.) 46.7464 Tj +-1365 TJm +(Ho) 12.1748 Tj +25 TJm +(we) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +40 TJm +(,) 2.49075 Tj +-405 TJm +(if) 6.08739 Tj +-374 TJm +(I/O) 13.2807 Tj +72 327.998 Td +(errors) 23.2337 Tj +-267 TJm +(occur) 22.1278 Tj +-267 TJm +(whilst) 24.3595 Tj +-267 TJm +(reading) 29.879 Tj +-267 TJm +(or) 8.29918 Tj +-267 TJm +(writing) 28.7831 Tj +-267 TJm +(the) 12.1748 Tj +-267 TJm +(underlying) 43.1697 Tj +-267 TJm +(compressed) 47.0353 Tj +-267 TJm +(\002les,) 19.0991 Tj +-271 TJm +(you) 14.9445 Tj +-267 TJm +(may) 17.1563 Tj +-267 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-267 TJm +(to) 7.75121 Tj +-267 TJm +(consult) 28.7831 Tj +[1 0 0 1 457.199 327.998] cm +0 g +0 G +[1 0 0 1 -457.199 -327.998] cm +[1 0 0 1 0 0] Tm +0 0 Td +457.199 327.998 Td +/F130_0 9.963 Tf +(errno) 29.889 Tj +[1 0 0 1 487.087 327.998] cm +0 g +0 G +[1 0 0 1 -487.087 -327.998] cm +[1 0 0 1 0 0] Tm +0 0 Td +489.748 327.998 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-267 TJm +(determine) 39.842 Tj +72 316.043 Td +(the) 12.1748 Tj +-366 TJm +(cau) 13.8286 Tj +1 TJm +(se) 8.29918 Tj +-366 TJm +(of) 8.29918 Tj +-366 TJm +(the) 12.1748 Tj +-365 TJm +(error) 19.3581 Tj +55 TJm +(.) 2.49075 Tj +-1314 TJm +(In) 8.29918 Tj +-365 TJm +(that) 14.9445 Tj +-366 TJm +(case,) 19.6371 Tj +-394 TJm +(you') 18.2622 Tj +50 TJm +(d) 4.9815 Tj +-366 TJm +(need) 18.8101 Tj +-365 TJm +(a) 4.42357 Tj +-366 TJm +(C) 6.64532 Tj +-366 TJm +(lib) 10.5209 Tj +1 TJm +(rary) 16.0404 Tj +-366 TJm +(which) 24.3496 Tj +-366 TJm +(corr) 16.0404 Tj +1 TJm +(ectly) 19.3681 Tj +-366 TJm +(supports) 33.7646 Tj +[1 0 0 1 431.668 316.043] cm +0 g +0 G +[1 0 0 1 -431.668 -316.043] cm +[1 0 0 1 0 0] Tm +0 0 Td +431.668 316.043 Td +/F130_0 9.963 Tf +(errno) 29.889 Tj +[1 0 0 1 461.556 316.043] cm +0 g +0 G +[1 0 0 1 -461.556 -316.043] cm +[1 0 0 1 0 0] Tm +0 0 Td +465.199 316.043 Td +/F128_0 9.963 Tf +(in) 7.75121 Tj +-366 TJm +(a) 4.42357 Tj +-365 TJm +(multithreaded) 55.3445 Tj +72 304.088 Td +(en) 9.40507 Tj +40 TJm +(vironment.) 43.4486 Tj +[1 0 0 1 72 303.988] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -294.025] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 282.17 Td +/F128_0 9.963 Tf +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-243 TJm +(mak) 17.1563 Tj +10 TJm +(e) 4.42357 Tj +-242 TJm +(the) 12.1748 Tj +-243 TJm +(library) 26.5614 Tj +-243 TJm +(a) 4.42357 Tj +-242 TJm +(little) 18.2721 Tj +-243 TJm +(simpler) 29.889 Tj +-243 TJm +(and) 14.3866 Tj +-242 TJm +(more) 20.474 Tj +-243 TJm +(portable,) 35.1395 Tj +[1 0 0 1 289.263 282.17] cm +0 g +0 G +[1 0 0 1 -289.263 -282.17] cm +[1 0 0 1 0 0] Tm +0 0 Td +289.263 282.17 Td +/F130_0 9.963 Tf +(BZ2_bzReadOpen) 83.6892 Tj +[1 0 0 1 372.949 282.17] cm +0 g +0 G +[1 0 0 1 -372.949 -282.17] cm +[1 0 0 1 0 0] Tm +0 0 Td +375.368 282.17 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 392.172 282.17] cm +0 g +0 G +[1 0 0 1 -392.172 -282.17] cm +[1 0 0 1 0 0] Tm +0 0 Td +392.172 282.17 Td +/F130_0 9.963 Tf +(BZ2_bzWriteOpen) 89.667 Tj +[1 0 0 1 481.836 282.17] cm +0 g +0 G +[1 0 0 1 -481.836 -282.17] cm +[1 0 0 1 0 0] Tm +0 0 Td +484.254 282.17 Td +/F128_0 9.963 Tf +(require) 28.2152 Tj +-243 TJm +(you) 14.9445 Tj +-242 TJm +(to) 7.75121 Tj +72 270.215 Td +(pass) 17.1563 Tj +-247 TJm +(them) 19.926 Tj +-247 TJm +(\002le) 12.7327 Tj +-248 TJm +(handles) 30.437 Tj +-247 TJm +(\() 3.31768 Tj +[1 0 0 1 165.421 270.215] cm +0 g +0 G +[1 0 0 1 -165.421 -270.215] cm +[1 0 0 1 0 0] Tm +0 0 Td +165.421 270.215 Td +/F130_0 9.963 Tf +(FILE*) 29.889 Tj +[1 0 0 1 195.309 270.215] cm +0 g +0 G +[1 0 0 1 -195.309 -270.215] cm +[1 0 0 1 0 0] Tm +0 0 Td +195.309 270.215 Td +/F128_0 9.963 Tf +(s\)) 7.19329 Tj +-247 TJm +(which) 24.3496 Tj +-247 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-248 TJm +(pre) 12.7228 Tj +25 TJm +(viously) 29.341 Tj +-247 TJm +(been) 18.8101 Tj +-247 TJm +(opened) 28.7731 Tj +-247 TJm +(for) 11.6169 Tj +-247 TJm +(reading) 29.879 Tj +-248 TJm +(or) 8.29918 Tj +-247 TJm +(writing) 28.7831 Tj +-247 TJm +(respecti) 30.9849 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ely) 12.1748 Tj +65 TJm +(.) 2.49075 Tj +-618 TJm +(That) 18.2622 Tj +-247 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +20 TJm +(oids) 16.6083 Tj +72 258.26 Td +(portability) 41.5158 Tj +-272 TJm +(problems) 37.0823 Tj +-272 TJm +(associated) 40.9479 Tj +-273 TJm +(wi) 9.963 Tj +1 TJm +(th) 7.75121 Tj +-273 TJm +(\002le) 12.7327 Tj +-272 TJm +(operations) 41.5059 Tj +-272 TJm +(and) 14.3866 Tj +-273 TJm +(\002le) 12.7327 Tj +-272 TJm +(attrib) 21.0319 Tj +20 TJm +(utes,) 18.5411 Tj +-278 TJm +(whilst) 24.3595 Tj +-272 TJm +(not) 12.7327 Tj +-272 TJm +(being) 22.1378 Tj +-273 TJm +(mu) 12.7327 Tj +1 TJm +(ch) 9.40507 Tj +-273 TJm +(of) 8.29918 Tj +-272 TJm +(an) 9.40507 Tj +-272 TJm +(imposition) 42.6317 Tj +-273 TJm +(on) 9.963 Tj +-272 TJm +(the) 12.1748 Tj +72 246.304 Td +(programmer) 49.2471 Tj +55 TJm +(.) 2.49075 Tj +[1 0 0 1 72 244.148] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -234.185] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 215.683 Td +/F121_0 17.215 Tf +(3.1.3.) 43.0719 Tj +-278 TJm +(Utility) 47.8233 Tj +-278 TJm +(functions) 77.4675 Tj +-278 TJm +(summar) 66.9664 Tj +-10 TJm +(y) 9.57154 Tj +[1 0 0 1 72 212.12] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -202.157] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 193.765 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-273 TJm +(v) 4.9815 Tj +15 TJm +(ery) 12.7228 Tj +-273 TJm +(simple) 26.5713 Tj +-273 TJm +(needs,) 25.1765 Tj +[1 0 0 1 165.929 193.765] cm +0 g +0 G +[1 0 0 1 -165.929 -193.765] cm +[1 0 0 1 0 0] Tm +0 0 Td +165.929 193.765 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffCompress) 143.467 Tj +[1 0 0 1 309.391 193.765] cm +0 g +0 G +[1 0 0 1 -309.391 -193.765] cm +[1 0 0 1 0 0] Tm +0 0 Td +312.112 193.765 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 329.219 193.765] cm +0 g +0 G +[1 0 0 1 -329.219 -193.765] cm +[1 0 0 1 0 0] Tm +0 0 Td +329.219 193.765 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffDecompre) 143.467 Tj +1 TJm +(ss) 11.9556 Tj +[1 0 0 1 484.636 193.765] cm +0 g +0 G +[1 0 0 1 -484.636 -193.765] cm +[1 0 0 1 0 0] Tm +0 0 Td +487.357 193.765 Td +/F128_0 9.963 Tf +(are) 12.1648 Tj +-273 TJm +(pro) 13.2807 Tj +15 TJm +(vided.) 24.6285 Tj +72 181.81 Td +(These) 23.7916 Tj +-373 TJm +(compress) 37.6303 Tj +-374 TJm +(data) 16.5984 Tj +-373 TJm +(in) 7.75121 Tj +-374 TJm +(memory) 33.2067 Tj +-373 TJm +(from) 19.3681 Tj +-374 TJm +(one) 14.3866 Tj +-373 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-374 TJm +(to) 7.75121 Tj +-373 TJm +(another) 29.879 Tj +-374 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fe) 7.74125 Tj +1 TJm +(r) 3.31768 Tj +-374 TJm +(in) 7.75121 Tj +-374 TJm +(a) 4.42357 Tj +-373 TJm +(single) 23.8016 Tj +-373 TJm +(function) 33.2067 Tj +-374 TJm +(call.) 16.8773 Tj +-1361 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-374 TJm +(should) 26.5713 Tj +-373 TJm +(assess) 24.3496 Tj +72 169.855 Td +(whether) 32.0908 Tj +-344 TJm +(t) 2.76971 Tj +1 TJm +(hese) 17.7043 Tj +-344 TJm +(functions) 37.0823 Tj +-344 TJm +(ful\002) 16.6083 Tj +1 TJm +(ll) 5.53943 Tj +-344 TJm +(your) 18.2622 Tj +-344 TJm +(memory-to) 44.2756 Tj +1 TJm +(-memory) 36.5244 Tj +-344 TJm +(compression/decompressio) 107.919 Tj +1 TJm +(n) 4.9815 Tj +-344 TJm +(requirements) 52.0168 Tj +-344 TJm +(be) 9.40507 Tj +1 TJm +(fore) 16.0404 Tj +-344 TJm +(in) 7.75121 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(esting) 23.8016 Tj +72 157.9 Td +(ef) 7.74125 Tj +25 TJm +(fort) 14.3866 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(understanding) 56.4504 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(m) 7.75121 Tj +1 TJm +(ore) 12.7228 Tj +-250 TJm +(general) 29.3211 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(more) 20.474 Tj +-250 TJm +(comple) 29.3311 Tj +15 TJm +(x) 4.9815 Tj +-250 TJm +(lo) 7.75121 Tj +25 TJm +(w-le) 17.7043 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace.) 15.7615 Tj +[1 0 0 1 72 155.743] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -145.78] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 135.982 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(oshioka) 30.9949 Tj +-531 TJm +(Tsuneo) 29.3311 Tj +-531 TJm +(\() 3.31768 Tj +[1 0 0 1 152.317 135.982] cm +0 g +0 G +[1 0 0 1 -152.317 -135.982] cm +[1 0 0 1 0 0] Tm +0 0 Td +152.317 135.982 Td +/F130_0 9.963 Tf +(QWF00133@niftyserve.or.jp) 149.445 Tj +[1 0 0 1 301.757 135.982] cm +0 g +0 G +[1 0 0 1 -301.757 -135.982] cm +[1 0 0 1 0 0] Tm +0 0 Td +307.046 135.982 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 315.105 135.982] cm +0 g +0 G +[1 0 0 1 -315.105 -135.982] cm +[1 0 0 1 0 0] Tm +0 0 Td +315.105 135.982 Td +/F130_0 9.963 Tf +(tsuneo-y@is.aist-nara.ac.j) 155.423 Tj +1 TJm +(p) 5.9778 Tj +[1 0 0 1 476.5 135.982] cm +0 g +0 G +[1 0 0 1 -476.5 -135.982] cm +[1 0 0 1 0 0] Tm +0 0 Td +476.5 135.982 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +-531 TJm +(has) 13.2807 Tj +-531 TJm +(contrib) 28.2252 Tj +20 TJm +(u-) 8.29918 Tj +72 124.027 Td +(ted) 12.1748 Tj +-486 TJm +(s) 3.87561 Tj +1 TJm +(ome) 17.1563 Tj +-486 TJm +(functions) 37.0823 Tj +-485 TJm +(to) 7.75121 Tj +-486 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-485 TJm +(better) 22.6858 Tj +[1 0 0 1 218.504 124.027] cm +0 g +0 G +[1 0 0 1 -218.504 -124.027] cm +[1 0 0 1 0 0] Tm +0 0 Td +218.504 124.027 Td +/F130_0 9.963 Tf +(zlib) 23.9112 Tj +[1 0 0 1 242.415 124.027] cm +0 g +0 G +[1 0 0 1 -242.415 -124.027] cm +[1 0 0 1 0 0] Tm +0 0 Td +247.252 124.027 Td +/F128_0 9.963 Tf +(compatibility) 53.1426 Tj +65 TJm +(.) 2.49075 Tj +-2033 TJm +(These) 23.7916 Tj +-486 TJm +(functions) 37.0823 Tj +-485 TJm +(are) 12.1648 Tj +[1 0 0 1 410.043 124.027] cm +0 g +0 G +[1 0 0 1 -410.043 -124.027] cm +[1 0 0 1 0 0] Tm +0 0 Td +410.043 124.027 Td +/F130_0 9.963 Tf +(BZ2_bzopen) 59.778 Tj +[1 0 0 1 469.818 124.027] cm +0 g +0 G +[1 0 0 1 -469.818 -124.027] cm +[1 0 0 1 0 0] Tm +0 0 Td +469.818 124.027 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 477.734 124.027] cm +0 g +0 G +[1 0 0 1 -477.734 -124.027] cm +[1 0 0 1 0 0] Tm +0 0 Td +477.734 124.027 Td +/F130_0 9.963 Tf +(BZ2_bzread) 59.778 Tj +[1 0 0 1 537.509 124.027] cm +0 g +0 G +[1 0 0 1 -537.509 -124.027] cm +[1 0 0 1 0 0] Tm +0 0 Td +537.509 124.027 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 72 112.072] cm +0 g +0 G +[1 0 0 1 -72 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 112.072 Td +/F130_0 9.963 Tf +(BZ2_bzwrite) 65.7558 Tj +[1 0 0 1 137.753 112.072] cm +0 g +0 G +[1 0 0 1 -137.753 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +137.753 112.072 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 143.886 112.072] cm +0 g +0 G +[1 0 0 1 -143.886 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +143.886 112.072 Td +/F130_0 9.963 Tf +(BZ2_bzflush) 65.7558 Tj +[1 0 0 1 209.64 112.072] cm +0 g +0 G +[1 0 0 1 -209.64 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +209.64 112.072 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 215.773 112.072] cm +0 g +0 G +[1 0 0 1 -215.773 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +215.773 112.072 Td +/F130_0 9.963 Tf +(BZ2_bzclose) 65.7558 Tj +[1 0 0 1 281.526 112.072] cm +0 g +0 G +[1 0 0 1 -281.526 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +281.526 112.072 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 287.659 112.072] cm +0 g +0 G +[1 0 0 1 -287.659 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +287.659 112.072 Td +/F130_0 9.963 Tf +(BZ2_bzerror) 65.7558 Tj +[1 0 0 1 353.413 112.072] cm +0 g +0 G +[1 0 0 1 -353.413 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +356.824 112.072 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 374.622 112.072] cm +0 g +0 G +[1 0 0 1 -374.622 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +374.622 112.072 Td +/F130_0 9.963 Tf +(BZ2_bzlibVersion) 95.6448 Tj +[1 0 0 1 470.264 112.072] cm +0 g +0 G +[1 0 0 1 -470.264 -112.072] cm +[1 0 0 1 0 0] Tm +0 0 Td +470.264 112.072 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1175 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-342 TJm +(may) 17.1563 Tj +-343 TJm +(\002nd) 15.5024 Tj +72 100.117 Td +(these) 20.474 Tj +-333 TJm +(functions) 37.0823 Tj +-334 TJm +(more) 20.474 Tj +-333 TJm +(con) 14.3866 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(enient) 24.3496 Tj +-333 TJm +(for) 11.6169 Tj +-334 TJm +(simple) 26.5713 Tj +-333 TJm +(\002le) 12.7327 Tj +-334 TJm +(r) 3.31768 Tj +1 TJm +(eading) 26.5614 Tj +-334 TJm +(and) 14.3866 Tj +-333 TJm +(writing,) 31.2739 Tj +-354 TJm +(than) 17.1563 Tj +-334 TJm +(those) 21.0319 Tj +-333 TJm +(in) 7.75121 Tj +-334 TJm +(the) 12.1748 Tj +-333 TJm +(high-le) 28.2252 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-333 TJm +(interf) 21.5799 Tj +10 TJm +(ace.) 15.7615 Tj +-1121 TJm +(These) 23.7916 Tj +72 88.161 Td +(functions) 37.0823 Tj +-229 TJm +(are) 12.1648 Tj +-228 TJm +(not) 12.7327 Tj +-229 TJm +(\(yet\)) 18.8101 Tj +-229 TJm +(of) 8.29918 Tj +25 TJm +(\002cially) 27.6772 Tj +-229 TJm +(pa) 9.40507 Tj +1 TJm +(rt) 6.08739 Tj +-229 TJm +(of) 8.29918 Tj +-229 TJm +(the) 12.1748 Tj +-229 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-233 TJm +(and) 14.3866 Tj +-228 TJm +(are) 12.1648 Tj +-229 TJm +(minimally) 40.9679 Tj +-229 TJm +(documented) 48.6991 Tj +-228 TJm +(here.) 19.6371 Tj +-606 TJm +(If) 6.63536 Tj +-229 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-229 TJm +(break,) 24.6186 Tj +-233 TJm +(you) 14.9445 Tj +-228 TJm +(get) 12.1748 Tj +-229 TJm +(to) 7.75121 Tj +-229 TJm +(k) 4.9815 Tj +10 TJm +(eep) 13.8286 Tj +72 76.206 Td +(all) 9.963 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(pieces.) 27.3883 Tj +-310 TJm +(I) 3.31768 Tj +-250 TJm +(hope) 19.3681 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(docum) 27.1193 Tj +1 TJm +(ent) 12.1748 Tj +-250 TJm +(them) 19.926 Tj +-250 TJm +(properly) 33.7546 Tj +-250 TJm +(when) 21.5799 Tj +-250 TJm +(time) 17.7142 Tj +-250 TJm +(permits.) 32.3798 Tj +[1 0 0 1 72 74.049] cm +0 g +0 G +[1 0 0 1 0 -23.197] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 4.384 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 0 6.974] cm +0 g +0 G +0 g +0 G +[1 0 0 1 43.064 -6.755] cm +0 g +0 G +[1 0 0 1 -498.225 -51.071] cm +[1 0 0 1 0 0] Tm +0 0 Td +541.288 51.071 Td +/F128_0 9.963 Tf +(9) 4.9815 Tj +[1 0 0 1 455.161 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.599 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -15.037 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 13 13 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -21.554] cm +0 g +0 G +[1 0 0 1 -72 -720] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(oshioka) 30.9949 Tj +-250 TJm +(also) 16.0504 Tj +-250 TJm +(contrib) 28.2252 Tj +20 TJm +(uted) 17.1563 Tj +-250 TJm +(mo) 12.7327 Tj +1 TJm +(di\002cations) 41.5158 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(allo) 14.9445 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(library) 26.5614 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(uilt) 13.2906 Tj +-250 TJm +(as) 8.29918 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(W) 9.40507 Tj +40 TJm +(indo) 17.7142 Tj +25 TJm +(ws) 11.0689 Tj +-250 TJm +(D) 7.19329 Tj +1 TJm +(LL.) 14.6655 Tj +[1 0 0 1 72 707.881] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -698.137] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 675.504 Td +/F121_0 20.659 Tf +(3.2.) 34.4592 Tj +-278 TJm +(Err) 29.8523 Tj +20 TJm +(or) 20.659 Tj +-278 TJm +(handling) 86.0861 Tj +[1 0 0 1 72 670.907] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.743] cm +0 g +0 G +[1 0 0 1 -72 -661.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 653.805 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-214 TJm +(library) 26.5614 Tj +-215 TJm +(is) 6.64532 Tj +-214 TJm +(designed) 35.4185 Tj +-215 TJm +(to) 7.75121 Tj +-214 TJm +(reco) 17.1463 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-214 TJm +(cleanly) 28.7731 Tj +-215 TJm +(in) 7.75121 Tj +-214 TJm +(all) 9.963 Tj +-215 TJm +(situati) 24.3595 Tj +1 TJm +(ons,) 16.3294 Tj +-222 TJm +(including) 37.6402 Tj +-214 TJm +(the) 12.1748 Tj +-215 TJm +(w) 7.19329 Tj +10 TJm +(orst-case) 35.4085 Tj +-214 TJm +(situation) 34.3225 Tj +-214 TJm +(of) 8.29918 Tj +-215 TJm +(decompressing) 59.768 Tj +-214 TJm +(random) 30.437 Tj +72 641.85 Td +(data.) 19.0891 Tj +-764 TJm +(I'm) 14.3866 Tj +-274 TJm +(not) 12.7327 Tj +-274 TJm +(100%) 23.2437 Tj +-274 TJm +(sure) 16.5984 Tj +-274 TJm +(that) 14.9445 Tj +-274 TJm +(it) 5.53943 Tj +-274 TJm +(can) 13.8286 Tj +-274 TJm +(al) 7.19329 Tj +10 TJm +(w) 7.19329 Tj +10 TJm +(ays) 13.2807 Tj +-274 TJm +(do) 9.963 Tj +-274 TJm +(this,) 16.8873 Tj +-280 TJm +(so) 8.85711 Tj +-274 TJm +(you) 14.9445 Tj +-274 TJm +(might) 23.2536 Tj +-274 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-274 TJm +(to) 7.75121 Tj +-274 TJm +(add) 14.3866 Tj +-274 TJm +(a) 4.42357 Tj +-274 TJm +(signal) 23.8016 Tj +-274 TJm +(handler) 29.879 Tj +-274 TJm +(to) 7.75121 Tj +-274 TJm +(catch) 21.0219 Tj +-274 TJm +(se) 8.29918 Tj +15 TJm +(gmentation) 44.8335 Tj +72 629.895 Td +(violations) 39.304 Tj +-273 TJm +(during) 26.0134 Tj +-273 TJm +(decompression) 59.768 Tj +-273 TJm +(if) 6.08739 Tj +-273 TJm +(you) 14.9445 Tj +-273 TJm +(are) 12.1648 Tj +-273 TJm +(feeling) 27.6673 Tj +-273 TJm +(especially) 39.842 Tj +-273 TJm +(paranoid.) 37.3513 Tj +-758 TJm +(I) 3.31768 Tj +-273 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-273 TJm +(be) 9.40507 Tj +-273 TJm +(interested) 38.7361 Tj +-273 TJm +(in) 7.75121 Tj +-273 TJm +(hearing) 29.879 Tj +-273 TJm +(more) 20.474 Tj +-273 TJm +(about) 22.1378 Tj +72 617.939 Td +(the) 12.1748 Tj +-250 TJm +(rob) 13.2807 Tj +20 TJm +(ustness) 28.7831 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(library) 26.5614 Tj +-250 TJm +(t) 2.76971 Tj +1 TJm +(o) 4.9815 Tj +-250 TJm +(corrupted) 38.1782 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(data.) 19.0891 Tj +[1 0 0 1 72 615.783] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +[1 0 0 1 -72 -606.039] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 596.241 Td +/F128_0 9.963 Tf +(V) 7.19329 Tj +111 TJm +(ersion) 24.3496 Tj +-251 TJm +(1.0.3) 19.926 Tj +-251 TJm +(more) 20.474 Tj +-251 TJm +(rob) 13.2807 Tj +20 TJm +(ust) 11.6268 Tj +-251 TJm +(in) 7.75121 Tj +-251 TJm +(this) 14.3965 Tj +-251 TJm +(respect) 28.2152 Tj +-251 TJm +(than) 17.1563 Tj +-251 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-251 TJm +(pre) 12.7228 Tj +25 TJm +(vious) 21.5898 Tj +-251 TJm +(v) 4.9815 Tj +15 TJm +(ersion.) 26.8403 Tj +-626 TJm +(In) 8.29918 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(estig) 18.8201 Tj +5 TJm +(ations) 23.8016 Tj +-251 TJm +(with) 17.7142 Tj +-251 TJm +(V) 7.19329 Tj +111 TJm +(algrind) 28.2252 Tj +-251 TJm +(\(a) 7.74125 Tj +-251 TJm +(tool) 15.5024 Tj +-251 TJm +(for) 11.6169 Tj +-251 TJm +(detecting) 36.5244 Tj +72 584.285 Td +(problems) 37.0823 Tj +-421 TJm +(with) 17.7142 Tj +-422 TJm +(memory) 33.2067 Tj +-421 TJm +(management\)) 54.2286 Tj +-422 TJm +(indicat) 27.1193 Tj +1 TJm +(e) 4.42357 Tj +-422 TJm +(that,) 17.4353 Tj +-464 TJm +(at) 7.19329 Tj +-422 TJm +(least) 18.2622 Tj +-421 TJm +(for) 11.6169 Tj +-422 TJm +(the) 12.1748 Tj +-421 TJm +(fe) 7.74125 Tj +25 TJm +(w) 7.19329 Tj +-422 TJm +(\002les) 16.6083 Tj +-421 TJm +(I) 3.31768 Tj +-422 TJm +(tested,) 25.7344 Tj +-464 TJm +(all) 9.963 Tj +-422 TJm +(single) 23.8016 Tj +1 TJm +(-bit) 13.8386 Tj +-422 TJm +(errors) 23.2337 Tj +-421 TJm +(in) 7.75121 Tj +-422 TJm +(the) 12.1748 Tj +72 572.33 Td +(decompressed) 56.4404 Tj +-342 TJm +(d) 4.9815 Tj +1 TJm +(ata) 11.6169 Tj +-342 TJm +(are) 12.1648 Tj +-342 TJm +(caught) 26.5614 Tj +-342 TJm +(pro) 13.2807 Tj +1 TJm +(perly) 20.474 Tj +65 TJm +(,) 2.49075 Tj +-365 TJm +(with) 17.7142 Tj +-342 TJm +(no) 9.963 Tj +-342 TJm +(s) 3.87561 Tj +1 TJm +(e) 4.42357 Tj +15 TJm +(gmentation) 44.8335 Tj +-342 TJm +(f) 3.31768 Tj +10 TJm +(aults,) 21.3109 Tj +-365 TJm +(no) 9.963 Tj +-341 TJm +(uses) 17.1563 Tj +-342 TJm +(of) 8.29918 Tj +-342 TJm +(uninitialise) 44.2855 Tj +1 TJm +(d) 4.9815 Tj +-342 TJm +(data,) 19.0891 Tj +-365 TJm +(no) 9.963 Tj +-342 TJm +(out) 12.7327 Tj +-341 TJm +(of) 8.29918 Tj +-342 TJm +(range) 22.1278 Tj +72 560.375 Td +(reads) 21.0219 Tj +-260 TJm +(or) 8.29918 Tj +-261 TJm +(writes,) 26.8403 Tj +-263 TJm +(and) 14.3866 Tj +-261 TJm +(no) 9.963 Tj +-260 TJm +(in\002nite) 28.2351 Tj +-261 TJm +(looping) 30.4469 Tj +-260 TJm +(in) 7.75121 Tj +-261 TJm +(the) 12.1748 Tj +-260 TJm +(decompressor) 55.3345 Tj +55 TJm +(.) 2.49075 Tj +-342 TJm +(So) 10.5209 Tj +-260 TJm +(it') 8.85711 Tj +55 TJm +(s) 3.87561 Tj +-261 TJm +(certainly) 34.8605 Tj +-260 TJm +(pretty) 23.2437 Tj +-261 TJm +(rob) 13.2807 Tj +21 TJm +(ust,) 14.1176 Tj +-264 TJm +(although) 34.8705 Tj +-260 TJm +(I) 3.31768 Tj +-261 TJm +(w) 7.19329 Tj +10 TJm +(ouldn') 26.0134 Tj +18 TJm +(t) 2.76971 Tj +-260 TJm +(claim) 22.1378 Tj +72 548.42 Td +(it) 5.53943 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(totally) 25.4654 Tj +-250 TJm +(bombproof.) 46.7663 Tj +[1 0 0 1 72 546.263] cm +0 g +0 G +[1 0 0 1 0 -9.743] cm +0 g +0 G +[1 0 0 1 -72 -536.52] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 526.721 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-282 TJm +(\002le) 12.7327 Tj +[1 0 0 1 105.84 526.721] cm +0 g +0 G +[1 0 0 1 -105.84 -526.721] cm +[1 0 0 1 0 0] Tm +0 0 Td +105.84 526.721 Td +/F130_0 9.963 Tf +(bzlib.h) 41.8446 Tj +[1 0 0 1 147.683 526.721] cm +0 g +0 G +[1 0 0 1 -147.683 -526.721] cm +[1 0 0 1 0 0] Tm +0 0 Td +150.491 526.721 Td +/F128_0 9.963 Tf +(contains) 33.2067 Tj +-282 TJm +(all) 9.963 Tj +-282 TJm +(d) 4.9815 Tj +1 TJm +(e\002nitions) 37.0922 Tj +-282 TJm +(needed) 28.2152 Tj +-282 TJm +(to) 7.75121 Tj +-282 TJm +(use) 13.2807 Tj +-282 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-282 TJm +(library) 26.5614 Tj +65 TJm +(.) 2.49075 Tj +-811 TJm +(In) 8.29918 Tj +-282 TJm +(particular) 38.1782 Tj +40 TJm +(,) 2.49075 Tj +-290 TJm +(you) 14.9445 Tj +-282 TJm +(shou) 18.8201 Tj +1 TJm +(ld) 7.75121 Tj +-282 TJm +(de\002nitely) 37.6402 Tj +-282 TJm +(not) 12.7327 Tj +-282 TJm +(include) 29.3311 Tj +[1 0 0 1 72 514.766] cm +0 g +0 G +[1 0 0 1 -72 -514.766] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 514.766 Td +/F130_0 9.963 Tf +(bzlib_private.h) 89.667 Tj +[1 0 0 1 161.664 514.766] cm +0 g +0 G +[1 0 0 1 -161.664 -514.766] cm +[1 0 0 1 0 0] Tm +0 0 Td +161.664 514.766 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 513.202] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +[1 0 0 1 -72 -503.458] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 493.067 Td +/F128_0 9.963 Tf +(In) 8.29918 Tj +[1 0 0 1 82.807 493.067] cm +0 g +0 G +[1 0 0 1 -82.807 -493.067] cm +[1 0 0 1 0 0] Tm +0 0 Td +82.807 493.067 Td +/F130_0 9.963 Tf +(bzlib.h) 41.8446 Tj +[1 0 0 1 124.651 493.067] cm +0 g +0 G +[1 0 0 1 -124.651 -493.067] cm +[1 0 0 1 0 0] Tm +0 0 Td +124.651 493.067 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-252 TJm +(the) 12.1748 Tj +-252 TJm +(v) 4.9815 Tj +25 TJm +(arious) 24.3496 Tj +-252 TJm +(return) 23.7916 Tj +-251 TJm +(v) 4.9815 Tj +25 TJm +(alues) 20.474 Tj +-252 TJm +(are) 12.1648 Tj +-252 TJm +(de\002ned.) 31.8218 Tj +-630 TJm +(The) 15.4925 Tj +-252 TJm +(follo) 18.8201 Tj +25 TJm +(wing) 19.926 Tj +-252 TJm +(list) 12.1847 Tj +-251 TJm +(is) 6.64532 Tj +-252 TJm +(not) 12.7327 Tj +-252 TJm +(intended) 34.3126 Tj +-252 TJm +(as) 8.29918 Tj +-251 TJm +(an) 9.40507 Tj +-252 TJm +(e) 4.42357 Tj +15 TJm +(xhausti) 28.7831 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-252 TJm +(description) 44.2756 Tj +-251 TJm +(of) 8.29918 Tj +72 481.112 Td +(the) 12.1748 Tj +-236 TJm +(circumstances) 56.4404 Tj +-236 TJm +(in) 7.75121 Tj +-236 TJm +(which) 24.3496 Tj +-236 TJm +(a) 4.42357 Tj +-236 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-237 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-236 TJm +(may) 17.1563 Tj +-236 TJm +(be) 9.40507 Tj +-236 TJm +(returned) 33.1967 Tj +-236 TJm +(--) 6.63536 Tj +-236 TJm +(those) 21.0319 Tj +-236 TJm +(descriptions) 48.1512 Tj +-236 TJm +(are) 12.1648 Tj +-236 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-236 TJm +(later) 17.7043 Tj +55 TJm +(.) 2.49075 Tj +-306 TJm +(Rather) 26.5614 Tj +40 TJm +(,) 2.49075 Tj +-239 TJm +(it) 5.53943 Tj +-236 TJm +(is) 6.64532 Tj +-236 TJm +(intended) 34.3126 Tj +-236 TJm +(to) 7.75121 Tj +72 469.157 Td +(con) 14.3866 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +15 TJm +(y) 4.9815 Tj +-266 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-266 TJm +(rough) 23.2437 Tj +-266 TJm +(me) 12.1748 Tj +1 TJm +(aning) 22.1378 Tj +-266 TJm +(of) 8.29918 Tj +-266 TJm +(ea) 8.84714 Tj +1 TJm +(ch) 9.40507 Tj +-266 TJm +(return) 23.7916 Tj +-266 TJm +(v) 4.9815 Tj +26 TJm +(alue.) 19.0891 Tj +-714 TJm +(The) 15.4925 Tj +-265 TJm +(\002rst) 15.5024 Tj +-266 TJm +(\002) 5.53943 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-266 TJm +(a) 4.42357 Tj +1 TJm +(ctions) 23.8016 Tj +-266 TJm +(are) 12.1648 Tj +-265 TJm +(normal) 28.2252 Tj +-266 TJm +(and) 14.3866 Tj +-265 TJm +(not) 12.7327 Tj +-266 TJm +(intended) 34.3126 Tj +-265 TJm +(to) 7.75121 Tj +-266 TJm +(denote) 26.5614 Tj +-265 TJm +(an) 9.40507 Tj +-266 TJm +(error) 19.3581 Tj +72 457.202 Td +(situation.) 36.8133 Tj +[1 0 0 1 72 457.102] cm +0 g +0 G +[1 0 0 1 0 -9.743] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -437.615] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 425.759 Td +/F130_0 9.963 Tf +(BZ_OK) 29.889 Tj +[1 0 0 1 101.888 425.759] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -32.379 -1.165] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -424.594] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 413.804 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-250 TJm +(requested) 38.1782 Tj +-250 TJm +(action) 24.3496 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-250 TJm +(com) 17.1563 Tj +1 TJm +(pleted) 24.3496 Tj +-250 TJm +(successfully) 48.6991 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 411.647] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.765] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -398.138] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 388.34 Td +/F130_0 9.963 Tf +(BZ_RUN_OK,) 59.778 Tj +-600 TJm +(BZ_FLUSH_OK,) 71.7336 Tj +-600 TJm +(BZ) 11.9556 Tj +1 TJm +(_FINISH_OK) 59.778 Tj +[1 0 0 1 287.193 388.34] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -217.684 -1.166] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -387.174] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 376.384 Td +/F128_0 9.963 Tf +(In) 8.29918 Tj +[1 0 0 1 118.789 376.384] cm +0 g +0 G +[1 0 0 1 -118.789 -376.384] cm +[1 0 0 1 0 0] Tm +0 0 Td +118.789 376.384 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 202.476 376.384] cm +0 g +0 G +[1 0 0 1 -202.476 -376.384] cm +[1 0 0 1 0 0] Tm +0 0 Td +202.476 376.384 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(requested) 38.1782 Tj +-250 TJm +(\003ush/\002nish/) 47.0652 Tj +1 TJm +(nothing-special) 61.4319 Tj +-250 TJm +(action) 24.3496 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-250 TJm +(completed) 41.5059 Tj +-250 TJm +(successfully) 48.6991 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 374.228] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.766] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -360.718] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 350.92 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 149.709 350.92] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -80.199 -1.166] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -349.754] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 338.965 Td +/F128_0 9.963 Tf +(Compression) 52.5847 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-250 TJm +(com) 17.1563 Tj +1 TJm +(pleted,) 26.8403 Tj +-250 TJm +(or) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(logical) 27.1193 Tj +-250 TJm +(stream) 26.5614 Tj +-250 TJm +(end) 14.3866 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-250 TJm +(detected) 33.1967 Tj +-250 TJm +(during) 26.0134 Tj +-250 TJm +(de) 9.40507 Tj +1 TJm +(compression.) 52.8537 Tj +[1 0 0 1 72 336.808] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.766] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +[1 0 0 1 0 -9.743] cm +0 g +0 G +[1 0 0 1 -72 -313.555] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 303.756 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-250 TJm +(follo) 18.8201 Tj +25 TJm +(wing) 19.926 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues) 20.474 Tj +-250 TJm +(i) 2.76971 Tj +1 TJm +(ndicate) 28.7731 Tj +-250 TJm +(an) 9.40507 Tj +-250 TJm +(error) 19.3581 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(some) 21.0319 Tj +-250 TJm +(kind.) 20.205 Tj +[1 0 0 1 72 301.6] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -282.112] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 272.314 Td +/F130_0 9.963 Tf +(BZ_CONFIG_ERROR) 89.667 Tj +[1 0 0 1 161.664 272.314] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -92.154 -1.165] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -271.149] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 260.359 Td +/F128_0 9.963 Tf +(Indicates) 35.9664 Tj +-386 TJm +(that) 14.9445 Tj +-385 TJm +(the) 12.1748 Tj +-386 TJm +(library) 26.5614 Tj +-386 TJm +(has) 13.2807 Tj +-385 TJm +(been) 18.8101 Tj +-386 TJm +(improperly) 44.2756 Tj +-385 TJm +(compiled) 37.0823 Tj +-386 TJm +(on) 9.963 Tj +-386 TJm +(your) 18.2622 Tj +-385 TJm +(platform) 34.3126 Tj +-386 TJm +(--) 6.63536 Tj +-386 TJm +(a) 4.42357 Tj +-385 TJm +(major) 23.2437 Tj +-386 TJm +(con\002guration) 53.1327 Tj +-386 TJm +(error) 19.3581 Tj +55 TJm +(.) 2.49075 Tj +108 248.404 Td +(Speci\002cally) 47.0453 Tj +65 TJm +(,) 2.49075 Tj +-481 TJm +(it) 5.53943 Tj +-435 TJm +(means) 25.4555 Tj +-434 TJm +(that) 14.9445 Tj +[1 0 0 1 220.614 248.404] cm +0 g +0 G +[1 0 0 1 -220.614 -248.404] cm +[1 0 0 1 0 0] Tm +0 0 Td +220.614 248.404 Td +/F130_0 9.963 Tf +(sizeof\(char\)) 71.7336 Tj +[1 0 0 1 292.345 248.404] cm +0 g +0 G +[1 0 0 1 -292.345 -248.404] cm +[1 0 0 1 0 0] Tm +0 0 Td +292.345 248.404 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 299.628 248.404] cm +0 g +0 G +[1 0 0 1 -299.628 -248.404] cm +[1 0 0 1 0 0] Tm +0 0 Td +299.628 248.404 Td +/F130_0 9.963 Tf +(sizeof\(short\)) 77.7114 Tj +[1 0 0 1 377.337 248.404] cm +0 g +0 G +[1 0 0 1 -377.337 -248.404] cm +[1 0 0 1 0 0] Tm +0 0 Td +381.669 248.404 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 400.388 248.404] cm +0 g +0 G +[1 0 0 1 -400.388 -248.404] cm +[1 0 0 1 0 0] Tm +0 0 Td +400.388 248.404 Td +/F130_0 9.963 Tf +(sizeof\(int\)) 65.7558 Tj +[1 0 0 1 466.141 248.404] cm +0 g +0 G +[1 0 0 1 -466.141 -248.404] cm +[1 0 0 1 0 0] Tm +0 0 Td +470.474 248.404 Td +/F128_0 9.963 Tf +(are) 12.1648 Tj +-435 TJm +(not) 12.7327 Tj +-435 TJm +(1,) 7.47225 Tj +-481 TJm +(2) 4.9815 Tj +-434 TJm +(and) 14.3866 Tj +108 236.449 Td +(4) 4.9815 Tj +-389 TJm +(respecti) 30.9849 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ely) 12.1748 Tj +65 TJm +(,) 2.49075 Tj +-424 TJm +(as) 8.29918 Tj +-389 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-389 TJm +(should) 26.5713 Tj +-390 TJm +(be.) 11.8958 Tj +-1455 TJm +(Note) 19.3681 Tj +-389 TJm +(that) 14.9445 Tj +-389 TJm +(the) 12.1748 Tj +-390 TJm +(library) 26.5614 Tj +-389 TJm +(should) 26.5713 Tj +-389 TJm +(still) 14.9545 Tj +-389 TJm +(w) 7.19329 Tj +10 TJm +(ork) 13.2807 Tj +-389 TJm +(properly) 33.7546 Tj +-389 TJm +(on) 9.963 Tj +-390 TJm +(64-bi) 21.0319 Tj +1 TJm +(t) 2.76971 Tj +-390 TJm +(platforms) 38.1882 Tj +108 224.493 Td +(which) 24.3496 Tj +-292 TJm +(follo) 18.8201 Tj +25 TJm +(w) 7.19329 Tj +-292 TJm +(the) 12.1748 Tj +-292 TJm +(LP64) 21.5898 Tj +-292 TJm +(programming) 54.2386 Tj +-292 TJm +(model) 24.9075 Tj +-292 TJm +(--) 6.63536 Tj +-292 TJm +(that) 14.9445 Tj +-292 TJm +(is,) 9.13607 Tj +-303 TJm +(where) 24.3396 Tj +[1 0 0 1 355.279 224.493] cm +0 g +0 G +[1 0 0 1 -355.279 -224.493] cm +[1 0 0 1 0 0] Tm +0 0 Td +355.279 224.493 Td +/F130_0 9.963 Tf +(sizeof\(long\)) 71.7336 Tj +[1 0 0 1 427.01 224.493] cm +0 g +0 G +[1 0 0 1 -427.01 -224.493] cm +[1 0 0 1 0 0] Tm +0 0 Td +429.92 224.493 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 447.217 224.493] cm +0 g +0 G +[1 0 0 1 -447.217 -224.493] cm +[1 0 0 1 0 0] Tm +0 0 Td +447.217 224.493 Td +/F130_0 9.963 Tf +(sizeof\(void*\)) 77.7114 Tj +[1 0 0 1 524.925 224.493] cm +0 g +0 G +[1 0 0 1 -524.925 -224.493] cm +[1 0 0 1 0 0] Tm +0 0 Td +527.836 224.493 Td +/F128_0 9.963 Tf +(are) 12.1648 Tj +108 212.538 Td +(8.) 7.47225 Tj +-620 TJm +(Under) 24.8975 Tj +-250 TJm +(LP64,) 24.0806 Tj +[1 0 0 1 175.606 212.538] cm +0 g +0 G +[1 0 0 1 -175.606 -212.538] cm +[1 0 0 1 0 0] Tm +0 0 Td +175.606 212.538 Td +/F130_0 9.963 Tf +(sizeof\(int\)) 65.7558 Tj +[1 0 0 1 241.36 212.538] cm +0 g +0 G +[1 0 0 1 -241.36 -212.538] cm +[1 0 0 1 0 0] Tm +0 0 Td +243.85 212.538 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(still) 14.9545 Tj +-250 TJm +(4,) 7.47225 Tj +-250 TJm +(so) 8.85711 Tj +[1 0 0 1 291.74 212.538] cm +0 g +0 G +[1 0 0 1 -291.74 -212.538] cm +[1 0 0 1 0 0] Tm +0 0 Td +291.74 212.538 Td +/F130_0 9.963 Tf +(libbzip2) 47.8224 Tj +[1 0 0 1 339.561 212.538] cm +0 g +0 G +[1 0 0 1 -339.561 -212.538] cm +[1 0 0 1 0 0] Tm +0 0 Td +339.561 212.538 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(which) 24.3496 Tj +-250 TJm +(doesn') 26.5614 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(the) 12.1748 Tj +[1 0 0 1 433.458 212.538] cm +0 g +0 G +[1 0 0 1 -433.458 -212.538] cm +[1 0 0 1 0 0] Tm +0 0 Td +433.458 212.538 Td +/F130_0 9.963 Tf +(long) 23.9112 Tj +[1 0 0 1 457.368 212.538] cm +0 g +0 G +[1 0 0 1 -457.368 -212.538] cm +[1 0 0 1 0 0] Tm +0 0 Td +459.859 212.538 Td +/F128_0 9.963 Tf +(type,) 19.647 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(OK.) 16.8773 Tj +[1 0 0 1 72 210.381] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.765] cm +0 g +0 G +[1 0 0 1 0 -9.744] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -196.872] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 187.074 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +[1 0 0 1 173.619 187.074] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -104.11 -1.42] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -185.654] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 175.118 Td +/F128_0 9.963 Tf +(When) 23.7916 Tj +-290 TJm +(using) 21.5898 Tj +-291 TJm +(the) 12.1748 Tj +-290 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-301 TJm +(it) 5.53943 Tj +-290 TJm +(is) 6.64532 Tj +-291 TJm +(important) 38.7461 Tj +-290 TJm +(to) 7.75121 Tj +-291 TJm +(ca) 8.84714 Tj +1 TJm +(ll) 5.53943 Tj +-291 TJm +(the) 12.1748 Tj +-290 TJm +(functions) 37.0823 Tj +-291 TJm +(in) 7.75121 Tj +-290 TJm +(the) 12.1748 Tj +-291 TJm +(correct) 27.6573 Tj +-290 TJm +(sequence) 36.5144 Tj +-290 TJm +(and) 14.3866 Tj +-291 TJm +(with) 17.7142 Tj +-290 TJm +(data) 16.5984 Tj +-291 TJm +(structures) 38.7361 Tj +108 163.163 Td +(\(b) 8.29918 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fers) 14.9345 Tj +-205 TJm +(etc\)) 14.9345 Tj +-206 TJm +(in) 7.75121 Tj +-206 TJm +(the) 12.1748 Tj +-205 TJm +(correct) 27.6573 Tj +-206 TJm +(states.) 24.6285 Tj +[1 0 0 1 239.409 163.163] cm +0 g +0 G +[1 0 0 1 -239.409 -163.163] cm +[1 0 0 1 0 0] Tm +0 0 Td +239.409 163.163 Td +/F130_0 9.963 Tf +(libbzip2) 47.8224 Tj +[1 0 0 1 287.23 163.163] cm +0 g +0 G +[1 0 0 1 -287.23 -163.163] cm +[1 0 0 1 0 0] Tm +0 0 Td +289.278 163.163 Td +/F128_0 9.963 Tf +(checks) 27.1093 Tj +-206 TJm +(as) 8.29918 Tj +-205 TJm +(much) 22.1378 Tj +-206 TJm +(as) 8.29918 Tj +-205 TJm +(it) 5.53943 Tj +-206 TJm +(can) 13.8286 Tj +-205 TJm +(to) 7.75121 Tj +-206 TJm +(ensure) 26.0034 Tj +-205 TJm +(this) 14.3965 Tj +-206 TJm +(is) 6.64532 Tj +-206 TJm +(happeni) 31.5429 Tj +1 TJm +(ng,) 12.4538 Tj +-215 TJm +(and) 14.3866 Tj +-206 TJm +(re) 7.74125 Tj +1 TJm +(turns) 19.926 Tj +[1 0 0 1 108 151.208] cm +0 g +0 G +[1 0 0 1 -108 -151.208] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 151.208 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +[1 0 0 1 209.619 151.208] cm +0 g +0 G +[1 0 0 1 -209.619 -151.208] cm +[1 0 0 1 0 0] Tm +0 0 Td +213.27 151.208 Td +/F128_0 9.963 Tf +(if) 6.08739 Tj +-367 TJm +(not) 12.7327 Tj +1 TJm +(.) 2.49075 Tj +-660 TJm +(Code) 21.0319 Tj +-367 TJm +(which) 24.3496 Tj +-366 TJm +(complies) 35.9764 Tj +-367 TJm +(precisel) 30.9849 Tj +1 TJm +(y) 4.9815 Tj +-367 TJm +(with) 17.7142 Tj +-367 TJm +(the) 12.1748 Tj +-366 TJm +(function) 33.2067 Tj +-367 TJm +(s) 3.87561 Tj +1 TJm +(emantics,) 37.9092 Tj +-396 TJm +(as) 8.29918 Tj +-367 TJm +(deta) 16.5984 Tj +1 TJm +(iled) 14.9445 Tj +108 139.253 Td +(belo) 17.1563 Tj +25 TJm +(w) 7.19329 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(ne) 9.40507 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-250 TJm +(recei) 19.3581 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(this) 14.3965 Tj +-249 TJm +(v) 4.9815 Tj +25 TJm +(alue;) 19.3681 Tj +-250 TJm +(such) 18.2622 Tj +-250 TJm +(an) 9.40507 Tj +-250 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ent) 12.1748 Tj +-250 TJm +(denotes) 30.437 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(uggy) 19.926 Tj +-250 TJm +(code) 18.8101 Tj +-250 TJm +(which) 24.3496 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(i) 2.76971 Tj +1 TJm +(n) 4.9815 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(estig) 18.8201 Tj +5 TJm +(ate.) 14.1076 Tj +[1 0 0 1 72 137.096] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.766] cm +0 g +0 G +[1 0 0 1 0 -9.743] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -123.587] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 113.788 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +[1 0 0 1 155.686 113.788] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -86.177 -1.165] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -112.623] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 101.833 Td +/F128_0 9.963 Tf +(Returned) 36.5244 Tj +-434 TJm +(when) 21.5799 Tj +-434 TJm +(a) 4.42357 Tj +-433 TJm +(parameter) 39.8321 Tj +-434 TJm +(to) 7.75121 Tj +-434 TJm +(a) 4.42357 Tj +-434 TJm +(function) 33.2067 Tj +-434 TJm +(call) 14.3866 Tj +-434 TJm +(is) 6.64532 Tj +-433 TJm +(out) 12.7327 Tj +-434 TJm +(of) 8.29918 Tj +-434 TJm +(range) 22.1278 Tj +-434 TJm +(or) 8.29918 Tj +-434 TJm +(otherwise) 38.7361 Tj +-434 TJm +(man) 17.1563 Tj +1 TJm +(ifestly) 24.9075 Tj +-434 TJm +(incorrect.) 37.8993 Tj +-1724 TJm +(As) 11.0689 Tj +108 89.878 Td +(with) 17.7142 Tj +[1 0 0 1 131.644 89.878] cm +0 g +0 G +[1 0 0 1 -131.644 -89.878] cm +[1 0 0 1 0 0] Tm +0 0 Td +131.644 89.878 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +[1 0 0 1 233.263 89.878] cm +0 g +0 G +[1 0 0 1 -233.263 -89.878] cm +[1 0 0 1 0 0] Tm +0 0 Td +233.263 89.878 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-595 TJm +(this) 14.3965 Tj +-596 TJm +(d) 4.9815 Tj +1 TJm +(enotes) 25.4555 Tj +-596 TJm +(a) 4.42357 Tj +-595 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-595 TJm +(in) 7.75121 Tj +-595 TJm +(the) 12.1748 Tj +-596 TJm +(client) 22.1378 Tj +-595 TJm +(code.) 21.3009 Tj +-2692 TJm +(T) 6.08739 Tj +1 TJm +(he) 9.40507 Tj +-596 TJm +(distinction) 42.0737 Tj +-595 TJm +(between) 33.1967 Tj +[1 0 0 1 108 77.923] cm +0 g +0 G +[1 0 0 1 -108 -77.923] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 77.923 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +[1 0 0 1 191.686 77.923] cm +0 g +0 G +[1 0 0 1 -191.686 -77.923] cm +[1 0 0 1 0 0] Tm +0 0 Td +194.177 77.923 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 211.053 77.923] cm +0 g +0 G +[1 0 0 1 -211.053 -77.923] cm +[1 0 0 1 0 0] Tm +0 0 Td +211.053 77.923 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +[1 0 0 1 312.672 77.923] cm +0 g +0 G +[1 0 0 1 -312.672 -77.923] cm +[1 0 0 1 0 0] Tm +0 0 Td +315.163 77.923 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(bit) 10.5209 Tj +-250 TJm +(hazy) 18.8101 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(still) 14.9545 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(orth) 16.0504 Tj +-250 TJm +(m) 7.75121 Tj +1 TJm +(aking.) 24.6285 Tj +[1 0 0 1 72 75.766] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.766] cm +0 g +0 G +[1 0 0 1 0 -21.148] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(10) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 14 14 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -21.554] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -720] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F130_0 9.963 Tf +(BZ_MEM_ERROR) 71.7336 Tj +[1 0 0 1 143.731 710.037] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -74.222 -1.165] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -708.872] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 698.082 Td +/F128_0 9.963 Tf +(Returned) 36.5244 Tj +-227 TJm +(when) 21.5799 Tj +-228 TJm +(a) 4.42357 Tj +-228 TJm +(reque) 22.1278 Tj +1 TJm +(st) 6.64532 Tj +-228 TJm +(to) 7.75121 Tj +-228 TJm +(allocate) 30.9849 Tj +-227 TJm +(memory) 33.2067 Tj +-228 TJm +(f) 3.31768 Tj +10 TJm +(aile) 14.3866 Tj +1 TJm +(d.) 7.47225 Tj +-606 TJm +(N) 7.19329 Tj +1 TJm +(ote) 12.1748 Tj +-228 TJm +(that) 14.9445 Tj +-228 TJm +(the) 12.1748 Tj +-227 TJm +(quantity) 32.6587 Tj +-228 TJm +(of) 8.29918 Tj +-227 TJm +(memory) 33.2067 Tj +-228 TJm +(needed) 28.2152 Tj +-227 TJm +(to) 7.75121 Tj +-228 TJm +(decompress) 47.0353 Tj +108 686.127 Td +(a) 4.42357 Tj +-351 TJm +(stream) 26.5614 Tj +-352 TJm +(cannot) 26.5614 Tj +-351 TJm +(be) 9.40507 Tj +-351 TJm +(determined) 44.8235 Tj +-352 TJm +(until) 18.2721 Tj +-351 TJm +(the) 12.1748 Tj +-351 TJm +(stream') 29.879 Tj +55 TJm +(s) 3.87561 Tj +-352 TJm +(heade) 23.2337 Tj +1 TJm +(r) 3.31768 Tj +-352 TJm +(has) 13.2807 Tj +-351 TJm +(been) 18.8101 Tj +-352 TJm +(read.) 19.6371 Tj +-1228 TJm +(So) 10.5209 Tj +[1 0 0 1 426.471 686.127] cm +0 g +0 G +[1 0 0 1 -426.471 -686.127] cm +[1 0 0 1 0 0] Tm +0 0 Td +426.471 686.127 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 522.113 686.127] cm +0 g +0 G +[1 0 0 1 -522.113 -686.127] cm +[1 0 0 1 0 0] Tm +0 0 Td +525.614 686.127 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 108 674.172] cm +0 g +0 G +[1 0 0 1 -108 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 674.172 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 167.776 674.172] cm +0 g +0 G +[1 0 0 1 -167.776 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +172.13 674.172 Td +/F128_0 9.963 Tf +(may) 17.1563 Tj +-437 TJm +(return) 23.7916 Tj +[1 0 0 1 221.784 674.172] cm +0 g +0 G +[1 0 0 1 -221.784 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +221.784 674.172 Td +/F130_0 9.963 Tf +(BZ_MEM_ERROR) 71.7336 Tj +[1 0 0 1 293.515 674.172] cm +0 g +0 G +[1 0 0 1 -293.515 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +297.867 674.172 Td +/F128_0 9.963 Tf +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-437 TJm +(though) 27.6772 Tj +-437 TJm +(some) 21.0319 Tj +-437 TJm +(of) 8.29918 Tj +-437 TJm +(the) 12.1748 Tj +-437 TJm +(compressed) 47.0353 Tj +-437 TJm +(da) 9.40507 Tj +1 TJm +(ta) 7.19329 Tj +-437 TJm +(has) 13.2807 Tj +-437 TJm +(been) 18.8101 Tj +-437 TJm +(read.) 19.6371 Tj +108 662.217 Td +(The) 15.4925 Tj +-479 TJm +(sam) 16.0504 Tj +1 TJm +(e) 4.42357 Tj +-479 TJm +(is) 6.64532 Tj +-479 TJm +(not) 12.7327 Tj +-478 TJm +(true) 15.4925 Tj +-479 TJm +(for) 11.6169 Tj +-478 TJm +(compression;) 53.1327 Tj +-593 TJm +(once) 18.8101 Tj +[1 0 0 1 301.675 662.217] cm +0 g +0 G +[1 0 0 1 -301.675 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +301.675 662.217 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 409.272 662.217] cm +0 g +0 G +[1 0 0 1 -409.272 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +414.04 662.217 Td +/F128_0 9.963 Tf +(or) 8.29918 Tj +[1 0 0 1 427.107 662.217] cm +0 g +0 G +[1 0 0 1 -427.107 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +427.107 662.217 Td +/F130_0 9.963 Tf +(BZ2_bzWriteOpen) 89.667 Tj +[1 0 0 1 516.771 662.217] cm +0 g +0 G +[1 0 0 1 -516.771 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +521.539 662.217 Td +/F128_0 9.963 Tf +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +108 650.262 Td +(successfully) 48.6991 Tj +-250 TJm +(completed,) 43.9966 Tj +[1 0 0 1 205.672 650.262] cm +0 g +0 G +[1 0 0 1 -205.672 -650.262] cm +[1 0 0 1 0 0] Tm +0 0 Td +205.672 650.262 Td +/F130_0 9.963 Tf +(BZ_MEM_ERROR) 71.7336 Tj +[1 0 0 1 277.403 650.262] cm +0 g +0 G +[1 0 0 1 -277.403 -650.262] cm +[1 0 0 1 0 0] Tm +0 0 Td +279.894 650.262 Td +/F128_0 9.963 Tf +(cannot) 26.5614 Tj +-250 TJm +(occur) 22.1278 Tj +55 TJm +(.) 2.49075 Tj +[1 0 0 1 72 648.105] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.985] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -634.157] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 624.359 Td +/F130_0 9.963 Tf +(BZ_DATA_ERROR) 77.7114 Tj +[1 0 0 1 149.709 624.359] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -80.199 -1.166] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -623.193] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 612.404 Td +/F128_0 9.963 Tf +(Returned) 36.5244 Tj +-265 TJm +(when) 21.5799 Tj +-266 TJm +(a) 4.42357 Tj +-266 TJm +(da) 9.40507 Tj +1 TJm +(ta) 7.19329 Tj +-266 TJm +(inte) 14.9445 Tj +15 TJm +(grity) 18.8201 Tj +-265 TJm +(error) 19.3581 Tj +-266 TJm +(is) 6.64532 Tj +-266 TJm +(dete) 16.5984 Tj +1 TJm +(cted) 16.5984 Tj +-266 TJm +(during) 26.0134 Tj +-266 TJm +(d) 4.9815 Tj +1 TJm +(ecompression.) 57.2773 Tj +-714 TJm +(Most) 20.4839 Tj +-265 TJm +(importantly) 46.4973 Tj +65 TJm +(,) 2.49075 Tj +-270 TJm +(this) 14.3965 Tj +-265 TJm +(means) 25.4555 Tj +-266 TJm +(when) 21.5799 Tj +108 600.448 Td +(stored) 24.3496 Tj +-222 TJm +(and) 14.3866 Tj +-222 TJm +(computed) 39.2941 Tj +-222 TJm +(CRCs) 23.8116 Tj +-223 TJm +(for) 11.6169 Tj +-222 TJm +(the) 12.1748 Tj +-222 TJm +(data) 16.5984 Tj +-222 TJm +(do) 9.963 Tj +-222 TJm +(not) 12.7327 Tj +-223 TJm +(match.) 26.8403 Tj +-601 TJm +(This) 17.7142 Tj +-222 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-222 TJm +(is) 6.64532 Tj +-223 TJm +(also) 16.0504 Tj +-222 TJm +(returned) 33.1967 Tj +-222 TJm +(upon) 19.926 Tj +-222 TJm +(detection) 36.5244 Tj +-222 TJm +(of) 8.29918 Tj +-222 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-223 TJm +(other) 20.474 Tj +108 588.493 Td +(anomaly) 34.3126 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(d) 4.9815 Tj +1 TJm +(ata.) 14.1076 Tj +[1 0 0 1 72 586.336] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.985] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -572.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 562.59 Td +/F130_0 9.963 Tf +(BZ_DATA_ERROR_MAGIC) 113.578 Tj +[1 0 0 1 185.574 562.59] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -116.065 -1.165] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -561.425] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 550.635 Td +/F128_0 9.963 Tf +(As) 11.0689 Tj +-306 TJm +(a) 4.42357 Tj +-306 TJm +(special) 27.6673 Tj +-306 TJm +(case) 17.1463 Tj +-306 TJm +(of) 8.29918 Tj +[1 0 0 1 191.852 550.635] cm +0 g +0 G +[1 0 0 1 -191.852 -550.635] cm +[1 0 0 1 0 0] Tm +0 0 Td +191.852 550.635 Td +/F130_0 9.963 Tf +(BZ_DATA_ERROR) 77.7114 Tj +[1 0 0 1 269.561 550.635] cm +0 g +0 G +[1 0 0 1 -269.561 -550.635] cm +[1 0 0 1 0 0] Tm +0 0 Td +269.561 550.635 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-306 TJm +(it) 5.53943 Tj +-306 TJm +(is) 6.64532 Tj +-306 TJm +(sometimes) 42.6217 Tj +-306 TJm +(useful) 24.3496 Tj +-306 TJm +(to) 7.75121 Tj +-306 TJm +(kno) 14.9445 Tj +25 TJm +(w) 7.19329 Tj +-306 TJm +(when) 21.5799 Tj +-306 TJm +(the) 12.1748 Tj +-307 TJm +(com) 17.1563 Tj +1 TJm +(pressed) 29.879 Tj +-306 TJm +(stream) 26.5614 Tj +-306 TJm +(does) 18.2622 Tj +108 538.68 Td +(not) 12.7327 Tj +-250 TJm +(start) 17.1563 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(correct) 27.6573 Tj +-250 TJm +(m) 7.75121 Tj +1 TJm +(agic) 16.5984 Tj +-250 TJm +(bytes) 21.0319 Tj +-250 TJm +(\() 3.31768 Tj +[1 0 0 1 261.562 538.68] cm +0 g +0 G +[1 0 0 1 -261.562 -538.68] cm +[1 0 0 1 0 0] Tm +0 0 Td +261.562 538.68 Td +/F130_0 9.963 Tf +('B') 17.9334 Tj +-600 TJm +('Z') 17.9334 Tj +-600 TJm +('h') 17.9334 Tj +[1 0 0 1 327.316 538.68] cm +0 g +0 G +[1 0 0 1 -327.316 -538.68] cm +[1 0 0 1 0 0] Tm +0 0 Td +327.316 538.68 Td +/F128_0 9.963 Tf +(\).) 5.80843 Tj +[1 0 0 1 72 536.523] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.985] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -522.576] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 512.777 Td +/F130_0 9.963 Tf +(BZ_IO_ERROR) 65.7558 Tj +[1 0 0 1 137.753 512.777] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -68.244 -1.165] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -511.612] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 500.822 Td +/F128_0 9.963 Tf +(Returned) 36.5244 Tj +-233 TJm +(by) 9.963 Tj +[1 0 0 1 159.123 500.822] cm +0 g +0 G +[1 0 0 1 -159.123 -500.822] cm +[1 0 0 1 0 0] Tm +0 0 Td +159.123 500.822 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 218.899 500.822] cm +0 g +0 G +[1 0 0 1 -218.899 -500.822] cm +[1 0 0 1 0 0] Tm +0 0 Td +221.218 500.822 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 237.922 500.822] cm +0 g +0 G +[1 0 0 1 -237.922 -500.822] cm +[1 0 0 1 0 0] Tm +0 0 Td +237.922 500.822 Td +/F130_0 9.963 Tf +(BZ2_bzWrite) 65.7558 Tj +[1 0 0 1 303.676 500.822] cm +0 g +0 G +[1 0 0 1 -303.676 -500.822] cm +[1 0 0 1 0 0] Tm +0 0 Td +305.995 500.822 Td +/F128_0 9.963 Tf +(when) 21.5799 Tj +-233 TJm +(there) 19.916 Tj +-232 TJm +(is) 6.64532 Tj +-233 TJm +(an) 9.40507 Tj +-233 TJm +(error) 19.3581 Tj +-232 TJm +(reading) 29.879 Tj +-233 TJm +(or) 8.29918 Tj +-233 TJm +(writing) 28.7831 Tj +-232 TJm +(in) 7.75121 Tj +-233 TJm +(the) 12.1748 Tj +-233 TJm +(compress) 37.6303 Tj +1 TJm +(ed) 9.40507 Tj +108 488.867 Td +(\002le,) 15.2235 Tj +-384 TJm +(and) 14.3866 Tj +-357 TJm +(by) 9.963 Tj +[1 0 0 1 158.511 488.867] cm +0 g +0 G +[1 0 0 1 -158.511 -488.867] cm +[1 0 0 1 0 0] Tm +0 0 Td +158.511 488.867 Td +/F130_0 9.963 Tf +(BZ2_bzReadOpen) 83.6892 Tj +[1 0 0 1 242.197 488.867] cm +0 g +0 G +[1 0 0 1 -242.197 -488.867] cm +[1 0 0 1 0 0] Tm +0 0 Td +245.755 488.867 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 263.698 488.867] cm +0 g +0 G +[1 0 0 1 -263.698 -488.867] cm +[1 0 0 1 0 0] Tm +0 0 Td +263.698 488.867 Td +/F130_0 9.963 Tf +(BZ2_bzWriteOpen) 89.667 Tj +[1 0 0 1 353.362 488.867] cm +0 g +0 G +[1 0 0 1 -353.362 -488.867] cm +[1 0 0 1 0 0] Tm +0 0 Td +356.92 488.867 Td +/F128_0 9.963 Tf +(for) 11.6169 Tj +-357 TJm +(attempts) 33.7646 Tj +-357 TJm +(to) 7.75121 Tj +-357 TJm +(use) 13.2807 Tj +-357 TJm +(a) 4.42357 Tj +-357 TJm +(\002le) 12.7327 Tj +-357 TJm +(for) 11.6169 Tj +-357 TJm +(which) 24.3496 Tj +-357 TJm +(the) 12.1748 Tj +-357 TJm +(error) 19.3581 Tj +108 476.912 Td +(indicator) 35.4185 Tj +-260 TJm +(\(viz,) 17.9832 Tj +[1 0 0 1 166.603 476.912] cm +0 g +0 G +[1 0 0 1 -166.603 -476.912] cm +[1 0 0 1 0 0] Tm +0 0 Td +166.603 476.912 Td +/F130_0 9.963 Tf +(ferror\(f\)) 53.8002 Tj +[1 0 0 1 220.401 476.912] cm +0 g +0 G +[1 0 0 1 -220.401 -476.912] cm +[1 0 0 1 0 0] Tm +0 0 Td +220.401 476.912 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +-260 TJm +(is) 6.64532 Tj +-260 TJm +(set.) 13.5596 Tj +-679 TJm +(On) 12.1748 Tj +-260 TJm +(receipt) 27.1093 Tj +-260 TJm +(of) 8.29918 Tj +[1 0 0 1 311.223 476.912] cm +0 g +0 G +[1 0 0 1 -311.223 -476.912] cm +[1 0 0 1 0 0] Tm +0 0 Td +311.223 476.912 Td +/F130_0 9.963 Tf +(BZ_IO_ERROR) 65.7558 Tj +[1 0 0 1 376.976 476.912] cm +0 g +0 G +[1 0 0 1 -376.976 -476.912] cm +[1 0 0 1 0 0] Tm +0 0 Td +376.976 476.912 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-260 TJm +(the) 12.1748 Tj +-260 TJm +(caller) 22.1278 Tj +-260 TJm +(should) 26.5713 Tj +-259 TJm +(consult) 28.7831 Tj +[1 0 0 1 482.068 476.912] cm +0 g +0 G +[1 0 0 1 -482.068 -476.912] cm +[1 0 0 1 0 0] Tm +0 0 Td +482.068 476.912 Td +/F130_0 9.963 Tf +(errno) 29.889 Tj +[1 0 0 1 511.956 476.912] cm +0 g +0 G +[1 0 0 1 -511.956 -476.912] cm +[1 0 0 1 0 0] Tm +0 0 Td +514.546 476.912 Td +/F128_0 9.963 Tf +(and/or) 25.4555 Tj +[1 0 0 1 108 464.957] cm +0 g +0 G +[1 0 0 1 -108 -464.957] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 464.957 Td +/F130_0 9.963 Tf +(perror) 35.8668 Tj +[1 0 0 1 143.865 464.957] cm +0 g +0 G +[1 0 0 1 -143.865 -464.957] cm +[1 0 0 1 0 0] Tm +0 0 Td +146.356 464.957 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(acquire) 29.3211 Tj +-250 TJm +(operating-system) 68.6251 Tj +-249 TJm +(speci\002c) 30.437 Tj +-250 TJm +(information) 47.0453 Tj +-250 TJm +(about) 22.1378 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(problem.) 35.6974 Tj +[1 0 0 1 72 462.8] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.985] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -448.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 439.054 Td +/F130_0 9.963 Tf +(BZ_UNEXPECTED_EOF) 101.623 Tj +[1 0 0 1 173.619 439.054] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -104.11 -1.166] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -437.888] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 427.099 Td +/F128_0 9.963 Tf +(Returned) 36.5244 Tj +-250 TJm +(by) 9.963 Tj +[1 0 0 1 159.467 427.099] cm +0 g +0 G +[1 0 0 1 -159.467 -427.099] cm +[1 0 0 1 0 0] Tm +0 0 Td +159.467 427.099 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 219.242 427.099] cm +0 g +0 G +[1 0 0 1 -219.242 -427.099] cm +[1 0 0 1 0 0] Tm +0 0 Td +221.733 427.099 Td +/F128_0 9.963 Tf +(when) 21.5799 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(\002le) 12.7327 Tj +-250 TJm +(\002nis) 17.1662 Tj +1 TJm +(hes) 13.2807 Tj +-250 TJm +(before) 25.4455 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(logical) 27.1193 Tj +-250 TJm +(end) 14.3866 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(stream) 26.5614 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(detected.) 35.6875 Tj +[1 0 0 1 72 424.942] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.985] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -410.994] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 401.196 Td +/F130_0 9.963 Tf +(BZ_OUTBUFF_FULL) 89.667 Tj +[1 0 0 1 161.664 401.196] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -92.154 -1.166] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -400.03] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 389.241 Td +/F128_0 9.963 Tf +(Returned) 36.5244 Tj +-258 TJm +(by) 9.963 Tj +[1 0 0 1 159.632 389.241] cm +0 g +0 G +[1 0 0 1 -159.632 -389.241] cm +[1 0 0 1 0 0] Tm +0 0 Td +159.632 389.241 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffCompress) 143.467 Tj +[1 0 0 1 303.094 389.241] cm +0 g +0 G +[1 0 0 1 -303.094 -389.241] cm +[1 0 0 1 0 0] Tm +0 0 Td +305.667 389.241 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 322.627 389.241] cm +0 g +0 G +[1 0 0 1 -322.627 -389.241] cm +[1 0 0 1 0 0] Tm +0 0 Td +322.627 389.241 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffDecompres) 149.445 Tj +1 TJm +(s) 5.9778 Tj +[1 0 0 1 478.044 389.241] cm +0 g +0 G +[1 0 0 1 -478.044 -389.241] cm +[1 0 0 1 0 0] Tm +0 0 Td +480.617 389.241 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-258 TJm +(indicate) 31.5429 Tj +-258 TJm +(that) 14.9445 Tj +108 377.285 Td +(the) 12.1748 Tj +-250 TJm +(output) 25.4654 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(will) 15.5024 Tj +-250 TJm +(not) 12.7327 Tj +-250 TJm +(\002t) 8.30914 Tj +-250 TJm +(in) 7.75121 Tj +1 TJm +(to) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(output) 25.4654 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-250 TJm +(pro) 13.2807 Tj +15 TJm +(vided.) 24.6285 Tj +[1 0 0 1 72 375.129] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -3.985] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -351.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 328.585 Td +/F121_0 20.659 Tf +(3.3.) 34.4592 Tj +-278 TJm +(Lo) 25.2453 Tj +15 TJm +(w-le) 40.1818 Tj +15 TJm +(vel) 28.716 Tj +-278 TJm +(interface) 86.1067 Tj +[1 0 0 1 72 328.327] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -318.364] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 297.964 Td +/F121_0 17.215 Tf +(3.3.1.) 43.0719 Tj +[1 0 0 1 119.858 297.964] cm +0 g +0 G +[1 0 0 1 -119.858 -297.964] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 297.964 Td +/F387_0 17.215 Tf +(BZ2_bzCompressInit) 185.922 Tj +[1 0 0 1 305.785 297.964] cm +0 g +0 G +[1 0 0 1 -233.785 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -244.779] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.754] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.754] cm +0 g +0 G +[1 0 0 1 -493.841 -50.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.852 Td +/F128_0 9.963 Tf +(11) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 15 15 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -296.523] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 274.969 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 271.382] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(typedef) 41.8446 Tj +-426 TJm +(struct) 35.8668 Tj +-426 TJm +({) 5.9778 Tj +98.488 699.676 Td +(char) 23.9112 Tj +-426 TJm +(*next_in;) 53.8002 Tj +98.488 687.721 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(avail_in;) 53.8002 Tj +98.488 675.766 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(total_in_lo3) 71.7336 Tj +1 TJm +(2;) 11.9556 Tj +98.488 663.811 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(total_in_hi3) 71.7336 Tj +1 TJm +(2;) 11.9556 Tj +98.488 639.9 Td +(char) 23.9112 Tj +-426 TJm +(*next_out;) 59.778 Tj +98.488 627.945 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(avail_out;) 59.778 Tj +98.488 615.99 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(total_out_lo) 71.7336 Tj +1 TJm +(32;) 17.9334 Tj +98.488 604.035 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(total_out_hi) 71.7336 Tj +1 TJm +(32;) 17.9334 Tj +98.488 580.124 Td +(void) 23.9112 Tj +-426 TJm +(*state;) 41.8446 Tj +98.488 556.214 Td +(void) 23.9112 Tj +-426 TJm +(*\(*bzalloc\)\(void) 95.6448 Tj +-426 TJm +(*,i) 17.9334 Tj +1 TJm +(nt,int\);) 47.8224 Tj +98.488 544.259 Td +(void) 23.9112 Tj +-426 TJm +(\(*bzfree\)\(void) 83.6892 Tj +-426 TJm +(*,voi) 29.889 Tj +1 TJm +(d) 5.9778 Tj +-426 TJm +(*\);) 17.9334 Tj +98.488 532.304 Td +(void) 23.9112 Tj +-426 TJm +(*opaque;) 47.8224 Tj +90 520.349 Td +(}) 5.9778 Tj +-426 TJm +(bz_stream;) 59.778 Tj +90 496.438 Td +(int) 17.9334 Tj +-426 TJm +(BZ2_bzCompressInit) 107.6 Tj +-426 TJm +(\() 5.9778 Tj +-425 TJm +(bz_stream) 53.8002 Tj +-426 TJm +(*strm,) 35.8668 Tj +196.099 484.483 Td +(int) 17.9334 Tj +-426 TJm +(blockSize100k,) 83.6892 Tj +196.099 472.528 Td +(int) 17.9334 Tj +-426 TJm +(verbosity,) 59.778 Tj +196.099 460.573 Td +(int) 17.9334 Tj +-426 TJm +(workFactor) 59.778 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 445.031] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -435.068] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 423.113 Td +/F128_0 9.963 Tf +(Prepares) 34.3026 Tj +-356 TJm +(for) 11.6169 Tj +-356 TJm +(compressi) 40.4 Tj +1 TJm +(on.) 12.4538 Tj +-1256 TJm +(The) 15.4925 Tj +[1 0 0 1 209.409 423.113] cm +0 g +0 G +[1 0 0 1 -209.409 -423.113] cm +[1 0 0 1 0 0] Tm +0 0 Td +209.409 423.113 Td +/F130_0 9.963 Tf +(bz_stream) 53.8002 Tj +[1 0 0 1 263.208 423.113] cm +0 g +0 G +[1 0 0 1 -263.208 -423.113] cm +[1 0 0 1 0 0] Tm +0 0 Td +266.754 423.113 Td +/F128_0 9.963 Tf +(structure) 34.8605 Tj +-356 TJm +(holds) 21.5898 Tj +-356 TJm +(all) 9.963 Tj +-356 TJm +(d) 4.9815 Tj +1 TJm +(ata) 11.6169 Tj +-356 TJm +(pertaining) 40.4 Tj +-356 TJm +(to) 7.75121 Tj +-356 TJm +(the) 12.1748 Tj +-356 TJm +(compression) 50.363 Tj +-356 TJm +(acti) 14.3866 Tj +25 TJm +(vit) 10.5209 Tj +1 TJm +(y) 4.9815 Tj +65 TJm +(.) 2.49075 Tj +-1256 TJm +(A) 7.19329 Tj +[1 0 0 1 72 411.158] cm +0 g +0 G +[1 0 0 1 -72 -411.158] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 411.158 Td +/F130_0 9.963 Tf +(bz_stream) 53.8002 Tj +[1 0 0 1 125.798 411.158] cm +0 g +0 G +[1 0 0 1 -125.798 -411.158] cm +[1 0 0 1 0 0] Tm +0 0 Td +128.581 411.158 Td +/F128_0 9.963 Tf +(structure) 34.8605 Tj +-279 TJm +(should) 26.5713 Tj +-279 TJm +(be) 9.40507 Tj +-280 TJm +(allocate) 30.9849 Tj +1 TJm +(d) 4.9815 Tj +-280 TJm +(and) 14.3866 Tj +-279 TJm +(initialised) 39.304 Tj +-279 TJm +(prior) 19.3681 Tj +-279 TJm +(to) 7.75121 Tj +-280 TJm +(the) 12.1748 Tj +-279 TJm +(call.) 16.8773 Tj +-796 TJm +(The) 15.4925 Tj +-279 TJm +(\002elds) 21.5898 Tj +-279 TJm +(of) 8.29918 Tj +[1 0 0 1 431.939 411.158] cm +0 g +0 G +[1 0 0 1 -431.939 -411.158] cm +[1 0 0 1 0 0] Tm +0 0 Td +431.939 411.158 Td +/F130_0 9.963 Tf +(bz_stream) 53.8002 Tj +[1 0 0 1 485.738 411.158] cm +0 g +0 G +[1 0 0 1 -485.738 -411.158] cm +[1 0 0 1 0 0] Tm +0 0 Td +488.52 411.158 Td +/F128_0 9.963 Tf +(comprise) 36.5244 Tj +-279 TJm +(the) 12.1748 Tj +72 399.203 Td +(entirety) 30.437 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(user) 16.5984 Tj +20 TJm +(-visible) 29.889 Tj +-250 TJm +(d) 4.9815 Tj +1 TJm +(ata.) 14.1076 Tj +[1 0 0 1 204.422 399.203] cm +0 g +0 G +[1 0 0 1 -204.422 -399.203] cm +[1 0 0 1 0 0] Tm +0 0 Td +204.422 399.203 Td +/F130_0 9.963 Tf +(state) 29.889 Tj +[1 0 0 1 234.31 399.203] cm +0 g +0 G +[1 0 0 1 -234.31 -399.203] cm +[1 0 0 1 0 0] Tm +0 0 Td +236.8 399.203 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(pointer) 28.2252 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(pri) 11.0689 Tj +25 TJm +(v) 4.9815 Tj +25 TJm +(ate) 11.6169 Tj +-250 TJm +(data) 16.5984 Tj +-249 TJm +(structures) 38.7361 Tj +-250 TJm +(required) 33.1967 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(compression.) 52.8537 Tj +[1 0 0 1 72 397.046] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -387.084] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 377.285 Td +/F128_0 9.963 Tf +(Custom) 31.0049 Tj +-372 TJm +(memory) 33.2067 Tj +-372 TJm +(allocators) 38.7361 Tj +-372 TJm +(are) 12.1648 Tj +-372 TJm +(supported,) 41.7848 Tj +-402 TJm +(via) 12.1748 Tj +-372 TJm +(\002elds) 21.5898 Tj +[1 0 0 1 288.908 377.285] cm +0 g +0 G +[1 0 0 1 -288.908 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +288.908 377.285 Td +/F130_0 9.963 Tf +(bzalloc) 41.8446 Tj +[1 0 0 1 330.751 377.285] cm +0 g +0 G +[1 0 0 1 -330.751 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +330.751 377.285 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 337.253 377.285] cm +0 g +0 G +[1 0 0 1 -337.253 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +337.253 377.285 Td +/F130_0 9.963 Tf +(bzfree) 35.8668 Tj +[1 0 0 1 373.118 377.285] cm +0 g +0 G +[1 0 0 1 -373.118 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +373.118 377.285 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-403 TJm +(and) 14.3866 Tj +[1 0 0 1 397.714 377.285] cm +0 g +0 G +[1 0 0 1 -397.714 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +397.714 377.285 Td +/F130_0 9.963 Tf +(opaque) 35.8668 Tj +[1 0 0 1 433.579 377.285] cm +0 g +0 G +[1 0 0 1 -433.579 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +433.579 377.285 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1353 TJm +(The) 15.4925 Tj +-372 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +[1 0 0 1 493.782 377.285] cm +0 g +0 G +[1 0 0 1 -493.782 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +493.782 377.285 Td +/F130_0 9.963 Tf +(opaque) 35.8668 Tj +[1 0 0 1 529.648 377.285] cm +0 g +0 G +[1 0 0 1 -529.648 -377.285] cm +[1 0 0 1 0 0] Tm +0 0 Td +533.355 377.285 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +72 365.33 Td +(passed) 26.5614 Tj +-306 TJm +(to) 7.75121 Tj +-306 TJm +(as) 8.29918 Tj +-306 TJm +(the) 12.1748 Tj +-306 TJm +(\002) 5.53943 Tj +1 TJm +(rst) 9.963 Tj +-306 TJm +(ar) 7.74125 Tj +18 TJm +(gument) 29.889 Tj +-306 TJm +(to) 7.75121 Tj +-306 TJm +(all) 9.963 Tj +-306 TJm +(calls) 18.2622 Tj +-306 TJm +(to) 7.75121 Tj +[1 0 0 1 253.941 365.33] cm +0 g +0 G +[1 0 0 1 -253.941 -365.33] cm +[1 0 0 1 0 0] Tm +0 0 Td +253.941 365.33 Td +/F130_0 9.963 Tf +(bzalloc) 41.8446 Tj +[1 0 0 1 295.784 365.33] cm +0 g +0 G +[1 0 0 1 -295.784 -365.33] cm +[1 0 0 1 0 0] Tm +0 0 Td +298.832 365.33 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 316.266 365.33] cm +0 g +0 G +[1 0 0 1 -316.266 -365.33] cm +[1 0 0 1 0 0] Tm +0 0 Td +316.266 365.33 Td +/F130_0 9.963 Tf +(bzfree) 35.8668 Tj +[1 0 0 1 352.132 365.33] cm +0 g +0 G +[1 0 0 1 -352.132 -365.33] cm +[1 0 0 1 0 0] Tm +0 0 Td +352.132 365.33 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-320 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-306 TJm +(is) 6.64532 Tj +-306 TJm +(otherwise) 38.7361 Tj +-305 TJm +(ignored) 30.437 Tj +-306 TJm +(by) 9.963 Tj +-306 TJm +(the) 12.1748 Tj +-306 TJm +(library) 26.5614 Tj +65 TJm +(.) 2.49075 Tj +-956 TJm +(The) 15.4925 Tj +72 353.375 Td +(call) 14.3866 Tj +[1 0 0 1 89.431 353.375] cm +0 g +0 G +[1 0 0 1 -89.431 -353.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +89.431 353.375 Td +/F130_0 9.963 Tf +(bzalloc) 41.8446 Tj +-600 TJm +(\() 5.9778 Tj +-600 TJm +(opaque,) 41.8446 Tj +-600 TJm +(n,) 11.9556 Tj +-600 TJm +(m) 5.9778 Tj +-600 TJm +(\)) 5.9778 Tj +[1 0 0 1 232.893 353.375] cm +0 g +0 G +[1 0 0 1 -232.893 -353.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +235.938 353.375 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-306 TJm +(e) 4.42357 Tj +15 TJm +(xpect) 21.5799 Tj +1 TJm +(ed) 9.40507 Tj +-306 TJm +(to) 7.75121 Tj +-306 TJm +(return) 23.7916 Tj +-305 TJm +(a) 4.42357 Tj +-306 TJm +(pointer) 28.2252 Tj +[1 0 0 1 360.3 353.375] cm +0 g +0 G +[1 0 0 1 -360.3 -353.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +360.3 353.375 Td +/F130_0 9.963 Tf +(p) 5.9778 Tj +[1 0 0 1 366.277 353.375] cm +0 g +0 G +[1 0 0 1 -366.277 -353.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +369.322 353.375 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +[1 0 0 1 380.118 353.375] cm +0 g +0 G +[1 0 0 1 -380.118 -353.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +380.118 353.375 Td +/F130_0 9.963 Tf +(n) 5.9778 Tj +-600 TJm +(*) 5.9778 Tj +-600 TJm +(m) 5.9778 Tj +[1 0 0 1 410.006 353.375] cm +0 g +0 G +[1 0 0 1 -410.006 -353.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +413.051 353.375 Td +/F128_0 9.963 Tf +(bytes) 21.0319 Tj +-306 TJm +(of) 8.29918 Tj +-305 TJm +(memory) 33.2067 Tj +65 TJm +(,) 2.49075 Tj +-320 TJm +(and) 14.3866 Tj +[1 0 0 1 504.135 353.375] cm +0 g +0 G +[1 0 0 1 -504.135 -353.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +504.135 353.375 Td +/F130_0 9.963 Tf +(bzfree) 35.8668 Tj +72 341.42 Td +(\() 5.9778 Tj +-600 TJm +(opaque,) 41.8446 Tj +-600 TJm +(p) 5.9778 Tj +-600 TJm +(\)) 5.9778 Tj +[1 0 0 1 149.709 341.42] cm +0 g +0 G +[1 0 0 1 -149.709 -341.42] cm +[1 0 0 1 0 0] Tm +0 0 Td +152.199 341.42 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-250 TJm +(free) 15.4825 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(memory) 33.2067 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 339.263] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -329.3] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 319.502 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-280 TJm +(you) 14.9445 Tj +-280 TJm +(don') 18.2622 Tj +18 TJm +(t) 2.76971 Tj +-279 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-280 TJm +(to) 7.75121 Tj +-280 TJm +(use) 13.2807 Tj +-280 TJm +(a) 4.42357 Tj +-279 TJm +(custom) 28.7831 Tj +-280 TJm +(memory) 33.2067 Tj +-280 TJm +(allocator) 34.8605 Tj +40 TJm +(,) 2.49075 Tj +-287 TJm +(set) 11.0689 Tj +[1 0 0 1 299.9 319.502] cm +0 g +0 G +[1 0 0 1 -299.9 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +299.9 319.502 Td +/F130_0 9.963 Tf +(bzalloc) 41.8446 Tj +[1 0 0 1 341.743 319.502] cm +0 g +0 G +[1 0 0 1 -341.743 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +341.743 319.502 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 347.096 319.502] cm +0 g +0 G +[1 0 0 1 -347.096 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +347.096 319.502 Td +/F130_0 9.963 Tf +(bzfree) 35.8668 Tj +[1 0 0 1 382.961 319.502] cm +0 g +0 G +[1 0 0 1 -382.961 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +385.749 319.502 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 402.923 319.502] cm +0 g +0 G +[1 0 0 1 -402.923 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +402.923 319.502 Td +/F130_0 9.963 Tf +(opaque) 35.8668 Tj +[1 0 0 1 438.788 319.502] cm +0 g +0 G +[1 0 0 1 -438.788 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +441.576 319.502 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +[1 0 0 1 452.115 319.502] cm +0 g +0 G +[1 0 0 1 -452.115 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +452.115 319.502 Td +/F130_0 9.963 Tf +(NULL) 23.9112 Tj +[1 0 0 1 476.025 319.502] cm +0 g +0 G +[1 0 0 1 -476.025 -319.502] cm +[1 0 0 1 0 0] Tm +0 0 Td +476.025 319.502 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-280 TJm +(and) 14.3866 Tj +-280 TJm +(the) 12.1748 Tj +-279 TJm +(library) 26.5614 Tj +72 307.547 Td +(will) 15.5024 Tj +-250 TJm +(then) 17.1563 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(standard) 33.7546 Tj +[1 0 0 1 176.318 307.547] cm +0 g +0 G +[1 0 0 1 -176.318 -307.547] cm +[1 0 0 1 0 0] Tm +0 0 Td +176.318 307.547 Td +/F130_0 9.963 Tf +(malloc) 35.8668 Tj +[1 0 0 1 212.183 307.547] cm +0 g +0 G +[1 0 0 1 -212.183 -307.547] cm +[1 0 0 1 0 0] Tm +0 0 Td +214.674 307.547 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 219.934 307.547] cm +0 g +0 G +[1 0 0 1 -219.934 -307.547] cm +[1 0 0 1 0 0] Tm +0 0 Td +219.934 307.547 Td +/F130_0 9.963 Tf +(free) 23.9112 Tj +[1 0 0 1 243.844 307.547] cm +0 g +0 G +[1 0 0 1 -243.844 -307.547] cm +[1 0 0 1 0 0] Tm +0 0 Td +246.335 307.547 Td +/F128_0 9.963 Tf +(routines.) 34.5915 Tj +[1 0 0 1 72 307.338] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -297.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 285.629 Td +/F128_0 9.963 Tf +(Before) 27.1093 Tj +-362 TJm +(calling) 27.1193 Tj +[1 0 0 1 133.438 285.629] cm +0 g +0 G +[1 0 0 1 -133.438 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +133.438 285.629 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 241.035 285.629] cm +0 g +0 G +[1 0 0 1 -241.035 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +241.035 285.629 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-390 TJm +(\002elds) 21.5898 Tj +[1 0 0 1 272.606 285.629] cm +0 g +0 G +[1 0 0 1 -272.606 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +272.606 285.629 Td +/F130_0 9.963 Tf +(bzalloc) 41.8446 Tj +[1 0 0 1 314.449 285.629] cm +0 g +0 G +[1 0 0 1 -314.449 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +314.449 285.629 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 320.825 285.629] cm +0 g +0 G +[1 0 0 1 -320.825 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +320.825 285.629 Td +/F130_0 9.963 Tf +(bzfree) 35.8668 Tj +[1 0 0 1 356.69 285.629] cm +0 g +0 G +[1 0 0 1 -356.69 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +360.296 285.629 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 378.288 285.629] cm +0 g +0 G +[1 0 0 1 -378.288 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +378.288 285.629 Td +/F130_0 9.963 Tf +(opaque) 35.8668 Tj +[1 0 0 1 414.154 285.629] cm +0 g +0 G +[1 0 0 1 -414.154 -285.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +417.76 285.629 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-362 TJm +(be) 9.40507 Tj +-362 TJm +(\002lled) 20.4839 Tj +-362 TJm +(appropriat) 40.9479 Tj +1 TJm +(ely) 12.1748 Tj +65 TJm +(,) 2.49075 Tj +72 273.674 Td +(as) 8.29918 Tj +-322 TJm +(just) 14.3965 Tj +-323 TJm +(described.) 40.669 Tj +-1055 TJm +(U) 7.19329 Tj +1 TJm +(pon) 14.9445 Tj +-323 TJm +(return,) 26.2824 Tj +-340 TJm +(the) 12.1748 Tj +-323 TJm +(internal) 30.437 Tj +-322 TJm +(state) 18.2622 Tj +-322 TJm +(will) 15.5024 Tj +-323 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-322 TJm +(been) 18.8101 Tj +-323 TJm +(allocated) 35.9664 Tj +-322 TJm +(and) 14.3866 Tj +-322 TJm +(initialised,) 41.7948 Tj +-341 TJm +(and) 14.3866 Tj +[1 0 0 1 459.801 273.674] cm +0 g +0 G +[1 0 0 1 -459.801 -273.674] cm +[1 0 0 1 0 0] Tm +0 0 Td +459.801 273.674 Td +/F130_0 9.963 Tf +(total_in_lo32) 77.7114 Tj +[1 0 0 1 537.509 273.674] cm +0 g +0 G +[1 0 0 1 -537.509 -273.674] cm +[1 0 0 1 0 0] Tm +0 0 Td +537.509 273.674 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 72 261.719] cm +0 g +0 G +[1 0 0 1 -72 -261.719] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 261.719 Td +/F130_0 9.963 Tf +(total_in_hi32) 77.7114 Tj +[1 0 0 1 149.709 261.719] cm +0 g +0 G +[1 0 0 1 -149.709 -261.719] cm +[1 0 0 1 0 0] Tm +0 0 Td +149.709 261.719 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 155.006 261.719] cm +0 g +0 G +[1 0 0 1 -155.006 -261.719] cm +[1 0 0 1 0 0] Tm +0 0 Td +155.006 261.719 Td +/F130_0 9.963 Tf +(total_out_lo32) 83.6892 Tj +[1 0 0 1 238.692 261.719] cm +0 g +0 G +[1 0 0 1 -238.692 -261.719] cm +[1 0 0 1 0 0] Tm +0 0 Td +241.435 261.719 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 258.564 261.719] cm +0 g +0 G +[1 0 0 1 -258.564 -261.719] cm +[1 0 0 1 0 0] Tm +0 0 Td +258.564 261.719 Td +/F130_0 9.963 Tf +(total_out_hi32) 83.6892 Tj +[1 0 0 1 342.25 261.719] cm +0 g +0 G +[1 0 0 1 -342.25 -261.719] cm +[1 0 0 1 0 0] Tm +0 0 Td +344.994 261.719 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-275 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-276 TJm +(b) 4.9815 Tj +1 TJm +(een) 13.8286 Tj +-276 TJm +(set) 11.0689 Tj +-275 TJm +(to) 7.75121 Tj +-275 TJm +(zero.) 19.6371 Tj +-772 TJm +(These) 23.7916 Tj +-276 TJm +(four) 16.5984 Tj +-275 TJm +(\002elds) 21.5898 Tj +-275 TJm +(are) 12.1648 Tj +72 249.763 Td +(used) 18.2622 Tj +-339 TJm +(by) 9.963 Tj +-340 TJm +(the) 12.1748 Tj +-339 TJm +(library) 26.5614 Tj +-340 TJm +(to) 7.75121 Tj +-339 TJm +(inform) 27.1193 Tj +-340 TJm +(the) 12.1748 Tj +-339 TJm +(caller) 22.1278 Tj +-340 TJm +(of) 8.29918 Tj +-339 TJm +(the) 12.1748 Tj +-340 TJm +(total) 17.7142 Tj +-339 TJm +(amount) 29.889 Tj +-340 TJm +(of) 8.29918 Tj +-339 TJm +(data) 16.5984 Tj +-339 TJm +(passed) 26.5614 Tj +-340 TJm +(into) 15.5024 Tj +-339 TJm +(and) 14.3866 Tj +-340 TJm +(out) 12.7327 Tj +-339 TJm +(of) 8.29918 Tj +-340 TJm +(the) 12.1748 Tj +-339 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-362 TJm +(respecti) 30.9849 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ely) 12.1748 Tj +65 TJm +(.) 2.49075 Tj +72 237.808 Td +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-376 TJm +(should) 26.5713 Tj +-377 TJm +(not) 12.7327 Tj +-376 TJm +(try) 11.0689 Tj +-376 TJm +(to) 7.75121 Tj +-377 TJm +(c) 4.42357 Tj +1 TJm +(hange) 23.7916 Tj +-377 TJm +(them.) 22.4168 Tj +-1378 TJm +(As) 11.0689 Tj +-376 TJm +(of) 8.29918 Tj +-377 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +1 TJm +(rsion) 19.926 Tj +-377 TJm +(1.0,) 14.9445 Tj +-408 TJm +(64-bit) 23.8016 Tj +-376 TJm +(counts) 26.0134 Tj +-376 TJm +(are) 12.1648 Tj +-376 TJm +(maintained,) 46.7663 Tj +-408 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-377 TJm +(on) 9.963 Tj +-376 TJm +(32-bit) 23.8016 Tj +-376 TJm +(platforms,) 40.6789 Tj +72 225.853 Td +(using) 21.5898 Tj +-371 TJm +(the) 12.1748 Tj +[1 0 0 1 113.148 225.853] cm +0 g +0 G +[1 0 0 1 -113.148 -225.853] cm +[1 0 0 1 0 0] Tm +0 0 Td +113.148 225.853 Td +/F130_0 9.963 Tf +(_hi32) 29.889 Tj +[1 0 0 1 143.036 225.853] cm +0 g +0 G +[1 0 0 1 -143.036 -225.853] cm +[1 0 0 1 0 0] Tm +0 0 Td +146.729 225.853 Td +/F128_0 9.963 Tf +(\002elds) 21.5898 Tj +-371 TJm +(to) 7.75121 Tj +-370 TJm +(store) 19.3681 Tj +-371 TJm +(the) 12.1748 Tj +-370 TJm +(upper) 22.6858 Tj +-371 TJm +(32) 9.963 Tj +-370 TJm +(bits) 14.3965 Tj +-371 TJm +(of) 8.29918 Tj +-371 TJm +(the) 12.1748 Tj +-370 TJm +(count.) 24.6285 Tj +-1344 TJm +(So,) 13.0117 Tj +-401 TJm +(for) 11.6169 Tj +-370 TJm +(e) 4.42357 Tj +15 TJm +(xample,) 31.8218 Tj +-401 TJm +(the) 12.1748 Tj +-370 TJm +(total) 17.7142 Tj +-371 TJm +(amount) 29.889 Tj +-371 TJm +(of) 8.29918 Tj +-370 TJm +(data) 16.5984 Tj +-371 TJm +(in) 7.75121 Tj +-370 TJm +(is) 6.64532 Tj +[1 0 0 1 72 213.898] cm +0 g +0 G +[1 0 0 1 -72 -213.898] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 213.898 Td +/F130_0 9.963 Tf +(\(total_in_hi32) 83.6892 Tj +-600 TJm +(<<) 11.9556 Tj +-600 TJm +(32\)) 17.9334 Tj +-600 TJm +(+) 5.9778 Tj +-600 TJm +(to) 11.9556 Tj +1 TJm +(tal_in_lo32) 65.7558 Tj +[1 0 0 1 293.171 213.898] cm +0 g +0 G +[1 0 0 1 -293.171 -213.898] cm +[1 0 0 1 0 0] Tm +0 0 Td +293.171 213.898 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 212.732] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -202.77] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 191.98 Td +/F128_0 9.963 Tf +(P) 5.53943 Tj +15 TJm +(arameter) 34.8506 Tj +[1 0 0 1 115.367 191.98] cm +0 g +0 G +[1 0 0 1 -115.367 -191.98] cm +[1 0 0 1 0 0] Tm +0 0 Td +115.367 191.98 Td +/F130_0 9.963 Tf +(blockSize100k) 77.7114 Tj +[1 0 0 1 193.076 191.98] cm +0 g +0 G +[1 0 0 1 -193.076 -191.98] cm +[1 0 0 1 0 0] Tm +0 0 Td +196.205 191.98 Td +/F128_0 9.963 Tf +(speci\002es) 34.3126 Tj +-314 TJm +(the) 12.1748 Tj +-314 TJm +(block) 22.1378 Tj +-314 TJm +(size) 15.4925 Tj +-314 TJm +(to) 7.75121 Tj +-314 TJm +(be) 9.40507 Tj +-314 TJm +(used) 18.2622 Tj +-314 TJm +(for) 11.6169 Tj +-314 TJm +(comp) 22.1378 Tj +1 TJm +(ression.) 30.7159 Tj +-1005 TJm +(It) 6.08739 Tj +-314 TJm +(sh) 8.85711 Tj +1 TJm +(ould) 17.7142 Tj +-314 TJm +(be) 9.40507 Tj +-314 TJm +(a) 4.42357 Tj +-314 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-314 TJm +(between) 33.1967 Tj +-314 TJm +(1) 4.9815 Tj +72 180.025 Td +(and) 14.3866 Tj +-289 TJm +(9) 4.9815 Tj +-289 TJm +(inclusi) 26.5713 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e,) 6.91432 Tj +-299 TJm +(and) 14.3866 Tj +-289 TJm +(the) 12.1748 Tj +-289 TJm +(actua) 21.0219 Tj +1 TJm +(l) 2.76971 Tj +-290 TJm +(b) 4.9815 Tj +1 TJm +(lock) 17.1563 Tj +-289 TJm +(size) 15.4925 Tj +-289 TJm +(used) 18.2622 Tj +-289 TJm +(is) 6.64532 Tj +-289 TJm +(100000) 29.889 Tj +-289 TJm +(x) 4.9815 Tj +-289 TJm +(this) 14.3965 Tj +-289 TJm +(\002gure.) 25.7344 Tj +-854 TJm +(9) 4.9815 Tj +-289 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-289 TJm +(the) 12.1748 Tj +-289 TJm +(best) 16.0504 Tj +-289 TJm +(compression) 50.363 Tj +-289 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-289 TJm +(tak) 12.1748 Tj +10 TJm +(es) 8.29918 Tj +-289 TJm +(most) 19.378 Tj +72 168.07 Td +(memory) 33.2067 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 165.913] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -155.95] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 146.152 Td +/F128_0 9.963 Tf +(P) 5.53943 Tj +15 TJm +(arameter) 34.8506 Tj +[1 0 0 1 115.095 146.152] cm +0 g +0 G +[1 0 0 1 -115.095 -146.152] cm +[1 0 0 1 0 0] Tm +0 0 Td +115.095 146.152 Td +/F130_0 9.963 Tf +(verbosity) 53.8002 Tj +[1 0 0 1 168.894 146.152] cm +0 g +0 G +[1 0 0 1 -168.894 -146.152] cm +[1 0 0 1 0 0] Tm +0 0 Td +171.75 146.152 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-287 TJm +(be) 9.40507 Tj +-286 TJm +(set) 11.0689 Tj +-287 TJm +(to) 7.75121 Tj +-287 TJm +(a) 4.42357 Tj +-286 TJm +(number) 30.437 Tj +-287 TJm +(between) 33.1967 Tj +-287 TJm +(0) 4.9815 Tj +-286 TJm +(and) 14.3866 Tj +-287 TJm +(4) 4.9815 Tj +-287 TJm +(inclusi) 26.5713 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e.) 6.91432 Tj +-840 TJm +(0) 4.9815 Tj +-287 TJm +(is) 6.64532 Tj +-286 TJm +(silent,) 24.0806 Tj +-296 TJm +(and) 14.3866 Tj +-287 TJm +(greater) 27.6573 Tj +-286 TJm +(numbers) 34.3126 Tj +-287 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +72 134.197 Td +(increasingly) 48.6991 Tj +-342 TJm +(v) 4.9815 Tj +15 TJm +(erbose) 26.0034 Tj +-342 TJm +(monitoring/deb) 61.4418 Tj +20 TJm +(ugging) 27.6772 Tj +-342 TJm +(output.) 27.9562 Tj +-1173 TJm +(If) 6.63536 Tj +-342 TJm +(the) 12.1748 Tj +-342 TJm +(library) 26.5614 Tj +-342 TJm +(has) 13.2807 Tj +-342 TJm +(been) 18.8101 Tj +-342 TJm +(compiled) 37.0823 Tj +-342 TJm +(with) 17.7142 Tj +[1 0 0 1 446.429 134.197] cm +0 g +0 G +[1 0 0 1 -446.429 -134.197] cm +[1 0 0 1 0 0] Tm +0 0 Td +446.429 134.197 Td +/F130_0 9.963 Tf +(-DBZ_NO_STDIO) 77.7114 Tj +[1 0 0 1 524.138 134.197] cm +0 g +0 G +[1 0 0 1 -524.138 -134.197] cm +[1 0 0 1 0 0] Tm +0 0 Td +524.138 134.197 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-342 TJm +(no) 9.963 Tj +72 122.242 Td +(such) 18.2622 Tj +-250 TJm +(output) 25.4654 Tj +-250 TJm +(will) 15.5024 Tj +-250 TJm +(appear) 26.5514 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-249 TJm +(v) 4.9815 Tj +15 TJm +(erbosity) 32.1008 Tj +-250 TJm +(setting.) 29.0621 Tj +[1 0 0 1 72 120.085] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -110.122] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 100.324 Td +/F128_0 9.963 Tf +(P) 5.53943 Tj +15 TJm +(arameter) 34.8506 Tj +[1 0 0 1 116.619 100.324] cm +0 g +0 G +[1 0 0 1 -116.619 -100.324] cm +[1 0 0 1 0 0] Tm +0 0 Td +116.619 100.324 Td +/F130_0 9.963 Tf +(workFactor) 59.778 Tj +[1 0 0 1 176.395 100.324] cm +0 g +0 G +[1 0 0 1 -176.395 -100.324] cm +[1 0 0 1 0 0] Tm +0 0 Td +180.775 100.324 Td +/F128_0 9.963 Tf +(controls) 32.1008 Tj +-439 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-440 TJm +(the) 12.1748 Tj +-440 TJm +(compr) 25.4555 Tj +1 TJm +(ession) 24.9075 Tj +-440 TJm +(phase) 22.6858 Tj +-440 TJm +(be) 9.40507 Tj +1 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-440 TJm +(when) 21.5799 Tj +-440 TJm +(presen) 26.0034 Tj +1 TJm +(ted) 12.1748 Tj +-440 TJm +(with) 17.7142 Tj +-440 TJm +(w) 7.19329 Tj +10 TJm +(orst) 14.9445 Tj +-439 TJm +(case,) 19.6371 Tj +-487 TJm +(highly) 25.4654 Tj +72 88.369 Td +(repetiti) 28.2252 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e,) 6.91432 Tj +-432 TJm +(input) 20.4839 Tj +-396 TJm +(data.) 19.0891 Tj +-1497 TJm +(If) 6.63536 Tj +-396 TJm +(compression) 50.363 Tj +-396 TJm +(runs) 17.1563 Tj +-396 TJm +(into) 15.5024 Tj +-396 TJm +(dif) 11.0689 Tj +25 TJm +(\002culties) 31.5528 Tj +-396 TJm +(caused) 27.1093 Tj +-396 TJm +(by) 9.963 Tj +-396 TJm +(repetiti) 28.2252 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-396 TJm +(data,) 19.0891 Tj +-432 TJm +(the) 12.1748 Tj +-396 TJm +(library) 26.5614 Tj +-396 TJm +(switches) 34.3126 Tj +-396 TJm +(from) 19.3681 Tj +[1 0 0 1 72 50.852] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.754] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.754] cm +0 g +0 G +[1 0 0 1 -493.841 -50.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.852 Td +/F128_0 9.963 Tf +(12) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 16 16 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -540 -741.554] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(the) 12.1748 Tj +-255 TJm +(stan) 16.0504 Tj +1 TJm +(dard) 17.7043 Tj +-255 TJm +(sorting) 27.6772 Tj +-255 TJm +(alg) 12.1748 Tj +1 TJm +(orithm) 26.5713 Tj +-255 TJm +(to) 7.75121 Tj +-255 TJm +(a) 4.42357 Tj +-254 TJm +(f) 3.31768 Tj +10 TJm +(allback) 28.7731 Tj +-255 TJm +(algorithm) 38.7461 Tj +1 TJm +(.) 2.49075 Tj +-648 TJm +(The) 15.4925 Tj +-255 TJm +(f) 3.31768 Tj +10 TJm +(allback) 28.7731 Tj +-254 TJm +(is) 6.64532 Tj +-255 TJm +(slo) 11.6268 Tj +25 TJm +(wer) 14.9345 Tj +-254 TJm +(than) 17.1563 Tj +-255 TJm +(the) 12.1748 Tj +-255 TJm +(st) 6.64532 Tj +1 TJm +(andard) 27.1093 Tj +-255 TJm +(algorithm) 38.7461 Tj +-254 TJm +(by) 9.963 Tj +-255 TJm +(perhaps) 30.9849 Tj +72 698.082 Td +(a) 4.42357 Tj +-250 TJm +(f) 3.31768 Tj +10 TJm +(actor) 19.916 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(three,) 22.4068 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(al) 7.19329 Tj +10 TJm +(w) 7.19329 Tj +10 TJm +(ays) 13.2807 Tj +-250 TJm +(b) 4.9815 Tj +1 TJm +(eha) 13.8286 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-250 TJm +(reasonably) 43.1597 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(no) 9.963 Tj +-250 TJm +(matter) 25.4555 Tj +-250 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(bad) 14.3866 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(input.) 22.9747 Tj +[1 0 0 1 72 695.925] cm +0 g +0 G +[1 0 0 1 0 -9.961] cm +0 g +0 G +[1 0 0 1 -72 -685.964] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 676.165 Td +/F128_0 9.963 Tf +(Lo) 11.0689 Tj +25 TJm +(wer) 14.9345 Tj +-240 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +1 TJm +(s) 3.87561 Tj +-240 TJm +(of) 8.29918 Tj +[1 0 0 1 138.421 676.165] cm +0 g +0 G +[1 0 0 1 -138.421 -676.165] cm +[1 0 0 1 0 0] Tm +0 0 Td +138.421 676.165 Td +/F130_0 9.963 Tf +(workFactor) 59.778 Tj +[1 0 0 1 198.197 676.165] cm +0 g +0 G +[1 0 0 1 -198.197 -676.165] cm +[1 0 0 1 0 0] Tm +0 0 Td +200.585 676.165 Td +/F128_0 9.963 Tf +(reduce) 26.5514 Tj +-240 TJm +(the) 12.1748 Tj +-239 TJm +(amount) 29.889 Tj +-240 TJm +(of) 8.29918 Tj +-239 TJm +(ef) 7.74125 Tj +25 TJm +(fort) 14.3866 Tj +-240 TJm +(the) 12.1748 Tj +-240 TJm +(standard) 33.7546 Tj +-239 TJm +(algorithm) 38.7461 Tj +-240 TJm +(will) 15.5024 Tj +-239 TJm +(e) 4.42357 Tj +15 TJm +(xpend) 24.3496 Tj +-240 TJm +(before) 25.4455 Tj +-240 TJm +(re) 7.74125 Tj +1 TJm +(sorting) 27.6772 Tj +-240 TJm +(to) 7.75121 Tj +-240 TJm +(the) 12.1748 Tj +72 664.21 Td +(f) 3.31768 Tj +10 TJm +(allback.) 31.2639 Tj +-618 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-248 TJm +(should) 26.5713 Tj +-247 TJm +(set) 11.0689 Tj +-248 TJm +(this) 14.3965 Tj +-247 TJm +(parameter) 39.8321 Tj +-247 TJm +(carefully;) 38.1782 Tj +-249 TJm +(too) 12.7327 Tj +-247 TJm +(lo) 7.75121 Tj +25 TJm +(w) 7.19329 Tj +65 TJm +(,) 2.49075 Tj +-248 TJm +(and) 14.3866 Tj +-247 TJm +(man) 17.1563 Tj +15 TJm +(y) 4.9815 Tj +-248 TJm +(inputs) 24.3595 Tj +-247 TJm +(will) 15.5024 Tj +-248 TJm +(be) 9.40507 Tj +-247 TJm +(handled) 31.5429 Tj +-248 TJm +(by) 9.963 Tj +-247 TJm +(the) 12.1748 Tj +-248 TJm +(f) 3.31768 Tj +10 TJm +(allback) 28.7731 Tj +-247 TJm +(algorithm) 38.7461 Tj +72 652.255 Td +(and) 14.3866 Tj +-308 TJm +(so) 8.85711 Tj +-308 TJm +(compress) 37.6303 Tj +-308 TJm +(rather) 23.2337 Tj +-308 TJm +(slo) 11.6268 Tj +25 TJm +(wly) 14.9445 Tj +65 TJm +(,) 2.49075 Tj +-323 TJm +(too) 12.7327 Tj +-308 TJm +(high,) 20.205 Tj +-323 TJm +(and) 14.3866 Tj +-308 TJm +(your) 18.2622 Tj +-308 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(erage-to-w) 43.1498 Tj +10 TJm +(orst) 14.9445 Tj +-308 TJm +(case) 17.1463 Tj +-308 TJm +(compression) 50.363 Tj +-308 TJm +(times) 21.5898 Tj +-308 TJm +(can) 13.8286 Tj +-308 TJm +(become) 30.9849 Tj +-308 TJm +(v) 4.9815 Tj +15 TJm +(ery) 12.7228 Tj +-308 TJm +(lar) 10.511 Tj +18 TJm +(ge.) 11.8958 Tj +72 640.3 Td +(The) 15.4925 Tj +-250 TJm +(def) 12.7228 Tj +10 TJm +(ault) 14.9445 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(30) 9.963 Tj +-250 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-250 TJm +(re) 7.74125 Tj +1 TJm +(asonable) 34.8605 Tj +-250 TJm +(beha) 18.8101 Tj +20 TJm +(viour) 21.0319 Tj +-250 TJm +(o) 4.9815 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(wide) 19.3681 Tj +-250 TJm +(range) 22.1278 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(circumstances.) 58.9311 Tj +[1 0 0 1 72 638.143] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -628.181] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 618.383 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues) 20.474 Tj +-250 TJm +(range) 22.1278 Tj +-250 TJm +(from) 19.3681 Tj +-249 TJm +(0) 4.9815 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(250) 14.9445 Tj +-250 TJm +(inclusi) 26.5713 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e.) 6.91432 Tj +-620 TJm +(0) 4.9815 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(special) 27.6673 Tj +-250 TJm +(case,) 19.6371 Tj +-250 TJm +(equi) 17.1563 Tj +25 TJm +(v) 4.9815 Tj +25 TJm +(alent) 19.3681 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(usi) 11.6268 Tj +1 TJm +(ng) 9.963 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(def) 12.7228 Tj +10 TJm +(ault) 14.9445 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(30.) 12.4538 Tj +[1 0 0 1 72 616.226] cm +0 g +0 G +[1 0 0 1 0 -9.961] cm +0 g +0 G +[1 0 0 1 -72 -606.265] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 596.466 Td +/F128_0 9.963 Tf +(Note) 19.3681 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(out) 12.7327 Tj +1 TJm +(put) 12.7327 Tj +-250 TJm +(generated) 38.7262 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(same) 20.474 Tj +-250 TJm +(re) 7.74125 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(ardless) 27.6673 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(whether) 32.0908 Tj +-250 TJm +(or) 8.29918 Tj +-250 TJm +(not) 12.7327 Tj +-250 TJm +(the) 12.1748 Tj +-249 TJm +(f) 3.31768 Tj +10 TJm +(allback) 28.7731 Tj +-250 TJm +(algorithm) 38.7461 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(used.) 20.7529 Tj +[1 0 0 1 72 594.309] cm +0 g +0 G +[1 0 0 1 0 -9.961] cm +0 g +0 G +[1 0 0 1 -72 -584.348] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 574.549 Td +/F128_0 9.963 Tf +(Be) 11.0689 Tj +-303 TJm +(a) 4.42357 Tj +15 TJm +(w) 7.19329 Tj +10 TJm +(are) 12.1648 Tj +-303 TJm +(also) 16.0504 Tj +-303 TJm +(that) 14.9445 Tj +-303 TJm +(this) 14.3965 Tj +-303 TJm +(parameter) 39.8321 Tj +-303 TJm +(may) 17.1563 Tj +-303 TJm +(disappear) 38.1782 Tj +-303 TJm +(entirely) 30.437 Tj +-303 TJm +(in) 7.75121 Tj +-303 TJm +(future) 23.7916 Tj +-303 TJm +(v) 4.9815 Tj +15 TJm +(ersions) 28.2252 Tj +-303 TJm +(of) 8.29918 Tj +-303 TJm +(the) 12.1748 Tj +-303 TJm +(library) 26.5614 Tj +65 TJm +(.) 2.49075 Tj +-939 TJm +(In) 8.29918 Tj +-303 TJm +(principle) 35.4185 Tj +-303 TJm +(it) 5.53943 Tj +-303 TJm +(should) 26.5713 Tj +-303 TJm +(be) 9.40507 Tj +72 562.594 Td +(possible) 32.6587 Tj +-270 TJm +(to) 7.75121 Tj +-270 TJm +(de) 9.40507 Tj +25 TJm +(vise) 16.0504 Tj +-270 TJm +(a) 4.42357 Tj +-270 TJm +(good) 19.926 Tj +-270 TJm +(w) 7.19329 Tj +10 TJm +(ay) 9.40507 Tj +-270 TJm +(to) 7.75121 Tj +-270 TJm +(automatically) 54.2386 Tj +-270 TJm +(choose) 27.6673 Tj +-270 TJm +(which) 24.3496 Tj +-270 TJm +(algorithm) 38.7461 Tj +-270 TJm +(to) 7.75121 Tj +-270 TJm +(use.) 15.7714 Tj +-740 TJm +(Such) 19.926 Tj +-270 TJm +(a) 4.42357 Tj +-270 TJm +(mechanism) 45.3815 Tj +-270 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-270 TJm +(render) 25.4455 Tj +-270 TJm +(the) 12.1748 Tj +72 550.639 Td +(parameter) 39.8321 Tj +-250 TJm +(obsolete.) 35.6974 Tj +[1 0 0 1 72 548.482] cm +0 g +0 G +[1 0 0 1 0 -9.961] cm +0 g +0 G +[1 0 0 1 -72 -538.521] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 528.722 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 528.623] cm +0 g +0 G +[1 0 0 1 0 -144.458] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 143.462 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 139.876] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -519.258] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 519.258 Td +/F130_0 9.963 Tf +(BZ_CONFIG_ERROR) 89.667 Tj +98.488 507.303 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(library) 41.8446 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-425 TJm +(mis-compiled) 71.7336 Tj +90 495.348 Td +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 483.392 Td +(if) 11.9556 Tj +-426 TJm +(strm) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +98.488 471.437 Td +(or) 11.9556 Tj +-426 TJm +(blockSize) 53.8002 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(1) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(bloc) 23.9112 Tj +1 TJm +(kSize) 29.889 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(9) 5.9778 Tj +98.488 459.482 Td +(or) 11.9556 Tj +-426 TJm +(verbosity) 53.8002 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(verb) 23.9112 Tj +1 TJm +(osity) 29.889 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(4) 5.9778 Tj +98.488 447.527 Td +(or) 11.9556 Tj +-426 TJm +(workFactor) 59.778 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(wor) 17.9334 Tj +1 TJm +(kFactor) 41.8446 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(250) 17.9334 Tj +90 435.572 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 423.617 Td +(if) 11.9556 Tj +-426 TJm +(not) 17.9334 Tj +-426 TJm +(enough) 35.8668 Tj +-426 TJm +(memory) 35.8668 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(available) 53.8002 Tj +90 411.661 Td +(BZ_OK) 29.889 Tj +98.488 399.706 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 384.165] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.548] cm +0 g +0 G +[1 0 0 1 -72 -374.203] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 362.248 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 362.148] cm +0 g +0 G +[1 0 0 1 0 -48.817] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 47.821 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 44.234] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -352.783] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 352.783 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +98.488 340.828 Td +(if) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(returned) 47.8224 Tj +98.488 328.873 Td +(no) 11.9556 Tj +-426 TJm +(specific) 47.8224 Tj +-426 TJm +(action) 35.8668 Tj +-426 TJm +(needed) 35.8668 Tj +-425 TJm +(in) 11.9556 Tj +-426 TJm +(case) 23.9112 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(error) 29.889 Tj +[1 0 0 1 72 313.331] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.961] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -303.37] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 282.711 Td +/F121_0 17.215 Tf +(3.3.2.) 43.0719 Tj +[1 0 0 1 119.858 282.711] cm +0 g +0 G +[1 0 0 1 -119.858 -282.711] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 282.711 Td +/F387_0 17.215 Tf +(BZ2_bzCompress) 144.606 Tj +[1 0 0 1 264.468 282.711] cm +0 g +0 G +[1 0 0 1 -192.468 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.906] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -271.014] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 271.014 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzCompress) 83.6892 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(bz_s) 23.9112 Tj +1 TJm +(tream) 29.889 Tj +-426 TJm +(*strm,) 35.8668 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(action) 35.8668 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 255.472] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.548] cm +0 g +0 G +[1 0 0 1 -72 -245.51] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 233.555 Td +/F128_0 9.963 Tf +(Pro) 13.8386 Tj +15 TJm +(vides) 21.0319 Tj +-222 TJm +(mor) 16.0504 Tj +1 TJm +(e) 4.42357 Tj +-222 TJm +(input) 20.4839 Tj +-222 TJm +(and/or) 25.4555 Tj +-221 TJm +(output) 25.4654 Tj +-222 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-222 TJm +(space) 22.1278 Tj +-221 TJm +(for) 11.6169 Tj +-222 TJm +(the) 12.1748 Tj +-222 TJm +(li) 5.53943 Tj +1 TJm +(brary) 21.0219 Tj +65 TJm +(.) 2.49075 Tj +-602 TJm +(T) 6.08739 Tj +1 TJm +(he) 9.40507 Tj +-222 TJm +(caller) 22.1278 Tj +-222 TJm +(maintains) 38.7461 Tj +-221 TJm +(input) 20.4839 Tj +-222 TJm +(and) 14.3866 Tj +-222 TJm +(ou) 9.963 Tj +1 TJm +(tput) 15.5024 Tj +-222 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fers,) 17.4253 Tj +-227 TJm +(and) 14.3866 Tj +-222 TJm +(calls) 18.2622 Tj +[1 0 0 1 72 221.6] cm +0 g +0 G +[1 0 0 1 -72 -221.6] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 221.6 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 155.686 221.6] cm +0 g +0 G +[1 0 0 1 -155.686 -221.6] cm +[1 0 0 1 0 0] Tm +0 0 Td +158.177 221.6 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(transfer) 30.427 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(between) 33.1967 Tj +-250 TJm +(the) 12.1748 Tj +1 TJm +(m.) 10.242 Tj +[1 0 0 1 72 220.036] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -210.074] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 199.683 Td +/F128_0 9.963 Tf +(Before) 27.1093 Tj +-212 TJm +(each) 18.2522 Tj +-213 TJm +(call) 14.3866 Tj +-212 TJm +(to) 7.75121 Tj +[1 0 0 1 147.961 199.683] cm +0 g +0 G +[1 0 0 1 -147.961 -199.683] cm +[1 0 0 1 0 0] Tm +0 0 Td +147.961 199.683 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 231.647 199.683] cm +0 g +0 G +[1 0 0 1 -231.647 -199.683] cm +[1 0 0 1 0 0] Tm +0 0 Td +231.647 199.683 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 236.329 199.683] cm +0 g +0 G +[1 0 0 1 -236.329 -199.683] cm +[1 0 0 1 0 0] Tm +0 0 Td +236.329 199.683 Td +/F130_0 9.963 Tf +(next_in) 41.8446 Tj +[1 0 0 1 278.172 199.683] cm +0 g +0 G +[1 0 0 1 -278.172 -199.683] cm +[1 0 0 1 0 0] Tm +0 0 Td +280.289 199.683 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-212 TJm +(point) 20.4839 Tj +-213 TJm +(at) 7.19329 Tj +-212 TJm +(the) 12.1748 Tj +-212 TJm +(data) 16.5984 Tj +-213 TJm +(to) 7.75121 Tj +-212 TJm +(be) 9.40507 Tj +-212 TJm +(compressed,) 49.5261 Tj +-220 TJm +(and) 14.3866 Tj +[1 0 0 1 463.493 199.683] cm +0 g +0 G +[1 0 0 1 -463.493 -199.683] cm +[1 0 0 1 0 0] Tm +0 0 Td +463.493 199.683 Td +/F130_0 9.963 Tf +(avail_in) 47.8224 Tj +[1 0 0 1 511.314 199.683] cm +0 g +0 G +[1 0 0 1 -511.314 -199.683] cm +[1 0 0 1 0 0] Tm +0 0 Td +513.43 199.683 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +72 187.728 Td +(indicate) 31.5429 Tj +-246 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-246 TJm +(man) 17.1563 Tj +15 TJm +(y) 4.9815 Tj +-246 TJm +(bytes) 21.0319 Tj +-247 TJm +(the) 12.1748 Tj +-246 TJm +(library) 26.5614 Tj +-246 TJm +(may) 17.1563 Tj +-246 TJm +(read.) 19.6371 Tj +[1 0 0 1 259.242 187.728] cm +0 g +0 G +[1 0 0 1 -259.242 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +259.242 187.728 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 342.929 187.728] cm +0 g +0 G +[1 0 0 1 -342.929 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +345.382 187.728 Td +/F128_0 9.963 Tf +(updates) 30.437 Tj +[1 0 0 1 378.271 187.728] cm +0 g +0 G +[1 0 0 1 -378.271 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +378.271 187.728 Td +/F130_0 9.963 Tf +(next_in) 41.8446 Tj +[1 0 0 1 420.114 187.728] cm +0 g +0 G +[1 0 0 1 -420.114 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +420.114 187.728 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 425.066 187.728] cm +0 g +0 G +[1 0 0 1 -425.066 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +425.066 187.728 Td +/F130_0 9.963 Tf +(avail_in) 47.8224 Tj +[1 0 0 1 472.886 187.728] cm +0 g +0 G +[1 0 0 1 -472.886 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +475.34 187.728 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 492.179 187.728] cm +0 g +0 G +[1 0 0 1 -492.179 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +492.179 187.728 Td +/F130_0 9.963 Tf +(total_in) 47.8224 Tj +[1 0 0 1 540 187.728] cm +0 g +0 G +[1 0 0 1 -540 -187.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 175.773 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(re\003ect) 24.8975 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(number) 30.437 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(bytes) 21.0319 Tj +-249 TJm +(it) 5.53943 Tj +-250 TJm +(has) 13.2807 Tj +-250 TJm +(read.) 19.6371 Tj +[1 0 0 1 72 173.616] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -163.654] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 153.856 Td +/F128_0 9.963 Tf +(Similarly) 37.0922 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 113.148 153.856] cm +0 g +0 G +[1 0 0 1 -113.148 -153.856] cm +[1 0 0 1 0 0] Tm +0 0 Td +113.148 153.856 Td +/F130_0 9.963 Tf +(next_out) 47.8224 Tj +[1 0 0 1 160.968 153.856] cm +0 g +0 G +[1 0 0 1 -160.968 -153.856] cm +[1 0 0 1 0 0] Tm +0 0 Td +163.114 153.856 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-215 TJm +(point) 20.4839 Tj +-215 TJm +(to) 7.75121 Tj +-216 TJm +(a) 4.42357 Tj +-215 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-215 TJm +(in) 7.75121 Tj +-216 TJm +(whi) 14.9445 Tj +1 TJm +(ch) 9.40507 Tj +-216 TJm +(the) 12.1748 Tj +-215 TJm +(compressed) 47.0353 Tj +-215 TJm +(data) 16.5984 Tj +-215 TJm +(is) 6.64532 Tj +-216 TJm +(to) 7.75121 Tj +-215 TJm +(be) 9.40507 Tj +-215 TJm +(placed,) 28.4942 Tj +-222 TJm +(with) 17.7142 Tj +[1 0 0 1 456.391 153.856] cm +0 g +0 G +[1 0 0 1 -456.391 -153.856] cm +[1 0 0 1 0 0] Tm +0 0 Td +456.391 153.856 Td +/F130_0 9.963 Tf +(avail_out) 53.8002 Tj +[1 0 0 1 510.189 153.856] cm +0 g +0 G +[1 0 0 1 -510.189 -153.856] cm +[1 0 0 1 0 0] Tm +0 0 Td +512.334 153.856 Td +/F128_0 9.963 Tf +(indica-) 27.6673 Tj +72 141.901 Td +(ting) 15.5024 Tj +-280 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-281 TJm +(muc) 17.1563 Tj +1 TJm +(h) 4.9815 Tj +-281 TJm +(output) 25.4654 Tj +-280 TJm +(space) 22.1278 Tj +-280 TJm +(is) 6.64532 Tj +-281 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailabl) 22.1378 Tj +1 TJm +(e.) 6.91432 Tj +[1 0 0 1 239.543 141.901] cm +0 g +0 G +[1 0 0 1 -239.543 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +239.543 141.901 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 323.229 141.901] cm +0 g +0 G +[1 0 0 1 -323.229 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +326.022 141.901 Td +/F128_0 9.963 Tf +(updates) 30.437 Tj +[1 0 0 1 359.251 141.901] cm +0 g +0 G +[1 0 0 1 -359.251 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +359.251 141.901 Td +/F130_0 9.963 Tf +(next_out) 47.8224 Tj +[1 0 0 1 407.072 141.901] cm +0 g +0 G +[1 0 0 1 -407.072 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +407.072 141.901 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 412.431 141.901] cm +0 g +0 G +[1 0 0 1 -412.431 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +412.431 141.901 Td +/F130_0 9.963 Tf +(avail_out) 53.8002 Tj +[1 0 0 1 466.229 141.901] cm +0 g +0 G +[1 0 0 1 -466.229 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +469.023 141.901 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 486.202 141.901] cm +0 g +0 G +[1 0 0 1 -486.202 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +486.202 141.901 Td +/F130_0 9.963 Tf +(total_out) 53.8002 Tj +[1 0 0 1 540 141.901] cm +0 g +0 G +[1 0 0 1 -540 -141.901] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 129.946 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(re\003ect) 24.8975 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(number) 30.437 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(bytes) 21.0319 Tj +-249 TJm +(output.) 27.9562 Tj +[1 0 0 1 72 127.789] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -117.827] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 108.029 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-272 TJm +(may) 17.1563 Tj +-272 TJm +(pro) 13.2807 Tj +15 TJm +(vide) 17.1563 Tj +-272 TJm +(and) 14.3866 Tj +-271 TJm +(remo) 20.474 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-272 TJm +(as) 8.29918 Tj +-272 TJm +(little) 18.2721 Tj +-272 TJm +(or) 8.29918 Tj +-272 TJm +(as) 8.29918 Tj +-272 TJm +(much) 22.1378 Tj +-272 TJm +(data) 16.5984 Tj +-272 TJm +(as) 8.29918 Tj +-271 TJm +(you) 14.9445 Tj +-272 TJm +(lik) 10.5209 Tj +10 TJm +(e) 4.42357 Tj +-272 TJm +(on) 9.963 Tj +-272 TJm +(each) 18.2522 Tj +-272 TJm +(call) 14.3866 Tj +-272 TJm +(of) 8.29918 Tj +[1 0 0 1 399.123 108.029] cm +0 g +0 G +[1 0 0 1 -399.123 -108.029] cm +[1 0 0 1 0 0] Tm +0 0 Td +399.123 108.029 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 482.809 108.029] cm +0 g +0 G +[1 0 0 1 -482.809 -108.029] cm +[1 0 0 1 0 0] Tm +0 0 Td +482.809 108.029 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-752 TJm +(In) 8.29918 Tj +-272 TJm +(the) 12.1748 Tj +-271 TJm +(limit,) 21.3208 Tj +72 96.074 Td +(it) 5.53943 Tj +-266 TJm +(is) 6.64532 Tj +-265 TJm +(acceptable) 42.0439 Tj +-266 TJm +(to) 7.75121 Tj +-266 TJm +(su) 8.85711 Tj +1 TJm +(pply) 17.7142 Tj +-266 TJm +(and) 14.3866 Tj +-266 TJm +(remo) 20.474 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-265 TJm +(data) 16.5984 Tj +-266 TJm +(one) 14.3866 Tj +-266 TJm +(byte) 17.1563 Tj +-265 TJm +(at) 7.19329 Tj +-266 TJm +(a) 4.42357 Tj +-266 TJm +(time,) 20.205 Tj +-269 TJm +(although) 34.8705 Tj +-266 TJm +(this) 14.3965 Tj +-265 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-266 TJm +(be) 9.40507 Tj +-266 TJm +(terribly) 29.3311 Tj +-265 TJm +(inef) 15.4925 Tj +25 TJm +(\002cient.) 27.3983 Tj +-714 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-266 TJm +(should) 26.5713 Tj +72 84.118 Td +(al) 7.19329 Tj +10 TJm +(w) 7.19329 Tj +10 TJm +(ays) 13.2807 Tj +-250 TJm +(ensure) 26.0034 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(at) 7.19329 Tj +-250 TJm +(least) 18.2622 Tj +-249 TJm +(one) 14.3866 Tj +-250 TJm +(byte) 17.1563 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(output) 25.4654 Tj +-250 TJm +(space) 22.1278 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailable) 26.5614 Tj +-250 TJm +(at) 7.19329 Tj +-250 TJm +(each) 18.2522 Tj +-250 TJm +(call.) 16.8773 Tj +[1 0 0 1 72 81.962] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 0 -21.148] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(13) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 17 17 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -540 -741.554] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(A) 7.19329 Tj +-250 TJm +(second) 27.6673 Tj +-250 TJm +(purpose) 31.5429 Tj +-250 TJm +(of) 8.29918 Tj +[1 0 0 1 156.662 710.037] cm +0 g +0 G +[1 0 0 1 -156.662 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +156.662 710.037 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 240.348 710.037] cm +0 g +0 G +[1 0 0 1 -240.348 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +242.839 710.037 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(request) 28.7731 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(change) 28.2152 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(mod) 17.7142 Tj +1 TJm +(e) 4.42357 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(stream.) 29.0521 Tj +[1 0 0 1 72 707.881] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -697.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 688.12 Td +/F128_0 9.963 Tf +(Conceptually) 53.1327 Tj +65 TJm +(,) 2.49075 Tj +-217 TJm +(a) 4.42357 Tj +-209 TJm +(compressed) 47.0353 Tj +-209 TJm +(stream) 26.5614 Tj +-210 TJm +(can) 13.8286 Tj +-209 TJm +(be) 9.40507 Tj +-209 TJm +(in) 7.75121 Tj +-209 TJm +(one) 14.3866 Tj +-209 TJm +(of) 8.29918 Tj +-210 TJm +(four) 16.5984 Tj +-209 TJm +(states:) 24.9075 Tj +-289 TJm +(IDLE,) 25.1765 Tj +-209 TJm +(R) 6.64532 Tj +40 TJm +(UNNING,) 41.7749 Tj +-209 TJm +(FLUSHING) 49.2571 Tj +-209 TJm +(and) 14.3866 Tj +-210 TJm +(FINISHING) 49.805 Tj +1 TJm +(.) 2.49075 Tj +-419 TJm +(Be-) 14.3866 Tj +72 676.164 Td +(fore) 16.0404 Tj +-264 TJm +(initialis) 29.899 Tj +1 TJm +(ation) 19.926 Tj +-264 TJm +(\() 3.31768 Tj +[1 0 0 1 146.434 676.164] cm +0 g +0 G +[1 0 0 1 -146.434 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +146.434 676.164 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 254.031 676.164] cm +0 g +0 G +[1 0 0 1 -254.031 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +254.031 676.164 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +-264 TJm +(and) 14.3866 Tj +-263 TJm +(after) 18.2522 Tj +-264 TJm +(termination) 45.9394 Tj +-264 TJm +(\() 3.31768 Tj +[1 0 0 1 349.75 676.164] cm +0 g +0 G +[1 0 0 1 -349.75 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +349.75 676.164 Td +/F130_0 9.963 Tf +(BZ2_bzCompressEnd) 101.623 Tj +[1 0 0 1 451.369 676.164] cm +0 g +0 G +[1 0 0 1 -451.369 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +451.369 676.164 Td +/F128_0 9.963 Tf +(\),) 5.80843 Tj +-267 TJm +(a) 4.42357 Tj +-264 TJm +(stream) 26.5614 Tj +-263 TJm +(is) 6.64532 Tj +-264 TJm +(re) 7.74125 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(arded) 22.1278 Tj +72 664.209 Td +(as) 8.29918 Tj +-250 TJm +(IDLE.) 25.1765 Tj +[1 0 0 1 72 664.11] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -654.147] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 642.291 Td +/F128_0 9.963 Tf +(Upon) 22.1378 Tj +-389 TJm +(initialisation) 49.825 Tj +-389 TJm +(\() 3.31768 Tj +[1 0 0 1 155.036 642.291] cm +0 g +0 G +[1 0 0 1 -155.036 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +155.036 642.291 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 262.632 642.291] cm +0 g +0 G +[1 0 0 1 -262.632 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +262.632 642.291 Td +/F128_0 9.963 Tf +(\),) 5.80843 Tj +-424 TJm +(the) 12.1748 Tj +-390 TJm +(stream) 26.5614 Tj +-389 TJm +(is) 6.64532 Tj +-389 TJm +(placed) 26.0034 Tj +-390 TJm +(in) 7.75121 Tj +-389 TJm +(the) 12.1748 Tj +-389 TJm +(R) 6.64532 Tj +40 TJm +(UNNING) 39.2841 Tj +-389 TJm +(state.) 20.7529 Tj +-1457 TJm +(Subsequent) 45.9394 Tj +-389 TJm +(calls) 18.2622 Tj +72 630.336 Td +(to) 7.75121 Tj +[1 0 0 1 83.818 630.336] cm +0 g +0 G +[1 0 0 1 -83.818 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +83.818 630.336 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 167.504 630.336] cm +0 g +0 G +[1 0 0 1 -167.504 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +171.571 630.336 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-408 TJm +(pass) 17.1563 Tj +[1 0 0 1 223.431 630.336] cm +0 g +0 G +[1 0 0 1 -223.431 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +223.431 630.336 Td +/F130_0 9.963 Tf +(BZ_RUN) 35.8668 Tj +[1 0 0 1 259.297 630.336] cm +0 g +0 G +[1 0 0 1 -259.297 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +263.362 630.336 Td +/F128_0 9.963 Tf +(as) 8.29918 Tj +-408 TJm +(the) 12.1748 Tj +-408 TJm +(requested) 38.1782 Tj +-408 TJm +(action;) 27.1193 Tj +-488 TJm +(other) 20.474 Tj +-408 TJm +(actions) 28.2252 Tj +-408 TJm +(are) 12.1648 Tj +-408 TJm +(ille) 12.7327 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(al) 7.19329 Tj +-408 TJm +(and) 14.3866 Tj +-408 TJm +(will) 15.5024 Tj +-409 TJm +(re) 7.74125 Tj +1 TJm +(sult) 14.3965 Tj +-409 TJm +(in) 7.75121 Tj +[1 0 0 1 72 618.381] cm +0 g +0 G +[1 0 0 1 -72 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 618.381 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +[1 0 0 1 173.619 618.381] cm +0 g +0 G +[1 0 0 1 -173.619 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +173.619 618.381 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 616.961] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -606.999] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 596.463 Td +/F128_0 9.963 Tf +(At) 9.963 Tj +-279 TJm +(some) 21.0319 Tj +-279 TJm +(point,) 22.9747 Tj +-286 TJm +(the) 12.1748 Tj +-279 TJm +(call) 14.3866 Tj +1 TJm +(ing) 12.7327 Tj +-279 TJm +(program) 33.7546 Tj +-279 TJm +(will) 15.5024 Tj +-279 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-279 TJm +(pro) 13.2807 Tj +15 TJm +(vided) 22.1378 Tj +-279 TJm +(all) 9.963 Tj +-278 TJm +(the) 12.1748 Tj +-279 TJm +(input) 20.4839 Tj +-279 TJm +(data) 16.5984 Tj +-279 TJm +(it) 5.53943 Tj +-279 TJm +(w) 7.19329 Tj +10 TJm +(ants) 16.0504 Tj +-279 TJm +(to.) 10.242 Tj +-793 TJm +(It) 6.08739 Tj +-279 TJm +(will) 15.5024 Tj +-279 TJm +(then) 17.1563 Tj +-279 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-278 TJm +(to) 7.75121 Tj +-279 TJm +(\002nish) 22.1477 Tj +-279 TJm +(up) 9.963 Tj +-279 TJm +(--) 6.63536 Tj +72 584.508 Td +(in) 7.75121 Tj +-287 TJm +(ef) 7.74125 Tj +25 TJm +(fect,) 17.4253 Tj +-297 TJm +(asking) 26.0134 Tj +-287 TJm +(the) 12.1748 Tj +-288 TJm +(library) 26.5614 Tj +-287 TJm +(to) 7.75121 Tj +-287 TJm +(process) 29.879 Tj +-288 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-287 TJm +(data) 16.5984 Tj +-287 TJm +(it) 5.53943 Tj +-288 TJm +(might) 23.2536 Tj +-287 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-287 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fered) 20.464 Tj +-288 TJm +(inte) 14.9445 Tj +1 TJm +(rnally) 23.2437 Tj +65 TJm +(.) 2.49075 Tj +-845 TJm +(In) 8.29918 Tj +-287 TJm +(this) 14.3965 Tj +-288 TJm +(sta) 11.0689 Tj +1 TJm +(te,) 9.68404 Tj +[1 0 0 1 456.314 584.508] cm +0 g +0 G +[1 0 0 1 -456.314 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +456.314 584.508 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 540 584.508] cm +0 g +0 G +[1 0 0 1 -540 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 572.553 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-258 TJm +(no) 9.963 Tj +-257 TJm +(longer) 25.4555 Tj +-258 TJm +(attempt) 29.889 Tj +-257 TJm +(to) 7.75121 Tj +-258 TJm +(read) 17.1463 Tj +-258 TJm +(data) 16.5984 Tj +-257 TJm +(from) 19.3681 Tj +[1 0 0 1 234.207 572.553] cm +0 g +0 G +[1 0 0 1 -234.207 -572.553] cm +[1 0 0 1 0 0] Tm +0 0 Td +234.207 572.553 Td +/F130_0 9.963 Tf +(next_in) 41.8446 Tj +[1 0 0 1 276.051 572.553] cm +0 g +0 G +[1 0 0 1 -276.051 -572.553] cm +[1 0 0 1 0 0] Tm +0 0 Td +276.051 572.553 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-260 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-257 TJm +(it) 5.53943 Tj +-258 TJm +(will) 15.5024 Tj +-258 TJm +(w) 7.19329 Tj +10 TJm +(an) 9.40507 Tj +1 TJm +(t) 2.76971 Tj +-258 TJm +(to) 7.75121 Tj +-258 TJm +(write) 20.474 Tj +-257 TJm +(data) 16.5984 Tj +-258 TJm +(to) 7.75121 Tj +[1 0 0 1 407.082 572.553] cm +0 g +0 G +[1 0 0 1 -407.082 -572.553] cm +[1 0 0 1 0 0] Tm +0 0 Td +407.082 572.553 Td +/F130_0 9.963 Tf +(next_out) 47.8224 Tj +[1 0 0 1 454.902 572.553] cm +0 g +0 G +[1 0 0 1 -454.902 -572.553] cm +[1 0 0 1 0 0] Tm +0 0 Td +454.902 572.553 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-666 TJm +(Because) 33.1967 Tj +-258 TJm +(the) 12.1748 Tj +-258 TJm +(ou) 9.963 Tj +1 TJm +(tput) 15.5024 Tj +72 560.598 Td +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-228 TJm +(supplied) 33.7646 Tj +-228 TJm +(by) 9.963 Tj +-228 TJm +(the) 12.1748 Tj +-228 TJm +(user) 16.5984 Tj +-229 TJm +(can) 13.8286 Tj +-228 TJm +(be) 9.40507 Tj +-228 TJm +(arbitrarily) 39.842 Tj +-228 TJm +(small,) 24.0806 Tj +-232 TJm +(the) 12.1748 Tj +-228 TJm +(\002nishing-up) 48.1611 Tj +-228 TJm +(operation) 37.6303 Tj +-228 TJm +(cannot) 26.5614 Tj +-229 TJm +(n) 4.9815 Tj +1 TJm +(ecessarily) 39.2841 Tj +-228 TJm +(be) 9.40507 Tj +-229 TJm +(done) 19.3681 Tj +-228 TJm +(with) 17.7142 Tj +-228 TJm +(a) 4.42357 Tj +-228 TJm +(single) 23.8016 Tj +72 548.643 Td +(call) 14.3866 Tj +-250 TJm +(of) 8.29918 Tj +[1 0 0 1 99.666 548.643] cm +0 g +0 G +[1 0 0 1 -99.666 -548.643] cm +[1 0 0 1 0 0] Tm +0 0 Td +99.666 548.643 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 183.352 548.643] cm +0 g +0 G +[1 0 0 1 -183.352 -548.643] cm +[1 0 0 1 0 0] Tm +0 0 Td +183.352 548.643 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 547.079] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -537.116] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 526.725 Td +/F128_0 9.963 Tf +(Instead,) 31.2639 Tj +-346 TJm +(the) 12.1748 Tj +-327 TJm +(ca) 8.84714 Tj +1 TJm +(lling) 18.2721 Tj +-327 TJm +(program) 33.7546 Tj +-327 TJm +(passes) 25.4555 Tj +[1 0 0 1 218.231 526.725] cm +0 g +0 G +[1 0 0 1 -218.231 -526.725] cm +[1 0 0 1 0 0] Tm +0 0 Td +218.231 526.725 Td +/F130_0 9.963 Tf +(BZ_FINISH) 53.8002 Tj +[1 0 0 1 272.029 526.725] cm +0 g +0 G +[1 0 0 1 -272.029 -526.725] cm +[1 0 0 1 0 0] Tm +0 0 Td +275.284 526.725 Td +/F128_0 9.963 Tf +(as) 8.29918 Tj +-327 TJm +(an) 9.40507 Tj +-326 TJm +(action) 24.3496 Tj +-327 TJm +(to) 7.75121 Tj +[1 0 0 1 338.109 526.725] cm +0 g +0 G +[1 0 0 1 -338.109 -526.725] cm +[1 0 0 1 0 0] Tm +0 0 Td +338.109 526.725 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 421.795 526.725] cm +0 g +0 G +[1 0 0 1 -421.795 -526.725] cm +[1 0 0 1 0 0] Tm +0 0 Td +421.795 526.725 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1081 TJm +(This) 17.7142 Tj +-326 TJm +(changes) 32.0908 Tj +-327 TJm +(the) 12.1748 Tj +-327 TJm +(strea) 18.8101 Tj +1 TJm +(m') 11.0689 Tj +55 TJm +(s) 3.87561 Tj +72 514.77 Td +(state) 18.2622 Tj +-290 TJm +(to) 7.75121 Tj +-291 TJm +(FINISHING.) 52.2958 Tj +-581 TJm +(An) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-290 TJm +(remaining) 40.4 Tj +-291 TJm +(input) 20.4839 Tj +-290 TJm +(\(ie,) 13.0017 Tj +[1 0 0 1 264.452 514.77] cm +0 g +0 G +[1 0 0 1 -264.452 -514.77] cm +[1 0 0 1 0 0] Tm +0 0 Td +264.452 514.77 Td +/F130_0 9.963 Tf +(next_in[0) 53.8002 Tj +-600 TJm +(..) 11.9556 Tj +-1200 TJm +(avail_in-1]) 65.7558 Tj +[1 0 0 1 413.892 514.77] cm +0 g +0 G +[1 0 0 1 -413.892 -514.77] cm +[1 0 0 1 0 0] Tm +0 0 Td +413.892 514.77 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +-291 TJm +(is) 6.64532 Tj +-290 TJm +(compressed) 47.0353 Tj +-290 TJm +(and) 14.3866 Tj +-291 TJm +(transferred) 43.1498 Tj +72 502.814 Td +(to) 7.75121 Tj +-421 TJm +(the) 12.1748 Tj +-421 TJm +(output) 25.4654 Tj +-421 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +55 TJm +(.) 2.49075 Tj +-1646 TJm +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-421 TJm +(do) 9.963 Tj +-421 TJm +(this,) 16.8873 Tj +[1 0 0 1 222.339 502.814] cm +0 g +0 G +[1 0 0 1 -222.339 -502.814] cm +[1 0 0 1 0 0] Tm +0 0 Td +222.339 502.814 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 306.025 502.814] cm +0 g +0 G +[1 0 0 1 -306.025 -502.814] cm +[1 0 0 1 0 0] Tm +0 0 Td +310.22 502.814 Td +/F128_0 9.963 Tf +(must) 19.378 Tj +-421 TJm +(be) 9.40507 Tj +-421 TJm +(called) 23.7916 Tj +-421 TJm +(repeatedly) 41.4959 Tj +-421 TJm +(until) 18.2721 Tj +-421 TJm +(all) 9.963 Tj +-421 TJm +(the) 12.1748 Tj +-421 TJm +(outp) 17.7142 Tj +1 TJm +(ut) 7.75121 Tj +-421 TJm +(has) 13.2807 Tj +-421 TJm +(been) 18.8101 Tj +72 490.859 Td +(consumed.) 42.8907 Tj +-1396 TJm +(At) 9.963 Tj +-380 TJm +(that) 14.9445 Tj +-379 TJm +(point,) 22.9747 Tj +[1 0 0 1 188.346 490.859] cm +0 g +0 G +[1 0 0 1 -188.346 -490.859] cm +[1 0 0 1 0 0] Tm +0 0 Td +188.346 490.859 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 272.033 490.859] cm +0 g +0 G +[1 0 0 1 -272.033 -490.859] cm +[1 0 0 1 0 0] Tm +0 0 Td +275.813 490.859 Td +/F128_0 9.963 Tf +(returns) 27.6673 Tj +[1 0 0 1 307.259 490.859] cm +0 g +0 G +[1 0 0 1 -307.259 -490.859] cm +[1 0 0 1 0 0] Tm +0 0 Td +307.259 490.859 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 384.968 490.859] cm +0 g +0 G +[1 0 0 1 -384.968 -490.859] cm +[1 0 0 1 0 0] Tm +0 0 Td +384.968 490.859 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-379 TJm +(and) 14.3866 Tj +-380 TJm +(the) 12.1748 Tj +-379 TJm +(stream') 29.879 Tj +55 TJm +(s) 3.87561 Tj +-379 TJm +(state) 18.2622 Tj +-380 TJm +(is) 6.64532 Tj +-379 TJm +(set) 11.0689 Tj +-379 TJm +(back) 18.8101 Tj +-380 TJm +(to) 7.75121 Tj +72 478.904 Td +(IDLE.) 25.1765 Tj +[1 0 0 1 99.666 478.904] cm +0 g +0 G +[1 0 0 1 -99.666 -478.904] cm +[1 0 0 1 0 0] Tm +0 0 Td +99.666 478.904 Td +/F130_0 9.963 Tf +(BZ2_bzCompressEnd) 101.623 Tj +[1 0 0 1 201.285 478.904] cm +0 g +0 G +[1 0 0 1 -201.285 -478.904] cm +[1 0 0 1 0 0] Tm +0 0 Td +203.776 478.904 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-250 TJm +(then) 17.1563 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(called.) 26.2824 Tj +[1 0 0 1 72 477.34] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -467.377] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 456.986 Td +/F128_0 9.963 Tf +(Just) 15.5024 Tj +-380 TJm +(to) 7.75121 Tj +-379 TJm +(mak) 17.1563 Tj +10 TJm +(e) 4.42357 Tj +-380 TJm +(sure) 16.5984 Tj +-380 TJm +(the) 12.1748 Tj +-380 TJm +(c) 4.42357 Tj +1 TJm +(alling) 22.6957 Tj +-380 TJm +(program) 33.7546 Tj +-380 TJm +(does) 18.2622 Tj +-379 TJm +(not) 12.7327 Tj +-380 TJm +(cheat,) 23.5127 Tj +-412 TJm +(the) 12.1748 Tj +-380 TJm +(library) 26.5614 Tj +-380 TJm +(mak) 17.1563 Tj +10 TJm +(es) 8.29918 Tj +-379 TJm +(a) 4.42357 Tj +-380 TJm +(note) 17.1563 Tj +-380 TJm +(of) 8.29918 Tj +[1 0 0 1 415.708 456.986] cm +0 g +0 G +[1 0 0 1 -415.708 -456.986] cm +[1 0 0 1 0 0] Tm +0 0 Td +415.708 456.986 Td +/F130_0 9.963 Tf +(avail_in) 47.8224 Tj +[1 0 0 1 463.528 456.986] cm +0 g +0 G +[1 0 0 1 -463.528 -456.986] cm +[1 0 0 1 0 0] Tm +0 0 Td +467.312 456.986 Td +/F128_0 9.963 Tf +(at) 7.19329 Tj +-380 TJm +(the) 12.1748 Tj +-379 TJm +(time) 17.7142 Tj +-380 TJm +(of) 8.29918 Tj +-380 TJm +(the) 12.1748 Tj +72 445.031 Td +(\002rst) 15.5024 Tj +-286 TJm +(call) 14.3866 Tj +-285 TJm +(to) 7.75121 Tj +[1 0 0 1 118.179 445.031] cm +0 g +0 G +[1 0 0 1 -118.179 -445.031] cm +[1 0 0 1 0 0] Tm +0 0 Td +118.179 445.031 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 201.866 445.031] cm +0 g +0 G +[1 0 0 1 -201.866 -445.031] cm +[1 0 0 1 0 0] Tm +0 0 Td +204.713 445.031 Td +/F128_0 9.963 Tf +(which) 24.3496 Tj +-286 TJm +(has) 13.2807 Tj +[1 0 0 1 248.035 445.031] cm +0 g +0 G +[1 0 0 1 -248.035 -445.031] cm +[1 0 0 1 0 0] Tm +0 0 Td +248.035 445.031 Td +/F130_0 9.963 Tf +(BZ_FINISH) 53.8002 Tj +[1 0 0 1 301.834 445.031] cm +0 g +0 G +[1 0 0 1 -301.834 -445.031] cm +[1 0 0 1 0 0] Tm +0 0 Td +304.68 445.031 Td +/F128_0 9.963 Tf +(as) 8.29918 Tj +-286 TJm +(an) 9.40507 Tj +-285 TJm +(action) 24.3496 Tj +-286 TJm +(\(ie,) 13.0017 Tj +-295 TJm +(at) 7.19329 Tj +-285 TJm +(the) 12.1748 Tj +-286 TJm +(time) 17.7142 Tj +-286 TJm +(the) 12.1748 Tj +-286 TJm +(progr) 21.5799 Tj +1 TJm +(am) 12.1748 Tj +-286 TJm +(has) 13.2807 Tj +-286 TJm +(announced) 43.1597 Tj +-286 TJm +(i) 2.76971 Tj +1 TJm +(ts) 6.64532 Tj +72 433.076 Td +(intention) 35.4284 Tj +-292 TJm +(to) 7.75121 Tj +-291 TJm +(not) 12.7327 Tj +-292 TJm +(supply) 26.5713 Tj +-292 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-291 TJm +(more) 20.474 Tj +-292 TJm +(input\).) 26.2924 Tj +-871 TJm +(By) 11.6268 Tj +-291 TJm +(comparing) 42.6118 Tj +-292 TJm +(this) 14.3965 Tj +-292 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-291 TJm +(with) 17.7142 Tj +-292 TJm +(that) 14.9445 Tj +-292 TJm +(of) 8.29918 Tj +[1 0 0 1 392.861 433.076] cm +0 g +0 G +[1 0 0 1 -392.861 -433.076] cm +[1 0 0 1 0 0] Tm +0 0 Td +392.861 433.076 Td +/F130_0 9.963 Tf +(avail_in) 47.8224 Tj +[1 0 0 1 440.682 433.076] cm +0 g +0 G +[1 0 0 1 -440.682 -433.076] cm +[1 0 0 1 0 0] Tm +0 0 Td +443.589 433.076 Td +/F128_0 9.963 Tf +(o) 4.9815 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-292 TJm +(subsequent) 44.2756 Tj +-291 TJm +(calls) 18.2622 Tj +-292 TJm +(to) 7.75121 Tj +[1 0 0 1 72 421.121] cm +0 g +0 G +[1 0 0 1 -72 -421.121] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 421.121 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 155.686 421.121] cm +0 g +0 G +[1 0 0 1 -155.686 -421.121] cm +[1 0 0 1 0 0] Tm +0 0 Td +155.686 421.121 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-247 TJm +(the) 12.1748 Tj +-247 TJm +(libra) 18.2622 Tj +1 TJm +(ry) 8.29918 Tj +-247 TJm +(can) 13.8286 Tj +-246 TJm +(detect) 23.7916 Tj +-247 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-246 TJm +(attempts) 33.7646 Tj +-246 TJm +(to) 7.75121 Tj +-247 TJm +(slip) 14.3965 Tj +-246 TJm +(in) 7.75121 Tj +-247 TJm +(more) 20.474 Tj +-246 TJm +(data) 16.5984 Tj +-246 TJm +(to) 7.75121 Tj +-247 TJm +(compress.) 40.121 Tj +-617 TJm +(An) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-247 TJm +(calls) 18.2622 Tj +-246 TJm +(for) 11.6169 Tj +-246 TJm +(which) 24.3496 Tj +-247 TJm +(this) 14.3965 Tj +-246 TJm +(is) 6.64532 Tj +72 409.166 Td +(detected) 33.1967 Tj +-250 TJm +(will) 15.5024 Tj +-250 TJm +(return) 23.7916 Tj +[1 0 0 1 151.959 409.166] cm +0 g +0 G +[1 0 0 1 -151.959 -409.166] cm +[1 0 0 1 0 0] Tm +0 0 Td +151.959 409.166 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +[1 0 0 1 253.578 409.166] cm +0 g +0 G +[1 0 0 1 -253.578 -409.166] cm +[1 0 0 1 0 0] Tm +0 0 Td +253.578 409.166 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-500 TJm +(This) 17.7142 Tj +-250 TJm +(indicates) 35.4185 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(programm) 41.5059 Tj +1 TJm +(ing) 12.7327 Tj +-250 TJm +(mistak) 26.5713 Tj +10 TJm +(e) 4.42357 Tj +-250 TJm +(which) 24.3496 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(corrected.) 39.5531 Tj +[1 0 0 1 72 407.009] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -397.046] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 387.248 Td +/F128_0 9.963 Tf +(Instead) 28.7731 Tj +-223 TJm +(of) 8.29918 Tj +-224 TJm +(asking) 26.0134 Tj +-224 TJm +(to) 7.75121 Tj +-223 TJm +(\002nish,) 24.6385 Tj +-229 TJm +(the) 12.1748 Tj +-223 TJm +(calling) 27.1193 Tj +-224 TJm +(program) 33.7546 Tj +-223 TJm +(may) 17.1563 Tj +-224 TJm +(ask) 13.2807 Tj +[1 0 0 1 293.282 387.248] cm +0 g +0 G +[1 0 0 1 -293.282 -387.248] cm +[1 0 0 1 0 0] Tm +0 0 Td +293.282 387.248 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 376.968 387.248] cm +0 g +0 G +[1 0 0 1 -376.968 -387.248] cm +[1 0 0 1 0 0] Tm +0 0 Td +379.196 387.248 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-224 TJm +(ta) 7.19329 Tj +1 TJm +(k) 4.9815 Tj +10 TJm +(e) 4.42357 Tj +-224 TJm +(all) 9.963 Tj +-224 TJm +(the) 12.1748 Tj +-223 TJm +(remaining) 40.4 Tj +-224 TJm +(inp) 12.7327 Tj +1 TJm +(ut,) 10.242 Tj +-229 TJm +(compress) 37.6303 Tj +72 375.293 Td +(it) 5.53943 Tj +-278 TJm +(and) 14.3866 Tj +-278 TJm +(terminate) 37.6303 Tj +-277 TJm +(the) 12.1748 Tj +-278 TJm +(current) 28.2152 Tj +-278 TJm +(\(Burro) 26.5614 Tj +25 TJm +(ws-Wheeler\)) 51.4489 Tj +-278 TJm +(co) 9.40507 Tj +1 TJm +(mpression) 40.9579 Tj +-278 TJm +(block.) 24.6285 Tj +-787 TJm +(This) 17.7142 Tj +-278 TJm +(could) 22.1378 Tj +-278 TJm +(be) 9.40507 Tj +-278 TJm +(useful) 24.3496 Tj +-278 TJm +(for) 11.6169 Tj +-278 TJm +(e) 4.42357 Tj +1 TJm +(rror) 14.9345 Tj +-278 TJm +(control) 28.2252 Tj +-278 TJm +(purposes.) 37.9092 Tj +72 363.337 Td +(The) 15.4925 Tj +-328 TJm +(mechanism) 45.3815 Tj +-328 TJm +(is) 6.64532 Tj +-328 TJm +(analogous) 40.4 Tj +-328 TJm +(to) 7.75121 Tj +-328 TJm +(that) 14.9445 Tj +-328 TJm +(for) 11.6169 Tj +-328 TJm +(\002nishing) 34.8805 Tj +1 TJm +(:) 2.76971 Tj +-467 TJm +(cal) 11.6169 Tj +1 TJm +(l) 2.76971 Tj +[1 0 0 1 297.049 363.337] cm +0 g +0 G +[1 0 0 1 -297.049 -363.337] cm +[1 0 0 1 0 0] Tm +0 0 Td +297.049 363.337 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 380.735 363.337] cm +0 g +0 G +[1 0 0 1 -380.735 -363.337] cm +[1 0 0 1 0 0] Tm +0 0 Td +384.003 363.337 Td +/F128_0 9.963 Tf +(with) 17.7142 Tj +-328 TJm +(an) 9.40507 Tj +-328 TJm +(action) 24.3496 Tj +-328 TJm +(of) 8.29918 Tj +[1 0 0 1 456.841 363.337] cm +0 g +0 G +[1 0 0 1 -456.841 -363.337] cm +[1 0 0 1 0 0] Tm +0 0 Td +456.841 363.337 Td +/F130_0 9.963 Tf +(BZ_FLUSH) 47.8224 Tj +[1 0 0 1 504.662 363.337] cm +0 g +0 G +[1 0 0 1 -504.662 -363.337] cm +[1 0 0 1 0 0] Tm +0 0 Td +504.662 363.337 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-328 TJm +(remo) 20.474 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +72 351.382 Td +(output) 25.4654 Tj +-445 TJm +(data,) 19.0891 Tj +-494 TJm +(and) 14.3866 Tj +-445 TJm +(persist) 26.0134 Tj +-445 TJm +(with) 17.7142 Tj +-446 TJm +(the) 12.1748 Tj +[1 0 0 1 213.94 351.382] cm +0 g +0 G +[1 0 0 1 -213.94 -351.382] cm +[1 0 0 1 0 0] Tm +0 0 Td +213.94 351.382 Td +/F130_0 9.963 Tf +(BZ_FLUSH) 47.8224 Tj +[1 0 0 1 261.761 351.382] cm +0 g +0 G +[1 0 0 1 -261.761 -351.382] cm +[1 0 0 1 0 0] Tm +0 0 Td +266.195 351.382 Td +/F128_0 9.963 Tf +(action) 24.3496 Tj +-445 TJm +(until) 18.2721 Tj +-445 TJm +(the) 12.1748 Tj +-445 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +[1 0 0 1 360.062 351.382] cm +0 g +0 G +[1 0 0 1 -360.062 -351.382] cm +[1 0 0 1 0 0] Tm +0 0 Td +360.062 351.382 Td +/F130_0 9.963 Tf +(BZ_RUN) 35.8668 Tj +[1 0 0 1 395.928 351.382] cm +0 g +0 G +[1 0 0 1 -395.928 -351.382] cm +[1 0 0 1 0 0] Tm +0 0 Td +400.362 351.382 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-445 TJm +(returned.) 35.6875 Tj +-1792 TJm +(A) 7.19329 Tj +1 TJm +(s) 3.87561 Tj +-446 TJm +(with) 17.7142 Tj +-445 TJm +(\002nishing,) 37.3712 Tj +[1 0 0 1 72 339.427] cm +0 g +0 G +[1 0 0 1 -72 -339.427] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 339.427 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 155.686 339.427] cm +0 g +0 G +[1 0 0 1 -155.686 -339.427] cm +[1 0 0 1 0 0] Tm +0 0 Td +158.177 339.427 Td +/F128_0 9.963 Tf +(detects) 27.6673 Tj +-250 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-250 TJm +(attempt) 29.889 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(pro) 13.2807 Tj +15 TJm +(vi) 7.75121 Tj +1 TJm +(de) 9.40507 Tj +-250 TJm +(more) 20.474 Tj +-250 TJm +(input) 20.4839 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(once) 18.8101 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(\003ush) 19.378 Tj +-250 TJm +(has) 13.2807 Tj +-250 TJm +(be) 9.40507 Tj +15 TJm +(gun.) 17.4353 Tj +[1 0 0 1 72 337.27] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -327.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 317.509 Td +/F128_0 9.963 Tf +(Once) 21.0219 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(\003ush) 19.378 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(complete,) 39.0151 Tj +-250 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-250 TJm +(stream) 26.5614 Tj +-250 TJm +(returns) 27.6673 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(normal) 28.2252 Tj +-250 TJm +(R) 6.64532 Tj +40 TJm +(UNNING) 39.2841 Tj +-250 TJm +(state.) 20.7529 Tj +[1 0 0 1 72 315.353] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -305.39] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 295.592 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-344 TJm +(all) 9.963 Tj +-343 TJm +(sounds) 27.6772 Tj +-344 TJm +(pretty) 23.2437 Tj +-344 TJm +(comple) 29.3311 Tj +15 TJm +(x) 4.9815 Tj +1 TJm +(,) 2.49075 Tj +-368 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-343 TJm +(isn') 14.9445 Tj +18 TJm +(t) 2.76971 Tj +-344 TJm +(really) 22.6858 Tj +65 TJm +(.) 2.49075 Tj +-1182 TJm +(Here') 22.6758 Tj +55 TJm +(s) 3.87561 Tj +-344 TJm +(a) 4.42357 Tj +-344 TJm +(table) 19.3681 Tj +-343 TJm +(which) 24.3496 Tj +-344 TJm +(sho) 13.8386 Tj +25 TJm +(ws) 11.0689 Tj +-344 TJm +(which) 24.3496 Tj +-343 TJm +(actions) 28.2252 Tj +-344 TJm +(are) 12.1648 Tj +-344 TJm +(allo) 14.9445 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-343 TJm +(in) 7.75121 Tj +-344 TJm +(each) 18.2522 Tj +72 283.636 Td +(state,) 20.7529 Tj +-281 TJm +(wh) 12.1748 Tj +1 TJm +(at) 7.19329 Tj +-275 TJm +(action) 24.3496 Tj +-274 TJm +(will) 15.5024 Tj +-275 TJm +(be) 9.40507 Tj +-274 TJm +(tak) 12.1748 Tj +10 TJm +(en,) 11.8958 Tj +-281 TJm +(what) 19.3681 Tj +-274 TJm +(the) 12.1748 Tj +-275 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-274 TJm +(state) 18.2622 Tj +-275 TJm +(is) 6.64532 Tj +1 TJm +(,) 2.49075 Tj +-281 TJm +(and) 14.3866 Tj +-275 TJm +(what) 19.3681 Tj +-274 TJm +(the) 12.1748 Tj +-274 TJm +(non-error) 37.6203 Tj +-275 TJm +(return) 23.7916 Tj +-274 TJm +(v) 4.9815 Tj +25 TJm +(alues) 20.474 Tj +-275 TJm +(are.) 14.6556 Tj +-767 TJm +(Note) 19.3681 Tj +-274 TJm +(that) 14.9445 Tj +-275 TJm +(you) 14.9445 Tj +-274 TJm +(can') 17.1463 Tj +18 TJm +(t) 2.76971 Tj +72 271.681 Td +(e) 4.42357 Tj +15 TJm +(xplicitly) 33.2166 Tj +-347 TJm +(ask) 13.2807 Tj +-348 TJm +(what) 19.3681 Tj +-347 TJm +(state) 18.2622 Tj +-347 TJm +(the) 12.1748 Tj +-348 TJm +(stream) 26.5614 Tj +-347 TJm +(is) 6.64532 Tj +-347 TJm +(in,) 10.242 Tj +-372 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-348 TJm +(nor) 13.2807 Tj +-347 TJm +(do) 9.963 Tj +-347 TJm +(you) 14.9445 Tj +-348 TJm +(need) 18.8101 Tj +-347 TJm +(to) 7.75121 Tj +-348 TJm +(--) 6.63536 Tj +-347 TJm +(it) 5.53943 Tj +-347 TJm +(can) 13.8286 Tj +-348 TJm +(be) 9.40507 Tj +-347 TJm +(inferred) 31.5329 Tj +-348 TJm +(from) 19.3681 Tj +-347 TJm +(the) 12.1748 Tj +-347 TJm +(v) 4.9815 Tj +25 TJm +(alues) 20.474 Tj +-348 TJm +(returned) 33.1967 Tj +-347 TJm +(by) 9.963 Tj +[1 0 0 1 72 259.726] cm +0 g +0 G +[1 0 0 1 -72 -259.726] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 259.726 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 155.686 259.726] cm +0 g +0 G +[1 0 0 1 -155.686 -259.726] cm +[1 0 0 1 0 0] Tm +0 0 Td +155.686 259.726 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 258.162] cm +0 g +0 G +[1 0 0 1 0 -207.31] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.754] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.754] cm +0 g +0 G +[1 0 0 1 -493.841 -50.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.852 Td +/F128_0 9.963 Tf +(14) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 18 18 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -595.402] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 573.848 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 570.261] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(IDLE/any) 47.8224 Tj +98.488 699.676 Td +(Illegal.) 47.8224 Tj +-852 TJm +(IDLE) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(onl) 17.9334 Tj +1 TJm +(y) 5.9778 Tj +-426 TJm +(exists) 35.8668 Tj +-426 TJm +(after) 29.889 Tj +-426 TJm +(BZ2_bzCompressEnd) 101.623 Tj +-426 TJm +(or) 11.9556 Tj +98.488 687.721 Td +(before) 35.8668 Tj +-426 TJm +(BZ2_bzCompressInit) 107.6 Tj +1 TJm +(.) 5.9778 Tj +98.488 675.766 Td +(Return) 35.8668 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_SEQUENC) 59.778 Tj +1 TJm +(E_ERROR) 41.8446 Tj +90 651.856 Td +(RUNNING/BZ_RUN) 83.6892 Tj +98.488 639.9 Td +(Compress) 47.8224 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(next_in) 41.8446 Tj +-426 TJm +(to) 11.9556 Tj +-425 TJm +(next_out) 47.8224 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(much) 23.9112 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(possible.) 53.8002 Tj +98.488 627.945 Td +(Next) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(RUNNING) 41.8446 Tj +98.488 615.99 Td +(Return) 35.8668 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_RUN_OK) 53.8002 Tj +90 592.08 Td +(RUNNING/BZ_FLUSH) 95.6448 Tj +98.488 580.124 Td +(Remember) 47.8224 Tj +-426 TJm +(current) 41.8446 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(of) 11.9556 Tj +-425 TJm +(next_in.) 47.8224 Tj +-426 TJm +(Compress) 47.8224 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(next_in) 41.8446 Tj +98.488 568.169 Td +(to) 11.9556 Tj +-426 TJm +(next_out) 47.8224 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(much) 23.9112 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(p) 5.9778 Tj +1 TJm +(ossible,) 47.8224 Tj +-426 TJm +(but) 17.9334 Tj +-426 TJm +(do) 11.9556 Tj +-426 TJm +(not) 17.9334 Tj +-426 TJm +(accept) 35.8668 Tj +-426 TJm +(any) 17.9334 Tj +-426 TJm +(more) 23.9112 Tj +-426 TJm +(input.) 35.8668 Tj +98.488 556.214 Td +(Next) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(FLUSHING) 47.8224 Tj +98.488 544.259 Td +(Return) 35.8668 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_FLUSH_O) 59.778 Tj +1 TJm +(K) 5.9778 Tj +90 520.349 Td +(RUNNING/BZ_FINISH) 101.623 Tj +98.488 508.393 Td +(Remember) 47.8224 Tj +-426 TJm +(current) 41.8446 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(of) 11.9556 Tj +-425 TJm +(next_in.) 47.8224 Tj +-426 TJm +(Compress) 47.8224 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(next_in) 41.8446 Tj +98.488 496.438 Td +(to) 11.9556 Tj +-426 TJm +(next_out) 47.8224 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(much) 23.9112 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(p) 5.9778 Tj +1 TJm +(ossible,) 47.8224 Tj +-426 TJm +(but) 17.9334 Tj +-426 TJm +(do) 11.9556 Tj +-426 TJm +(not) 17.9334 Tj +-426 TJm +(accept) 35.8668 Tj +-426 TJm +(any) 17.9334 Tj +-426 TJm +(more) 23.9112 Tj +-426 TJm +(input.) 35.8668 Tj +98.488 484.483 Td +(Next) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(FINISHING) 53.8002 Tj +98.488 472.528 Td +(Return) 35.8668 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_FINISH_) 59.778 Tj +1 TJm +(OK) 11.9556 Tj +90 448.618 Td +(FLUSHING/BZ_FLUSH) 101.623 Tj +98.488 436.662 Td +(Compress) 47.8224 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(next_in) 41.8446 Tj +-426 TJm +(to) 11.9556 Tj +-425 TJm +(next_out) 47.8224 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(much) 23.9112 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(possible,) 53.8002 Tj +98.488 424.707 Td +(but) 17.9334 Tj +-426 TJm +(do) 11.9556 Tj +-426 TJm +(not) 17.9334 Tj +-426 TJm +(accept) 35.8668 Tj +-426 TJm +(any) 17.9334 Tj +-426 TJm +(mo) 11.9556 Tj +1 TJm +(re) 11.9556 Tj +-426 TJm +(input.) 35.8668 Tj +98.488 412.752 Td +(If) 11.9556 Tj +-426 TJm +(all) 17.9334 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(existing) 47.8224 Tj +-426 TJm +(inpu) 23.9112 Tj +1 TJm +(t) 5.9778 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-426 TJm +(used) 23.9112 Tj +-426 TJm +(up) 11.9556 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(all) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +98.488 400.797 Td +(output) 35.8668 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-426 TJm +(removed) 41.8446 Tj +106.976 388.842 Td +(Next) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(RUNNING;) 47.8224 Tj +-426 TJm +(Re) 11.9556 Tj +1 TJm +(turn) 23.9112 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_RUN_OK) 53.8002 Tj +98.488 376.887 Td +(else) 23.9112 Tj +106.976 364.931 Td +(Next) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(FLUSHING;) 53.8002 Tj +-426 TJm +(R) 5.9778 Tj +1 TJm +(eturn) 29.889 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_FLUSH_OK) 65.7558 Tj +90 341.021 Td +(FLUSHING/other) 83.6892 Tj +98.488 329.066 Td +(Illegal.) 47.8224 Tj +98.488 317.111 Td +(Return) 35.8668 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_SEQUENC) 59.778 Tj +1 TJm +(E_ERROR) 41.8446 Tj +90 293.2 Td +(FINISHING/BZ_FINISH) 113.578 Tj +98.488 281.245 Td +(Compress) 47.8224 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(next_in) 41.8446 Tj +-426 TJm +(to) 11.9556 Tj +-425 TJm +(next_out) 47.8224 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(much) 23.9112 Tj +-426 TJm +(as) 11.9556 Tj +-426 TJm +(possible,) 53.8002 Tj +98.488 269.29 Td +(but) 17.9334 Tj +-426 TJm +(to) 11.9556 Tj +-426 TJm +(not) 17.9334 Tj +-426 TJm +(accept) 35.8668 Tj +-426 TJm +(any) 17.9334 Tj +-426 TJm +(mo) 11.9556 Tj +1 TJm +(re) 11.9556 Tj +-426 TJm +(input.) 35.8668 Tj +98.488 257.335 Td +(If) 11.9556 Tj +-426 TJm +(all) 17.9334 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(existing) 47.8224 Tj +-426 TJm +(inpu) 23.9112 Tj +1 TJm +(t) 5.9778 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-426 TJm +(used) 23.9112 Tj +-426 TJm +(up) 11.9556 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(all) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +98.488 245.38 Td +(output) 35.8668 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-426 TJm +(removed) 41.8446 Tj +106.976 233.424 Td +(Next) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(IDLE;) 29.889 Tj +-426 TJm +(Retur) 29.889 Tj +1 TJm +(n) 5.9778 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_STREAM_END) 77.7114 Tj +98.488 221.469 Td +(else) 23.9112 Tj +106.976 209.514 Td +(Next) 23.9112 Tj +-426 TJm +(state) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(FINISHING;) 59.778 Tj +-425 TJm +(Return) 35.8668 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_FINISHING) 71.7336 Tj +90 185.604 Td +(FINISHING/other) 89.667 Tj +98.488 173.649 Td +(Illegal.) 47.8224 Tj +98.488 161.693 Td +(Return) 35.8668 Tj +-426 TJm +(value) 29.889 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_SEQUENC) 59.778 Tj +1 TJm +(E_ERROR) 41.8446 Tj +[1 0 0 1 72 146.152] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -136.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 124.234 Td +/F128_0 9.963 Tf +(That) 18.2622 Tj +-250 TJm +(still) 14.9545 Tj +-250 TJm +(looks) 21.5898 Tj +-250 TJm +(complicate) 43.7176 Tj +1 TJm +(d?) 9.40507 Tj +-620 TJm +(W) 9.40507 Tj +80 TJm +(ell,) 12.4538 Tj +-250 TJm +(f) 3.31768 Tj +10 TJm +(air) 10.511 Tj +-250 TJm +(enough.) 31.8218 Tj +-620 TJm +(The) 15.4925 Tj +-250 TJm +(usual) 21.0319 Tj +-250 TJm +(sequence) 36.5144 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(calls) 18.2622 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(com) 17.1563 Tj +1 TJm +(pressing) 33.2067 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(load) 17.1563 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(is:) 9.41504 Tj +[1 0 0 1 72 122.077] cm +0 g +0 G +[1 0 0 1 0 -29.723] cm +0 g +0 G +[1 0 0 1 7.372 0] cm +0 g +0 G +[1 0 0 1 -79.372 -92.354] cm +[1 0 0 1 0 0] Tm +0 0 Td +79.372 92.354 Td +/F128_0 9.963 Tf +(1.) 7.47225 Tj +[1 0 0 1 86.844 92.354] cm +0 g +0 G +[1 0 0 1 3.089 0] cm +0 g +0 G +[1 0 0 1 1.992 0] cm +0 g +0 G +[1 0 0 1 -91.925 -92.354] cm +[1 0 0 1 0 0] Tm +0 0 Td +91.925 92.354 Td +/F128_0 9.963 Tf +(Get) 14.3866 Tj +-250 TJm +(started) 26.5614 Tj +-250 TJm +(with) 17.7142 Tj +[1 0 0 1 158.056 92.354] cm +0 g +0 G +[1 0 0 1 -158.056 -92.354] cm +[1 0 0 1 0 0] Tm +0 0 Td +158.056 92.354 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 265.653 92.354] cm +0 g +0 G +[1 0 0 1 -265.653 -92.354] cm +[1 0 0 1 0 0] Tm +0 0 Td +265.653 92.354 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 268.144 92.354] cm +0 g +0 G +[1 0 0 1 -196.144 -41.502] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(15) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 19 19 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -31.517] cm +0 g +0 G +[1 0 0 1 7.372 0] cm +0 g +0 G +[1 0 0 1 -79.372 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +79.372 710.037 Td +/F128_0 9.963 Tf +(2.) 7.47225 Tj +[1 0 0 1 86.844 710.037] cm +0 g +0 G +[1 0 0 1 3.089 0] cm +0 g +0 G +[1 0 0 1 1.992 0] cm +0 g +0 G +[1 0 0 1 -91.925 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +91.925 710.037 Td +/F128_0 9.963 Tf +(Sho) 15.5024 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-240 TJm +(data) 16.5984 Tj +-240 TJm +(in) 7.75121 Tj +-240 TJm +(and) 14.3866 Tj +-241 TJm +(shlur) 19.926 Tj +1 TJm +(p) 4.9815 Tj +-241 TJm +(out) 12.7327 Tj +-240 TJm +(its) 9.41504 Tj +-240 TJm +(compressed) 47.0353 Tj +-240 TJm +(form) 19.3681 Tj +-240 TJm +(using) 21.5898 Tj +-240 TJm +(zero) 17.1463 Tj +-240 TJm +(or) 8.29918 Tj +-241 TJm +(m) 7.75121 Tj +1 TJm +(ore) 12.7228 Tj +-241 TJm +(calls) 18.2622 Tj +-240 TJm +(of) 8.29918 Tj +[1 0 0 1 401.454 710.037] cm +0 g +0 G +[1 0 0 1 -401.454 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +401.454 710.037 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 485.14 710.037] cm +0 g +0 G +[1 0 0 1 -485.14 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +487.533 710.037 Td +/F128_0 9.963 Tf +(with) 17.7142 Tj +-240 TJm +(action) 24.3496 Tj +-240 TJm +(=) 5.61913 Tj +[1 0 0 1 91.925 698.082] cm +0 g +0 G +[1 0 0 1 -91.925 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +91.925 698.082 Td +/F130_0 9.963 Tf +(BZ_RUN) 35.8668 Tj +[1 0 0 1 127.791 698.082] cm +0 g +0 G +[1 0 0 1 -127.791 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +127.791 698.082 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 130.281 698.082] cm +0 g +0 G +[1 0 0 1 -58.281 -21.918] cm +0 g +0 G +[1 0 0 1 7.372 0] cm +0 g +0 G +[1 0 0 1 -79.372 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +79.372 676.164 Td +/F128_0 9.963 Tf +(3.) 7.47225 Tj +[1 0 0 1 86.844 676.164] cm +0 g +0 G +[1 0 0 1 3.089 0] cm +0 g +0 G +[1 0 0 1 1.992 0] cm +0 g +0 G +[1 0 0 1 -91.925 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +91.925 676.164 Td +/F128_0 9.963 Tf +(Finish) 24.9175 Tj +-242 TJm +(up) 9.963 Tj +1 TJm +(.) 2.49075 Tj +-308 TJm +(Repeatedl) 39.842 Tj +1 TJm +(y) 4.9815 Tj +-242 TJm +(call) 14.3866 Tj +[1 0 0 1 198.784 676.164] cm +0 g +0 G +[1 0 0 1 -198.784 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +198.784 676.164 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 282.471 676.164] cm +0 g +0 G +[1 0 0 1 -282.471 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +284.878 676.164 Td +/F128_0 9.963 Tf +(with) 17.7142 Tj +-242 TJm +(ac) 8.84714 Tj +1 TJm +(tion) 15.5024 Tj +-242 TJm +(=) 5.61913 Tj +[1 0 0 1 339.78 676.164] cm +0 g +0 G +[1 0 0 1 -339.78 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +339.78 676.164 Td +/F130_0 9.963 Tf +(BZ_FINISH) 53.8002 Tj +[1 0 0 1 393.579 676.164] cm +0 g +0 G +[1 0 0 1 -393.579 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +393.579 676.164 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-242 TJm +(cop) 14.3866 Tj +10 TJm +(yi) 7.75121 Tj +1 TJm +(ng) 9.963 Tj +-242 TJm +(out) 12.7327 Tj +-242 TJm +(the) 12.1748 Tj +-241 TJm +(compressed) 47.0353 Tj +-242 TJm +(output,) 27.9562 Tj +91.925 664.209 Td +(until) 18.2721 Tj +[1 0 0 1 112.687 664.209] cm +0 g +0 G +[1 0 0 1 -112.687 -664.209] cm +[1 0 0 1 0 0] Tm +0 0 Td +112.687 664.209 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 190.396 664.209] cm +0 g +0 G +[1 0 0 1 -190.396 -664.209] cm +[1 0 0 1 0 0] Tm +0 0 Td +192.886 664.209 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(returned.) 35.6875 Tj +[1 0 0 1 237.708 664.209] cm +0 g +0 G +[1 0 0 1 -165.708 -21.918] cm +0 g +0 G +[1 0 0 1 7.372 0] cm +0 g +0 G +[1 0 0 1 -79.372 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +79.372 642.291 Td +/F128_0 9.963 Tf +(4.) 7.47225 Tj +[1 0 0 1 86.844 642.291] cm +0 g +0 G +[1 0 0 1 3.089 0] cm +0 g +0 G +[1 0 0 1 1.992 0] cm +0 g +0 G +[1 0 0 1 -91.925 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +91.925 642.291 Td +/F128_0 9.963 Tf +(Close) 22.6957 Tj +-250 TJm +(up) 9.963 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(go) 9.963 Tj +-250 TJm +(home.) 24.6285 Tj +-620 TJm +(Call) 16.6083 Tj +[1 0 0 1 208.796 642.291] cm +0 g +0 G +[1 0 0 1 -208.796 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +208.796 642.291 Td +/F130_0 9.963 Tf +(BZ2_bzCompressEnd) 101.623 Tj +[1 0 0 1 310.415 642.291] cm +0 g +0 G +[1 0 0 1 -310.415 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +310.415 642.291 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 312.906 642.291] cm +0 g +0 G +[1 0 0 1 -240.906 -12.119] cm +0 g +0 G +[1 0 0 1 -72 -630.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 620.374 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-269 TJm +(the) 12.1748 Tj +-270 TJm +(data) 16.5984 Tj +-269 TJm +(you) 14.9445 Tj +-270 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-269 TJm +(to) 7.75121 Tj +-269 TJm +(compress) 37.6303 Tj +-270 TJm +(\002ts) 12.1847 Tj +-269 TJm +(into) 15.5024 Tj +-270 TJm +(you) 14.9445 Tj +1 TJm +(r) 3.31768 Tj +-270 TJm +(input) 20.4839 Tj +-269 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-270 TJm +(all) 9.963 Tj +-269 TJm +(at) 7.19329 Tj +-270 TJm +(on) 9.963 Tj +1 TJm +(ce,) 11.3379 Tj +-275 TJm +(you) 14.9445 Tj +-269 TJm +(can) 13.8286 Tj +-270 TJm +(skip) 16.6083 Tj +-269 TJm +(the) 12.1748 Tj +-269 TJm +(calls) 18.2622 Tj +-270 TJm +(of) 8.29918 Tj +[1 0 0 1 456.314 620.374] cm +0 g +0 G +[1 0 0 1 -456.314 -620.374] cm +[1 0 0 1 0 0] Tm +0 0 Td +456.314 620.374 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +72 608.418 Td +(\() 5.9778 Tj +-600 TJm +(...,) 23.9112 Tj +-600 TJm +(BZ_RUN) 35.8668 Tj +-600 TJm +(\)) 5.9778 Tj +[1 0 0 1 161.664 608.418] cm +0 g +0 G +[1 0 0 1 -161.664 -608.418] cm +[1 0 0 1 0 0] Tm +0 0 Td +164.154 608.418 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +-250 TJm +(just) 14.3965 Tj +-250 TJm +(do) 9.963 Tj +-250 TJm +(the) 12.1748 Tj +[1 0 0 1 225.036 608.418] cm +0 g +0 G +[1 0 0 1 -225.036 -608.418] cm +[1 0 0 1 0 0] Tm +0 0 Td +225.036 608.418 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +-600 TJm +(\() 5.9778 Tj +-600 TJm +(...,) 23.9112 Tj +-600 TJm +(B) 5.9778 Tj +1 TJm +(Z_FINISH) 47.8224 Tj +-600 TJm +(\)) 5.9778 Tj +[1 0 0 1 422.296 608.418] cm +0 g +0 G +[1 0 0 1 -422.296 -608.418] cm +[1 0 0 1 0 0] Tm +0 0 Td +424.786 608.418 Td +/F128_0 9.963 Tf +(calls.) 20.7529 Tj +[1 0 0 1 72 606.262] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -596.299] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 586.501 Td +/F128_0 9.963 Tf +(All) 12.7327 Tj +-277 TJm +(required) 33.1967 Tj +-278 TJm +(memory) 33.2067 Tj +-277 TJm +(is) 6.64532 Tj +-278 TJm +(allocated) 35.9664 Tj +-277 TJm +(by) 9.963 Tj +[1 0 0 1 220.295 586.501] cm +0 g +0 G +[1 0 0 1 -220.295 -586.501] cm +[1 0 0 1 0 0] Tm +0 0 Td +220.295 586.501 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 327.891 586.501] cm +0 g +0 G +[1 0 0 1 -327.891 -586.501] cm +[1 0 0 1 0 0] Tm +0 0 Td +327.891 586.501 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-785 TJm +(The) 15.4925 Tj +-278 TJm +(compression) 50.363 Tj +-277 TJm +(library) 26.5614 Tj +-277 TJm +(can) 13.8286 Tj +-278 TJm +(accept) 25.4455 Tj +-277 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-278 TJm +(data) 16.5984 Tj +-277 TJm +(at) 7.19329 Tj +-278 TJm +(all) 9.963 Tj +72 574.545 Td +(\(ob) 13.2807 Tj +15 TJm +(viously\).) 35.1495 Tj +-612 TJm +(So) 10.5209 Tj +-237 TJm +(you) 14.9445 Tj +-238 TJm +(shouldn') 34.8705 Tj +18 TJm +(t) 2.76971 Tj +-238 TJm +(ge) 9.40507 Tj +1 TJm +(t) 2.76971 Tj +-238 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-238 TJm +(error) 19.3581 Tj +-238 TJm +(r) 3.31768 Tj +1 TJm +(eturn) 20.474 Tj +-238 TJm +(v) 4.9815 Tj +25 TJm +(alues) 20.474 Tj +-238 TJm +(from) 19.3681 Tj +-237 TJm +(the) 12.1748 Tj +[1 0 0 1 339.287 574.545] cm +0 g +0 G +[1 0 0 1 -339.287 -574.545] cm +[1 0 0 1 0 0] Tm +0 0 Td +339.287 574.545 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 422.973 574.545] cm +0 g +0 G +[1 0 0 1 -422.973 -574.545] cm +[1 0 0 1 0 0] Tm +0 0 Td +425.342 574.545 Td +/F128_0 9.963 Tf +(calls.) 20.7529 Tj +-612 TJm +(If) 6.63536 Tj +-237 TJm +(you) 14.9445 Tj +-238 TJm +(do,) 12.4538 Tj +-240 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-238 TJm +(will) 15.5024 Tj +-237 TJm +(be) 9.40507 Tj +[1 0 0 1 72 562.59] cm +0 g +0 G +[1 0 0 1 -72 -562.59] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 562.59 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +[1 0 0 1 173.619 562.59] cm +0 g +0 G +[1 0 0 1 -173.619 -562.59] cm +[1 0 0 1 0 0] Tm +0 0 Td +173.619 562.59 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(indicate) 31.5429 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(your) 18.2622 Tj +-250 TJm +(prog) 18.2622 Tj +1 TJm +(ramming.) 38.4671 Tj +[1 0 0 1 72 560.433] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -550.471] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 540.672 Td +/F128_0 9.963 Tf +(T) 6.08739 Tj +35 TJm +(ri) 6.08739 Tj +25 TJm +(vial) 14.9445 Tj +-250 TJm +(other) 20.474 Tj +-250 TJm +(possible) 32.6587 Tj +-250 TJm +(return) 23.7916 Tj +-249 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 538.516] cm +0 g +0 G +[1 0 0 1 0 -36.862] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -529.151] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 529.151 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 517.196 Td +(if) 11.9556 Tj +-426 TJm +(strm) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL,) 29.889 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(strm) 23.9112 Tj +1 TJm +(->s) 17.9334 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +[1 0 0 1 72 501.654] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -491.691] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 471.033 Td +/F121_0 17.215 Tf +(3.3.3.) 43.0719 Tj +[1 0 0 1 119.858 471.033] cm +0 g +0 G +[1 0 0 1 -119.858 -471.033] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 471.033 Td +/F387_0 17.215 Tf +(BZ2_bzCompressEnd) 175.593 Tj +[1 0 0 1 295.455 471.033] cm +0 g +0 G +[1 0 0 1 -223.455 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -459.335] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 459.335 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzCompressEnd) 101.623 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(b) 5.9778 Tj +1 TJm +(z_stream) 47.8224 Tj +-426 TJm +(*strm) 29.889 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 443.793] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -433.831] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 421.876 Td +/F128_0 9.963 Tf +(Releases) 34.8605 Tj +-250 TJm +(all) 9.963 Tj +-250 TJm +(memory) 33.2067 Tj +-250 TJm +(assoc) 21.5799 Tj +1 TJm +(iated) 19.3681 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(compression) 50.363 Tj +-250 TJm +(stream.) 29.0521 Tj +[1 0 0 1 72 419.719] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -409.756] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 399.958 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 399.858] cm +0 g +0 G +[1 0 0 1 0 -36.861] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -390.493] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 390.493 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +-852 TJm +(if) 11.9556 Tj +-426 TJm +(strm) 23.9112 Tj +-425 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(strm->s) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +90 378.538 Td +(BZ_OK) 29.889 Tj +-4686 TJm +(otherw) 35.8668 Tj +1 TJm +(ise) 17.9334 Tj +[1 0 0 1 72 362.997] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -353.034] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 332.375 Td +/F121_0 17.215 Tf +(3.3.4.) 43.0719 Tj +[1 0 0 1 119.858 332.375] cm +0 g +0 G +[1 0 0 1 -119.858 -332.375] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 332.375 Td +/F387_0 17.215 Tf +(BZ2_bzDecompressInit) 206.58 Tj +[1 0 0 1 326.443 332.375] cm +0 g +0 G +[1 0 0 1 -254.443 -2.332] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.323] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -320.678] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 320.678 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzDecompressInit) 119.556 Tj +-425 TJm +(\() 5.9778 Tj +-426 TJm +(bz_stream) 53.8002 Tj +-426 TJm +(*strm,) 35.8668 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(verbosity,) 59.778 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(small) 29.889 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 305.136] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -295.173] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 283.218 Td +/F128_0 9.963 Tf +(Prepares) 34.3026 Tj +-351 TJm +(for) 11.6169 Tj +-351 TJm +(decompression.) 62.2588 Tj +-1227 TJm +(As) 11.0689 Tj +-351 TJm +(with) 17.7142 Tj +[1 0 0 1 235.177 283.218] cm +0 g +0 G +[1 0 0 1 -235.177 -283.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +235.177 283.218 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 342.773 283.218] cm +0 g +0 G +[1 0 0 1 -342.773 -283.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +342.773 283.218 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-377 TJm +(a) 4.42357 Tj +[1 0 0 1 356.937 283.218] cm +0 g +0 G +[1 0 0 1 -356.937 -283.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +356.937 283.218 Td +/F130_0 9.963 Tf +(bz_stream) 53.8002 Tj +[1 0 0 1 410.736 283.218] cm +0 g +0 G +[1 0 0 1 -410.736 -283.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +414.234 283.218 Td +/F128_0 9.963 Tf +(record) 25.4455 Tj +-351 TJm +(should) 26.5713 Tj +-351 TJm +(be) 9.40507 Tj +-351 TJm +(allocated) 35.9664 Tj +-351 TJm +(and) 14.3866 Tj +72 271.263 Td +(initialised) 39.304 Tj +-305 TJm +(before) 25.4455 Tj +-306 TJm +(the) 12.1748 Tj +-305 TJm +(call.) 16.8773 Tj +-954 TJm +(Fields) 24.3595 Tj +[1 0 0 1 211.833 271.263] cm +0 g +0 G +[1 0 0 1 -211.833 -271.263] cm +[1 0 0 1 0 0] Tm +0 0 Td +211.833 271.263 Td +/F130_0 9.963 Tf +(bzalloc) 41.8446 Tj +[1 0 0 1 253.676 271.263] cm +0 g +0 G +[1 0 0 1 -253.676 -271.263] cm +[1 0 0 1 0 0] Tm +0 0 Td +253.676 271.263 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 259.35 271.263] cm +0 g +0 G +[1 0 0 1 -259.35 -271.263] cm +[1 0 0 1 0 0] Tm +0 0 Td +259.35 271.263 Td +/F130_0 9.963 Tf +(bzfree) 35.8668 Tj +[1 0 0 1 295.215 271.263] cm +0 g +0 G +[1 0 0 1 -295.215 -271.263] cm +[1 0 0 1 0 0] Tm +0 0 Td +298.26 271.263 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 315.69 271.263] cm +0 g +0 G +[1 0 0 1 -315.69 -271.263] cm +[1 0 0 1 0 0] Tm +0 0 Td +315.69 271.263 Td +/F130_0 9.963 Tf +(opaque) 35.8668 Tj +[1 0 0 1 351.556 271.263] cm +0 g +0 G +[1 0 0 1 -351.556 -271.263] cm +[1 0 0 1 0 0] Tm +0 0 Td +354.6 271.263 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-305 TJm +(be) 9.40507 Tj +-306 TJm +(set) 11.0689 Tj +-306 TJm +(if) 6.08739 Tj +-305 TJm +(a) 4.42357 Tj +-306 TJm +(custom) 28.7831 Tj +-305 TJm +(memory) 33.2067 Tj +-306 TJm +(al) 7.19329 Tj +1 TJm +(locator) 27.6673 Tj +-306 TJm +(is) 6.64532 Tj +72 259.308 Td +(required,) 35.6875 Tj +-350 TJm +(or) 8.29918 Tj +-330 TJm +(made) 21.5799 Tj +[1 0 0 1 147.635 259.308] cm +0 g +0 G +[1 0 0 1 -147.635 -259.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +147.635 259.308 Td +/F130_0 9.963 Tf +(NULL) 23.9112 Tj +[1 0 0 1 171.546 259.308] cm +0 g +0 G +[1 0 0 1 -171.546 -259.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +174.836 259.308 Td +/F128_0 9.963 Tf +(for) 11.6169 Tj +-330 TJm +(the) 12.1748 Tj +-330 TJm +(normal) 28.2252 Tj +[1 0 0 1 236.722 259.308] cm +0 g +0 G +[1 0 0 1 -236.722 -259.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +236.722 259.308 Td +/F130_0 9.963 Tf +(malloc) 35.8668 Tj +[1 0 0 1 272.587 259.308] cm +0 g +0 G +[1 0 0 1 -272.587 -259.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +275.878 259.308 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 281.938 259.308] cm +0 g +0 G +[1 0 0 1 -281.938 -259.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +281.938 259.308 Td +/F130_0 9.963 Tf +(free) 23.9112 Tj +[1 0 0 1 305.848 259.308] cm +0 g +0 G +[1 0 0 1 -305.848 -259.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +309.139 259.308 Td +/F128_0 9.963 Tf +(routines.) 34.5915 Tj +-1102 TJm +(Upo) 17.1563 Tj +1 TJm +(n) 4.9815 Tj +-331 TJm +(return,) 26.2824 Tj +-350 TJm +(the) 12.1748 Tj +-330 TJm +(internal) 30.437 Tj +-330 TJm +(state) 18.2622 Tj +-331 TJm +(wi) 9.963 Tj +1 TJm +(ll) 5.53943 Tj +-331 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-330 TJm +(been) 18.8101 Tj +72 247.353 Td +(initialised,) 41.7948 Tj +-250 TJm +(and) 14.3866 Tj +[1 0 0 1 133.16 247.353] cm +0 g +0 G +[1 0 0 1 -133.16 -247.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +133.16 247.353 Td +/F130_0 9.963 Tf +(total_in) 47.8224 Tj +[1 0 0 1 180.98 247.353] cm +0 g +0 G +[1 0 0 1 -180.98 -247.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +183.471 247.353 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 200.348 247.353] cm +0 g +0 G +[1 0 0 1 -200.348 -247.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +200.348 247.353 Td +/F130_0 9.963 Tf +(total_out) 53.8002 Tj +[1 0 0 1 254.146 247.353] cm +0 g +0 G +[1 0 0 1 -254.146 -247.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +256.637 247.353 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(zero.) 19.6371 Tj +[1 0 0 1 72 245.913] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -235.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 225.435 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(meaning) 34.3126 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(parameter) 39.8321 Tj +[1 0 0 1 192.756 225.435] cm +0 g +0 G +[1 0 0 1 -192.756 -225.435] cm +[1 0 0 1 0 0] Tm +0 0 Td +192.756 225.435 Td +/F130_0 9.963 Tf +(verbosity) 53.8002 Tj +[1 0 0 1 246.554 225.435] cm +0 g +0 G +[1 0 0 1 -246.554 -225.435] cm +[1 0 0 1 0 0] Tm +0 0 Td +246.554 225.435 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(see) 12.7228 Tj +[1 0 0 1 266.748 225.435] cm +0 g +0 G +[1 0 0 1 -266.748 -225.435] cm +[1 0 0 1 0 0] Tm +0 0 Td +266.748 225.435 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 374.345 225.435] cm +0 g +0 G +[1 0 0 1 -374.345 -225.435] cm +[1 0 0 1 0 0] Tm +0 0 Td +374.345 225.435 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 223.278] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -213.316] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 203.517 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +[1 0 0 1 81.497 203.517] cm +0 g +0 G +[1 0 0 1 -81.497 -203.517] cm +[1 0 0 1 0 0] Tm +0 0 Td +81.497 203.517 Td +/F130_0 9.963 Tf +(small) 29.889 Tj +[1 0 0 1 111.385 203.517] cm +0 g +0 G +[1 0 0 1 -111.385 -203.517] cm +[1 0 0 1 0 0] Tm +0 0 Td +114.248 203.517 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-287 TJm +(nonzero,) 34.5816 Tj +-297 TJm +(the) 12.1748 Tj +-287 TJm +(library) 26.5614 Tj +-287 TJm +(will) 15.5024 Tj +-287 TJm +(use) 13.2807 Tj +-288 TJm +(an) 9.40507 Tj +-287 TJm +(alternati) 32.6488 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-287 TJm +(decompression) 59.768 Tj +-287 TJm +(algorithm) 38.7461 Tj +-287 TJm +(which) 24.3496 Tj +-287 TJm +(uses) 17.1563 Tj +-288 TJm +(less) 14.9445 Tj +-287 TJm +(memory) 33.2067 Tj +-287 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-287 TJm +(at) 7.19329 Tj +-287 TJm +(the) 12.1748 Tj +72 191.562 Td +(cost) 16.0504 Tj +-289 TJm +(of) 8.29918 Tj +-290 TJm +(deco) 18.8101 Tj +1 TJm +(mpressing) 40.9579 Tj +-290 TJm +(more) 20.474 Tj +-289 TJm +(slo) 11.6268 Tj +25 TJm +(wly) 14.9445 Tj +-289 TJm +(\(roughly) 34.3126 Tj +-289 TJm +(speaking,) 37.9092 Tj +-299 TJm +(half) 15.4925 Tj +-290 TJm +(the) 12.1748 Tj +-289 TJm +(speed,) 25.1765 Tj +-299 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-289 TJm +(the) 12.1748 Tj +-290 TJm +(m) 7.75121 Tj +1 TJm +(aximum) 32.6587 Tj +-290 TJm +(memory) 33.2067 Tj +-289 TJm +(requirement) 48.1412 Tj +-289 TJm +(drops) 22.1378 Tj +72 179.607 Td +(to) 7.75121 Tj +-250 TJm +(around) 27.6673 Tj +-250 TJm +(2300k\).) 30.7159 Tj +-620 TJm +(See) 14.3866 Tj +[1 0 0 1 166.166 179.607] cm +0 0 1 rg +0 0 1 RG +[1 0 0 1 -166.166 -179.607] cm +[1 0 0 1 0 0] Tm +0 0 Td +166.166 179.607 Td +/F128_0 9.963 Tf +(Ho) 12.1748 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(bzip2) 22.1378 Tj +[1 0 0 1 235.924 179.607] cm +0 g +0 G +0 0 1 rg +0 0 1 RG +0 0 1 rg +0 0 1 RG +[1 0 0 1 -235.924 -179.607] cm +[1 0 0 1 0 0] Tm +0 0 Td +238.415 179.607 Td +/F128_0 9.963 Tf +([2]) 11.6169 Tj +[1 0 0 1 250.031 179.607] cm +0 0 1 rg +0 0 1 RG +0 g +0 G +[1 0 0 1 -250.031 -179.607] cm +[1 0 0 1 0 0] Tm +0 0 Td +252.522 179.607 Td +/F128_0 9.963 Tf +(for) 11.6169 Tj +-250 TJm +(more) 20.474 Tj +-250 TJm +(information) 47.0453 Tj +-250 TJm +(on) 9.963 Tj +-250 TJm +(mem) 19.926 Tj +1 TJm +(ory) 13.2807 Tj +-250 TJm +(management.) 53.4017 Tj +[1 0 0 1 72 177.45] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -167.487] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 157.689 Td +/F128_0 9.963 Tf +(Note) 19.3681 Tj +-289 TJm +(that) 14.9445 Tj +-289 TJm +(the) 12.1748 Tj +-290 TJm +(amou) 22.1378 Tj +1 TJm +(nt) 7.75121 Tj +-290 TJm +(of) 8.29918 Tj +-289 TJm +(memory) 33.2067 Tj +-289 TJm +(needed) 28.2152 Tj +-289 TJm +(to) 7.75121 Tj +-289 TJm +(decompress) 47.0353 Tj +-290 TJm +(a) 4.42357 Tj +-289 TJm +(stream) 26.5614 Tj +-289 TJm +(cannot) 26.5614 Tj +-289 TJm +(be) 9.40507 Tj +-289 TJm +(determined) 44.8235 Tj +-289 TJm +(until) 18.2721 Tj +-290 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-290 TJm +(stream') 29.879 Tj +55 TJm +(s) 3.87561 Tj +-289 TJm +(header) 26.5514 Tj +-289 TJm +(has) 13.2807 Tj +72 145.734 Td +(been) 18.8101 Tj +-342 TJm +(read,) 19.6371 Tj +-365 TJm +(so) 8.85711 Tj +-343 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-342 TJm +(if) 6.08739 Tj +[1 0 0 1 161.081 145.734] cm +0 g +0 G +[1 0 0 1 -161.081 -145.734] cm +[1 0 0 1 0 0] Tm +0 0 Td +161.081 145.734 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressInit) 119.556 Tj +[1 0 0 1 280.633 145.734] cm +0 g +0 G +[1 0 0 1 -280.633 -145.734] cm +[1 0 0 1 0 0] Tm +0 0 Td +284.043 145.734 Td +/F128_0 9.963 Tf +(succeeds,) 37.8993 Tj +-365 TJm +(a) 4.42357 Tj +-342 TJm +(subsequent) 44.2756 Tj +[1 0 0 1 381.098 145.734] cm +0 g +0 G +[1 0 0 1 -381.098 -145.734] cm +[1 0 0 1 0 0] Tm +0 0 Td +381.098 145.734 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 476.739 145.734] cm +0 g +0 G +[1 0 0 1 -476.739 -145.734] cm +[1 0 0 1 0 0] Tm +0 0 Td +480.149 145.734 Td +/F128_0 9.963 Tf +(could) 22.1378 Tj +-342 TJm +(f) 3.31768 Tj +10 TJm +(ail) 9.963 Tj +-342 TJm +(with) 17.7142 Tj +[1 0 0 1 72 133.779] cm +0 g +0 G +[1 0 0 1 -72 -133.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 133.779 Td +/F130_0 9.963 Tf +(BZ_MEM_ERROR) 71.7336 Tj +[1 0 0 1 143.731 133.779] cm +0 g +0 G +[1 0 0 1 -143.731 -133.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +143.731 133.779 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 132.613] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -122.651] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 111.861 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 111.761] cm +0 g +0 G +[1 0 0 1 0 -60.909] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(16) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 20 20 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -117.195] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 95.641 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 92.055] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(BZ_CONFIG_ERROR) 89.667 Tj +98.488 699.676 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(library) 41.8446 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-425 TJm +(mis-compiled) 71.7336 Tj +90 687.721 Td +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 675.766 Td +(if) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(small) 29.889 Tj +-426 TJm +(!=) 11.9556 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(&&) 11.9556 Tj +-426 TJm +(small) 29.889 Tj +-425 TJm +(!=) 11.9556 Tj +-426 TJm +(1) 5.9778 Tj +-426 TJm +(\)) 5.9778 Tj +98.488 663.811 Td +(or) 11.9556 Tj +-426 TJm +(\(verbosity) 59.778 Tj +-426 TJm +(<;) 11.9556 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(||) 11.9556 Tj +-426 TJm +(ve) 11.9556 Tj +1 TJm +(rbosity) 41.8446 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(4\)) 11.9556 Tj +90 651.856 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 639.9 Td +(if) 11.9556 Tj +-426 TJm +(insufficient) 71.7336 Tj +-426 TJm +(memory) 35.8668 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(available) 53.8002 Tj +[1 0 0 1 72 624.359] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -614.396] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 602.441 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 602.341] cm +0 g +0 G +[1 0 0 1 0 -48.817] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 47.821 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 44.234] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -592.976] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 592.976 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +98.488 581.021 Td +(if) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(returned) 47.8224 Tj +98.488 569.066 Td +(no) 11.9556 Tj +-426 TJm +(specific) 47.8224 Tj +-426 TJm +(action) 35.8668 Tj +-426 TJm +(requir) 35.8668 Tj +1 TJm +(ed) 11.9556 Tj +-426 TJm +(in) 11.9556 Tj +-426 TJm +(case) 23.9112 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(error) 29.889 Tj +[1 0 0 1 72 553.524] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -543.562] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 522.903 Td +/F121_0 17.215 Tf +(3.3.5.) 43.0719 Tj +[1 0 0 1 119.858 522.903] cm +0 g +0 G +[1 0 0 1 -119.858 -522.903] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 522.903 Td +/F387_0 17.215 Tf +(BZ2_bzDecompress) 165.264 Tj +[1 0 0 1 285.126 522.903] cm +0 g +0 G +[1 0 0 1 -213.126 -2.332] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.323] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -511.206] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 511.206 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzDecompress) 95.6448 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(bz) 11.9556 Tj +1 TJm +(_stream) 41.8446 Tj +-426 TJm +(*strm) 29.889 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 495.664] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 473.746 Td +/F128_0 9.963 Tf +(Pro) 13.8386 Tj +15 TJm +(vides) 21.0319 Tj +-301 TJm +(more) 20.474 Tj +-302 TJm +(inpu) 17.7142 Tj +1 TJm +(t) 2.76971 Tj +-302 TJm +(and/out) 29.889 Tj +-301 TJm +(output) 25.4654 Tj +-301 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-302 TJm +(space) 22.1278 Tj +-301 TJm +(for) 11.6169 Tj +-301 TJm +(the) 12.1748 Tj +-302 TJm +(library) 26.5614 Tj +65 TJm +(.) 2.49075 Tj +-928 TJm +(The) 15.4925 Tj +-301 TJm +(caller) 22.1278 Tj +-302 TJm +(maintains) 38.7461 Tj +-301 TJm +(input) 20.4839 Tj +-301 TJm +(and) 14.3866 Tj +-302 TJm +(out) 12.7327 Tj +1 TJm +(put) 12.7327 Tj +-302 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fers,) 17.4253 Tj +-314 TJm +(and) 14.3866 Tj +72 461.791 Td +(uses) 17.1563 Tj +[1 0 0 1 91.646 461.791] cm +0 g +0 G +[1 0 0 1 -91.646 -461.791] cm +[1 0 0 1 0 0] Tm +0 0 Td +91.646 461.791 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 187.287 461.791] cm +0 g +0 G +[1 0 0 1 -187.287 -461.791] cm +[1 0 0 1 0 0] Tm +0 0 Td +189.778 461.791 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(transfer) 30.427 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(between) 33.1967 Tj +-250 TJm +(them) 19.926 Tj +1 TJm +(.) 2.49075 Tj +[1 0 0 1 72 460.227] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -450.264] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 439.873 Td +/F128_0 9.963 Tf +(Before) 27.1093 Tj +-498 TJm +(each) 18.2522 Tj +-498 TJm +(call) 14.3866 Tj +-499 TJm +(to) 7.75121 Tj +[1 0 0 1 159.356 439.873] cm +0 g +0 G +[1 0 0 1 -159.356 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +159.356 439.873 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 254.997 439.873] cm +0 g +0 G +[1 0 0 1 -254.997 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +254.997 439.873 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 263.071 439.873] cm +0 g +0 G +[1 0 0 1 -263.071 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +263.071 439.873 Td +/F130_0 9.963 Tf +(next_in) 41.8446 Tj +[1 0 0 1 304.914 439.873] cm +0 g +0 G +[1 0 0 1 -304.914 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +309.879 439.873 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-498 TJm +(point) 20.4839 Tj +-498 TJm +(at) 7.19329 Tj +-499 TJm +(the) 12.1748 Tj +-498 TJm +(compressed) 47.0353 Tj +-498 TJm +(data,) 19.0891 Tj +-560 TJm +(and) 14.3866 Tj +[1 0 0 1 492.179 439.873] cm +0 g +0 G +[1 0 0 1 -492.179 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +492.179 439.873 Td +/F130_0 9.963 Tf +(avail_in) 47.8224 Tj +[1 0 0 1 540 439.873] cm +0 g +0 G +[1 0 0 1 -540 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 427.918 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-308 TJm +(indicate) 31.5429 Tj +-308 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-308 TJm +(man) 17.1563 Tj +15 TJm +(y) 4.9815 Tj +-308 TJm +(bytes) 21.0319 Tj +-308 TJm +(the) 12.1748 Tj +-309 TJm +(library) 26.5614 Tj +-308 TJm +(may) 17.1563 Tj +-308 TJm +(read.) 19.6371 Tj +[1 0 0 1 294.955 427.918] cm +0 g +0 G +[1 0 0 1 -294.955 -427.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +294.955 427.918 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 390.597 427.918] cm +0 g +0 G +[1 0 0 1 -390.597 -427.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +393.667 427.918 Td +/F128_0 9.963 Tf +(updates) 30.437 Tj +[1 0 0 1 427.173 427.918] cm +0 g +0 G +[1 0 0 1 -427.173 -427.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +427.173 427.918 Td +/F130_0 9.963 Tf +(next_in) 41.8446 Tj +[1 0 0 1 469.016 427.918] cm +0 g +0 G +[1 0 0 1 -469.016 -427.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +469.016 427.918 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 474.723 427.918] cm +0 g +0 G +[1 0 0 1 -474.723 -427.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +474.723 427.918 Td +/F130_0 9.963 Tf +(avail_in) 47.8224 Tj +[1 0 0 1 522.543 427.918] cm +0 g +0 G +[1 0 0 1 -522.543 -427.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +525.614 427.918 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 72 415.963] cm +0 g +0 G +[1 0 0 1 -72 -415.963] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 415.963 Td +/F130_0 9.963 Tf +(total_in) 47.8224 Tj +[1 0 0 1 119.821 415.963] cm +0 g +0 G +[1 0 0 1 -119.821 -415.963] cm +[1 0 0 1 0 0] Tm +0 0 Td +122.311 415.963 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(re\003ect) 24.8975 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(number) 30.437 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(bytes) 21.0319 Tj +-250 TJm +(i) 2.76971 Tj +1 TJm +(t) 2.76971 Tj +-250 TJm +(has) 13.2807 Tj +-250 TJm +(read.) 19.6371 Tj +[1 0 0 1 72 413.806] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -403.843] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 394.045 Td +/F128_0 9.963 Tf +(Similarly) 37.0922 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 113.799 394.045] cm +0 g +0 G +[1 0 0 1 -113.799 -394.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +113.799 394.045 Td +/F130_0 9.963 Tf +(next_out) 47.8224 Tj +[1 0 0 1 161.62 394.045] cm +0 g +0 G +[1 0 0 1 -161.62 -394.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +164.41 394.045 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-280 TJm +(point) 20.4839 Tj +-280 TJm +(to) 7.75121 Tj +-280 TJm +(a) 4.42357 Tj +-280 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-280 TJm +(in) 7.75121 Tj +-280 TJm +(which) 24.3496 Tj +-280 TJm +(the) 12.1748 Tj +-280 TJm +(uncompressed) 56.9983 Tj +-280 TJm +(output) 25.4654 Tj +-280 TJm +(is) 6.64532 Tj +-280 TJm +(to) 7.75121 Tj +-280 TJm +(be) 9.40507 Tj +-280 TJm +(placed,) 28.4942 Tj +-288 TJm +(with) 17.7142 Tj +[1 0 0 1 486.202 394.045] cm +0 g +0 G +[1 0 0 1 -486.202 -394.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +486.202 394.045 Td +/F130_0 9.963 Tf +(avail_out) 53.8002 Tj +[1 0 0 1 540 394.045] cm +0 g +0 G +[1 0 0 1 -540 -394.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 382.09 Td +/F128_0 9.963 Tf +(indicating) 39.852 Tj +-524 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-525 TJm +(much) 22.1378 Tj +-524 TJm +(output) 25.4654 Tj +-525 TJm +(space) 22.1278 Tj +-524 TJm +(is) 6.64532 Tj +-525 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailable.) 29.0521 Tj +[1 0 0 1 285.792 382.09] cm +0 g +0 G +[1 0 0 1 -285.792 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +285.792 382.09 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 369.478 382.09] cm +0 g +0 G +[1 0 0 1 -369.478 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +374.705 382.09 Td +/F128_0 9.963 Tf +(updates) 30.437 Tj +[1 0 0 1 410.367 382.09] cm +0 g +0 G +[1 0 0 1 -410.367 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +410.367 382.09 Td +/F130_0 9.963 Tf +(next_out) 47.8224 Tj +[1 0 0 1 458.188 382.09] cm +0 g +0 G +[1 0 0 1 -458.188 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +458.188 382.09 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 466.589 382.09] cm +0 g +0 G +[1 0 0 1 -466.589 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +466.589 382.09 Td +/F130_0 9.963 Tf +(avail_out) 53.8002 Tj +[1 0 0 1 520.387 382.09] cm +0 g +0 G +[1 0 0 1 -520.387 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +525.614 382.09 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 72 370.135] cm +0 g +0 G +[1 0 0 1 -72 -370.135] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 370.135 Td +/F130_0 9.963 Tf +(total_out) 53.8002 Tj +[1 0 0 1 125.798 370.135] cm +0 g +0 G +[1 0 0 1 -125.798 -370.135] cm +[1 0 0 1 0 0] Tm +0 0 Td +128.289 370.135 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(re\003ect) 24.8975 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(number) 30.437 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(bytes) 21.0319 Tj +-249 TJm +(output.) 27.9562 Tj +[1 0 0 1 72 367.978] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -358.015] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 348.217 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-320 TJm +(may) 17.1563 Tj +-321 TJm +(pro) 13.2807 Tj +15 TJm +(vide) 17.1563 Tj +-320 TJm +(and) 14.3866 Tj +-320 TJm +(remo) 20.474 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-321 TJm +(as) 8.29918 Tj +-320 TJm +(little) 18.2721 Tj +-320 TJm +(or) 8.29918 Tj +-321 TJm +(as) 8.29918 Tj +-320 TJm +(much) 22.1378 Tj +-320 TJm +(data) 16.5984 Tj +-321 TJm +(as) 8.29918 Tj +-320 TJm +(you) 14.9445 Tj +-321 TJm +(lik) 10.5209 Tj +11 TJm +(e) 4.42357 Tj +-321 TJm +(on) 9.963 Tj +-320 TJm +(each) 18.2522 Tj +-321 TJm +(call) 14.3866 Tj +-320 TJm +(of) 8.29918 Tj +[1 0 0 1 407.816 348.217] cm +0 g +0 G +[1 0 0 1 -407.816 -348.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +407.816 348.217 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 503.457 348.217] cm +0 g +0 G +[1 0 0 1 -503.457 -348.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +503.457 348.217 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1043 TJm +(In) 8.29918 Tj +-320 TJm +(the) 12.1748 Tj +72 336.262 Td +(limit,) 21.3208 Tj +-295 TJm +(it) 5.53943 Tj +-286 TJm +(is) 6.64532 Tj +-287 TJm +(ac) 8.84714 Tj +1 TJm +(ceptable) 33.1967 Tj +-287 TJm +(to) 7.75121 Tj +-286 TJm +(supply) 26.5713 Tj +-286 TJm +(and) 14.3866 Tj +-286 TJm +(remo) 20.474 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-286 TJm +(data) 16.5984 Tj +-286 TJm +(one) 14.3866 Tj +-286 TJm +(byte) 17.1563 Tj +-287 TJm +(at) 7.19329 Tj +-286 TJm +(a) 4.42357 Tj +-286 TJm +(time,) 20.205 Tj +-295 TJm +(although) 34.8705 Tj +-286 TJm +(this) 14.3965 Tj +-286 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-287 TJm +(be) 9.40507 Tj +-286 TJm +(terribly) 29.3311 Tj +-286 TJm +(inef) 15.4925 Tj +25 TJm +(\002cient.) 27.3983 Tj +-837 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +72 324.307 Td +(should) 26.5713 Tj +-250 TJm +(al) 7.19329 Tj +10 TJm +(w) 7.19329 Tj +10 TJm +(ays) 13.2807 Tj +-250 TJm +(ensure) 26.0034 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(at) 7.19329 Tj +-249 TJm +(least) 18.2622 Tj +-250 TJm +(one) 14.3866 Tj +-250 TJm +(byte) 17.1563 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(output) 25.4654 Tj +-250 TJm +(space) 22.1278 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailable) 26.5614 Tj +-250 TJm +(at) 7.19329 Tj +-250 TJm +(each) 18.2522 Tj +-250 TJm +(call.) 16.8773 Tj +[1 0 0 1 72 322.15] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -312.187] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 302.389 Td +/F128_0 9.963 Tf +(Use) 15.4925 Tj +-250 TJm +(of) 8.29918 Tj +[1 0 0 1 100.772 302.389] cm +0 g +0 G +[1 0 0 1 -100.772 -302.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +100.772 302.389 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 196.413 302.389] cm +0 g +0 G +[1 0 0 1 -196.413 -302.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +198.904 302.389 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(simpler) 29.889 Tj +-250 TJm +(than) 17.1563 Tj +[1 0 0 1 260.064 302.389] cm +0 g +0 G +[1 0 0 1 -260.064 -302.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +260.064 302.389 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 343.75 302.389] cm +0 g +0 G +[1 0 0 1 -343.75 -302.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +343.75 302.389 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 300.232] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -290.269] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 280.471 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-346 TJm +(should) 26.5713 Tj +-346 TJm +(pro) 13.2807 Tj +15 TJm +(vide) 17.1563 Tj +-346 TJm +(input) 20.4839 Tj +-347 TJm +(and) 14.3866 Tj +-346 TJm +(remo) 20.474 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-346 TJm +(output) 25.4654 Tj +-346 TJm +(as) 8.29918 Tj +-346 TJm +(described) 38.1782 Tj +-346 TJm +(abo) 14.3866 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e,) 6.91432 Tj +-371 TJm +(and) 14.3866 Tj +-346 TJm +(repeatedly) 41.4959 Tj +-346 TJm +(call) 14.3866 Tj +[1 0 0 1 422.638 280.471] cm +0 g +0 G +[1 0 0 1 -422.638 -280.471] cm +[1 0 0 1 0 0] Tm +0 0 Td +422.638 280.471 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 518.279 280.471] cm +0 g +0 G +[1 0 0 1 -518.279 -280.471] cm +[1 0 0 1 0 0] Tm +0 0 Td +521.729 280.471 Td +/F128_0 9.963 Tf +(until) 18.2721 Tj +[1 0 0 1 72 268.516] cm +0 g +0 G +[1 0 0 1 -72 -268.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 268.516 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 149.709 268.516] cm +0 g +0 G +[1 0 0 1 -149.709 -268.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +152.314 268.516 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-262 TJm +(ret) 10.511 Tj +1 TJm +(urned.) 25.1765 Tj +-345 TJm +(Appearance) 47.5733 Tj +-261 TJm +(of) 8.29918 Tj +[1 0 0 1 261.767 268.516] cm +0 g +0 G +[1 0 0 1 -261.767 -268.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +261.767 268.516 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 339.475 268.516] cm +0 g +0 G +[1 0 0 1 -339.475 -268.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +342.081 268.516 Td +/F128_0 9.963 Tf +(denotes) 30.437 Tj +-261 TJm +(that) 14.9445 Tj +[1 0 0 1 392.672 268.516] cm +0 g +0 G +[1 0 0 1 -392.672 -268.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +392.672 268.516 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 488.313 268.516] cm +0 g +0 G +[1 0 0 1 -488.313 -268.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +490.919 268.516 Td +/F128_0 9.963 Tf +(has) 13.2807 Tj +-261 TJm +(detected) 33.1967 Tj +72 256.561 Td +(the) 12.1748 Tj +-212 TJm +(logical) 27.1193 Tj +-211 TJm +(end) 14.3866 Tj +-212 TJm +(of) 8.29918 Tj +-212 TJm +(the) 12.1748 Tj +-212 TJm +(compressed) 47.0353 Tj +-211 TJm +(stream.) 29.0521 Tj +[1 0 0 1 237.858 256.561] cm +0 g +0 G +[1 0 0 1 -237.858 -256.561] cm +[1 0 0 1 0 0] Tm +0 0 Td +237.858 256.561 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 333.499 256.561] cm +0 g +0 G +[1 0 0 1 -333.499 -256.561] cm +[1 0 0 1 0 0] Tm +0 0 Td +335.609 256.561 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-212 TJm +(not) 12.7327 Tj +-212 TJm +(pr) 8.29918 Tj +1 TJm +(oduce) 23.7916 Tj +[1 0 0 1 402.263 256.561] cm +0 g +0 G +[1 0 0 1 -402.263 -256.561] cm +[1 0 0 1 0 0] Tm +0 0 Td +402.263 256.561 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 479.972 256.561] cm +0 g +0 G +[1 0 0 1 -479.972 -256.561] cm +[1 0 0 1 0 0] Tm +0 0 Td +482.082 256.561 Td +/F128_0 9.963 Tf +(until) 18.2721 Tj +-212 TJm +(all) 9.963 Tj +-211 TJm +(output) 25.4654 Tj +72 244.605 Td +(data) 16.5984 Tj +-256 TJm +(has) 13.2807 Tj +-255 TJm +(been) 18.8101 Tj +-256 TJm +(placed) 26.0034 Tj +-256 TJm +(into) 15.5024 Tj +-256 TJm +(the) 12.1748 Tj +-255 TJm +(output) 25.4654 Tj +-256 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +40 TJm +(,) 2.49075 Tj +-257 TJm +(so) 8.85711 Tj +-256 TJm +(once) 18.8101 Tj +[1 0 0 1 278.979 244.605] cm +0 g +0 G +[1 0 0 1 -278.979 -244.605] cm +[1 0 0 1 0 0] Tm +0 0 Td +278.979 244.605 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 356.687 244.605] cm +0 g +0 G +[1 0 0 1 -356.687 -244.605] cm +[1 0 0 1 0 0] Tm +0 0 Td +359.236 244.605 Td +/F128_0 9.963 Tf +(appears,) 32.9178 Tj +-257 TJm +(you) 14.9445 Tj +-256 TJm +(are) 12.1648 Tj +-256 TJm +(guaran) 27.1093 Tj +1 TJm +(teed) 16.5984 Tj +-256 TJm +(to) 7.75121 Tj +-256 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-256 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailable) 26.5614 Tj +72 232.65 Td +(all) 9.963 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(decompressed) 56.4404 Tj +-250 TJm +(output,) 27.9562 Tj +-249 TJm +(and) 14.3866 Tj +[1 0 0 1 205.369 232.65] cm +0 g +0 G +[1 0 0 1 -205.369 -232.65] cm +[1 0 0 1 0 0] Tm +0 0 Td +205.369 232.65 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressEnd) 113.578 Tj +[1 0 0 1 318.943 232.65] cm +0 g +0 G +[1 0 0 1 -318.943 -232.65] cm +[1 0 0 1 0 0] Tm +0 0 Td +321.433 232.65 Td +/F128_0 9.963 Tf +(can) 13.8286 Tj +-250 TJm +(safely) 23.7916 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(called.) 26.2824 Tj +[1 0 0 1 72 230.493] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -220.531] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 210.732 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-250 TJm +(case) 17.1463 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(an) 9.40507 Tj +-250 TJm +(error) 19.3581 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +1 TJm +(,) 2.49075 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(call) 14.3866 Tj +[1 0 0 1 261.259 210.732] cm +0 g +0 G +[1 0 0 1 -261.259 -210.732] cm +[1 0 0 1 0 0] Tm +0 0 Td +261.259 210.732 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressEnd) 113.578 Tj +[1 0 0 1 374.833 210.732] cm +0 g +0 G +[1 0 0 1 -374.833 -210.732] cm +[1 0 0 1 0 0] Tm +0 0 Td +377.323 210.732 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(clean) 21.0219 Tj +-250 TJm +(up) 9.963 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(release) 27.6573 Tj +-250 TJm +(memor) 28.2252 Tj +1 TJm +(y) 4.9815 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 208.576] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -198.613] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 188.815 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 188.715] cm +0 g +0 G +[1 0 0 1 0 -137.863] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(17) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 21 21 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -200.882] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 179.328 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 175.741] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 699.676 Td +(if) 11.9556 Tj +-426 TJm +(strm) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(strm-) 29.889 Tj +1 TJm +(>s) 11.9556 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +98.488 687.721 Td +(or) 11.9556 Tj +-426 TJm +(strm->avail_out) 89.667 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(1) 5.9778 Tj +90 675.766 Td +(BZ_DATA_ERROR) 77.7114 Tj +98.488 663.811 Td +(if) 11.9556 Tj +-426 TJm +(a) 5.9778 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(integrity) 53.8002 Tj +-426 TJm +(erro) 23.9112 Tj +1 TJm +(r) 5.9778 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(detected) 47.8224 Tj +-426 TJm +(in) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(stream) 35.8668 Tj +90 651.856 Td +(BZ_DATA_ERROR_MAGIC) 113.578 Tj +98.488 639.9 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(stream) 35.8668 Tj +-425 TJm +(doesn't) 41.8446 Tj +-426 TJm +(begin) 29.889 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(right) 29.889 Tj +-426 TJm +(magic) 29.889 Tj +-426 TJm +(bytes) 29.889 Tj +90 627.945 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 615.99 Td +(if) 11.9556 Tj +-426 TJm +(there) 29.889 Tj +-426 TJm +(wasn't) 35.8668 Tj +-426 TJm +(enough) 35.8668 Tj +-426 TJm +(m) 5.9778 Tj +1 TJm +(emory) 29.889 Tj +-426 TJm +(available) 53.8002 Tj +90 604.035 Td +(BZ_STREAM_END) 77.7114 Tj +98.488 592.08 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(logical) 41.8446 Tj +-426 TJm +(end) 17.9334 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(th) 11.9556 Tj +1 TJm +(e) 5.9778 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(stream) 35.8668 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(detected) 47.8224 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(all) 17.9334 Tj +98.488 580.124 Td +(output) 35.8668 Tj +-426 TJm +(in) 11.9556 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-426 TJm +(consu) 29.889 Tj +1 TJm +(med,) 23.9112 Tj +-426 TJm +(eg) 11.9556 Tj +-426 TJm +(s-->avail_out) 77.7114 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +90 568.169 Td +(BZ_OK) 29.889 Tj +98.488 556.214 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 540.672] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -530.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 518.755 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 518.655] cm +0 g +0 G +[1 0 0 1 0 -60.772] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 56.189] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -509.29] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 509.29 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +98.488 497.335 Td +(if) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(returned) 47.8224 Tj +90 485.38 Td +(BZ2_bzDecompressEnd) 113.578 Tj +98.488 473.425 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 457.883] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -447.92] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 427.262 Td +/F121_0 17.215 Tf +(3.3.6.) 43.0719 Tj +[1 0 0 1 119.858 427.262] cm +0 g +0 G +[1 0 0 1 -119.858 -427.262] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 427.262 Td +/F387_0 17.215 Tf +(BZ2_bzDecompressEnd) 196.251 Tj +[1 0 0 1 316.114 427.262] cm +0 g +0 G +[1 0 0 1 -244.114 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.906] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -415.564] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 415.564 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzDecompressEnd) 113.578 Tj +-426 TJm +(\() 5.9778 Tj +-425 TJm +(bz_stream) 53.8002 Tj +-426 TJm +(*strm) 29.889 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 400.023] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -390.06] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 378.105 Td +/F128_0 9.963 Tf +(Releases) 34.8605 Tj +-250 TJm +(all) 9.963 Tj +-250 TJm +(memory) 33.2067 Tj +-250 TJm +(assoc) 21.5799 Tj +1 TJm +(iated) 19.3681 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(decompression) 59.768 Tj +-250 TJm +(stream.) 29.0521 Tj +[1 0 0 1 72 375.948] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -365.985] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 356.187 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 356.087] cm +0 g +0 G +[1 0 0 1 0 -60.772] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 56.189] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -346.723] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 346.723 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 334.767 Td +(if) 11.9556 Tj +-426 TJm +(strm) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(strm-) 29.889 Tj +1 TJm +(>s) 11.9556 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +90 322.812 Td +(BZ_OK) 29.889 Tj +98.488 310.857 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 295.315] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -285.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 273.398 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 273.298] cm +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -263.933] cm +[1 0 0 1 0 0] Tm +0 0 Td +98.488 263.933 Td +/F130_0 9.963 Tf +(None.) 29.889 Tj +[1 0 0 1 72 248.391] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -238.429] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 213.639 Td +/F121_0 20.659 Tf +(3.4.) 34.4592 Tj +-278 TJm +(High-le) 70.0134 Tj +15 TJm +(vel) 28.716 Tj +-278 TJm +(interface) 86.1067 Tj +[1 0 0 1 72 209.042] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -199.08] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 191.721 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace) 13.2707 Tj +-250 TJm +(pro) 13.2807 Tj +15 TJm +(vides) 21.0319 Tj +-250 TJm +(funct) 20.474 Tj +1 TJm +(ions) 16.6083 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(reading) 29.879 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(writing) 28.7831 Tj +[1 0 0 1 300.292 191.721] cm +0 g +0 G +[1 0 0 1 -300.292 -191.721] cm +[1 0 0 1 0 0] Tm +0 0 Td +300.292 191.721 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 330.18 191.721] cm +0 g +0 G +[1 0 0 1 -330.18 -191.721] cm +[1 0 0 1 0 0] Tm +0 0 Td +332.67 191.721 Td +/F128_0 9.963 Tf +(format) 26.5614 Tj +-250 TJm +(\002les.) 19.0991 Tj +-620 TJm +(First,) 20.7629 Tj +-250 TJm +(some) 21.0319 Tj +-250 TJm +(gen) 14.3866 Tj +1 TJm +(eral) 14.9345 Tj +-250 TJm +(points.) 26.8503 Tj +[1 0 0 1 72 189.564] cm +0 g +0 G +[1 0 0 1 0 -29.724] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 159.84 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 159.84] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 159.84 Td +/F128_0 9.963 Tf +(All) 12.7327 Tj +-332 TJm +(of) 8.29918 Tj +-331 TJm +(the) 12.1748 Tj +-332 TJm +(functions) 37.0823 Tj +-331 TJm +(tak) 12.1748 Tj +10 TJm +(e) 4.42357 Tj +-332 TJm +(an) 9.40507 Tj +[1 0 0 1 202.958 159.84] cm +0 g +0 G +[1 0 0 1 -202.958 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +202.958 159.84 Td +/F130_0 9.963 Tf +(int*) 23.9112 Tj +[1 0 0 1 226.868 159.84] cm +0 g +0 G +[1 0 0 1 -226.868 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +230.172 159.84 Td +/F128_0 9.963 Tf +(\002rst) 15.5024 Tj +-332 TJm +(ar) 7.74125 Tj +18 TJm +(gume) 22.1378 Tj +1 TJm +(nt,) 10.242 Tj +[1 0 0 1 292.426 159.84] cm +0 g +0 G +[1 0 0 1 -292.426 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +292.426 159.84 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 334.269 159.84] cm +0 g +0 G +[1 0 0 1 -334.269 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +334.269 159.84 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1110 TJm +(After) 21.0219 Tj +-331 TJm +(each) 18.2522 Tj +-332 TJm +(call,) 16.8773 Tj +[1 0 0 1 414.083 159.84] cm +0 g +0 G +[1 0 0 1 -414.083 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +414.083 159.84 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 455.926 159.84] cm +0 g +0 G +[1 0 0 1 -455.926 -159.84] cm +[1 0 0 1 0 0] Tm +0 0 Td +459.23 159.84 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-332 TJm +(be) 9.40507 Tj +-331 TJm +(consulted) 38.1882 Tj +86.944 147.885 Td +(\002rst) 15.5024 Tj +-349 TJm +(to) 7.75121 Tj +-348 TJm +(determine) 39.842 Tj +-349 TJm +(the) 12.1748 Tj +-349 TJm +(outcome) 34.3126 Tj +-348 TJm +(of) 8.29918 Tj +-349 TJm +(the) 12.1748 Tj +-349 TJm +(call.) 16.8773 Tj +-1212 TJm +(If) 6.63536 Tj +[1 0 0 1 280.386 147.885] cm +0 g +0 G +[1 0 0 1 -280.386 -147.885] cm +[1 0 0 1 0 0] Tm +0 0 Td +280.386 147.885 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 322.229 147.885] cm +0 g +0 G +[1 0 0 1 -322.229 -147.885] cm +[1 0 0 1 0 0] Tm +0 0 Td +325.704 147.885 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +[1 0 0 1 335.823 147.885] cm +0 g +0 G +[1 0 0 1 -335.823 -147.885] cm +[1 0 0 1 0 0] Tm +0 0 Td +335.823 147.885 Td +/F130_0 9.963 Tf +(BZ_OK) 29.889 Tj +[1 0 0 1 365.711 147.885] cm +0 g +0 G +[1 0 0 1 -365.711 -147.885] cm +[1 0 0 1 0 0] Tm +0 0 Td +365.711 147.885 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-349 TJm +(the) 12.1748 Tj +-349 TJm +(c) 4.42357 Tj +1 TJm +(all) 9.963 Tj +-349 TJm +(completed) 41.5059 Tj +-349 TJm +(successfully) 48.6991 Tj +65 TJm +(,) 2.49075 Tj +-373 TJm +(and) 14.3866 Tj +-349 TJm +(only) 17.7142 Tj +86.944 135.93 Td +(then) 17.1563 Tj +-271 TJm +(s) 3.87561 Tj +1 TJm +(hould) 22.6957 Tj +-271 TJm +(the) 12.1748 Tj +-271 TJm +(re) 7.74125 Tj +1 TJm +(turn) 16.0504 Tj +-271 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-271 TJm +(o) 4.9815 Tj +1 TJm +(f) 3.31768 Tj +-271 TJm +(the) 12.1748 Tj +-271 TJm +(functi) 23.2437 Tj +1 TJm +(on) 9.963 Tj +-271 TJm +(\(if) 9.40507 Tj +-271 TJm +(an) 9.40507 Tj +15 TJm +(y\)) 8.29918 Tj +-270 TJm +(be) 9.40507 Tj +-271 TJm +(consulted.) 40.6789 Tj +-743 TJm +(If) 6.63536 Tj +[1 0 0 1 365.077 135.93] cm +0 g +0 G +[1 0 0 1 -365.077 -135.93] cm +[1 0 0 1 0 0] Tm +0 0 Td +365.077 135.93 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 406.92 135.93] cm +0 g +0 G +[1 0 0 1 -406.92 -135.93] cm +[1 0 0 1 0 0] Tm +0 0 Td +409.616 135.93 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +[1 0 0 1 418.956 135.93] cm +0 g +0 G +[1 0 0 1 -418.956 -135.93] cm +[1 0 0 1 0 0] Tm +0 0 Td +418.956 135.93 Td +/F130_0 9.963 Tf +(BZ_IO_ERROR) 65.7558 Tj +[1 0 0 1 484.71 135.93] cm +0 g +0 G +[1 0 0 1 -484.71 -135.93] cm +[1 0 0 1 0 0] Tm +0 0 Td +484.71 135.93 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-271 TJm +(ther) 15.4925 Tj +1 TJm +(e) 4.42357 Tj +-271 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-271 TJm +(an) 9.40507 Tj +86.944 123.975 Td +(error) 19.3581 Tj +-246 TJm +(read) 17.1463 Tj +1 TJm +(ing/writing) 44.2855 Tj +-246 TJm +(the) 12.1748 Tj +-246 TJm +(und) 14.9445 Tj +1 TJm +(erlying) 28.2252 Tj +-246 TJm +(compressed) 47.0353 Tj +-245 TJm +(\002le,) 15.2235 Tj +-247 TJm +(and) 14.3866 Tj +-246 TJm +(you) 14.9445 Tj +-245 TJm +(should) 26.5713 Tj +-246 TJm +(then) 17.1563 Tj +-245 TJm +(consult) 28.7831 Tj +[1 0 0 1 414.096 123.975] cm +0 g +0 G +[1 0 0 1 -414.096 -123.975] cm +[1 0 0 1 0 0] Tm +0 0 Td +414.096 123.975 Td +/F130_0 9.963 Tf +(errno) 29.889 Tj +[1 0 0 1 443.984 123.975] cm +0 g +0 G +[1 0 0 1 -443.984 -123.975] cm +[1 0 0 1 0 0] Tm +0 0 Td +446.432 123.975 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 451.649 123.975] cm +0 g +0 G +[1 0 0 1 -451.649 -123.975] cm +[1 0 0 1 0 0] Tm +0 0 Td +451.649 123.975 Td +/F130_0 9.963 Tf +(perror) 35.8668 Tj +[1 0 0 1 487.514 123.975] cm +0 g +0 G +[1 0 0 1 -487.514 -123.975] cm +[1 0 0 1 0 0] Tm +0 0 Td +489.962 123.975 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-246 TJm +(deter) 19.916 Tj +1 TJm +(mine) 19.926 Tj +86.944 112.02 Td +(the) 12.1748 Tj +-356 TJm +(cause) 22.1278 Tj +-355 TJm +(of) 8.29918 Tj +-356 TJm +(the) 12.1748 Tj +-356 TJm +(dif) 11.0689 Tj +25 TJm +(\002culty) 25.4654 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 206.528 112.02] cm +0 g +0 G +[1 0 0 1 -206.528 -112.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +206.528 112.02 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 248.371 112.02] cm +0 g +0 G +[1 0 0 1 -248.371 -112.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +251.916 112.02 Td +/F128_0 9.963 Tf +(may) 17.1563 Tj +-356 TJm +(also) 16.0504 Tj +-355 TJm +(be) 9.40507 Tj +-356 TJm +(set) 11.0689 Tj +-356 TJm +(to) 7.75121 Tj +-356 TJm +(v) 4.9815 Tj +25 TJm +(arious) 24.3496 Tj +-355 TJm +(other) 20.474 Tj +-356 TJm +(v) 4.9815 Tj +25 TJm +(alues;) 23.2437 Tj +-409 TJm +(precise) 28.2152 Tj +-356 TJm +(d) 4.9815 Tj +1 TJm +(etails) 21.0319 Tj +-356 TJm +(are) 12.1648 Tj +-356 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-356 TJm +(on) 9.963 Tj +-355 TJm +(a) 4.42357 Tj +86.944 100.064 Td +(per) 12.7228 Tj +20 TJm +(-function) 36.5244 Tj +-250 TJm +(basis) 19.926 Tj +-250 TJm +(belo) 17.1563 Tj +25 TJm +(w) 7.19329 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 186.838 100.064] cm +0 g +0 G +[1 0 0 1 -114.838 -49.212] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(18) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 22 22 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -31.517] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 710.037 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 710.037] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 710.037 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +[1 0 0 1 95.958 710.037] cm +0 g +0 G +[1 0 0 1 -95.958 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +95.958 710.037 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 137.801 710.037] cm +0 g +0 G +[1 0 0 1 -137.801 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +140.179 710.037 Td +/F128_0 9.963 Tf +(indicates) 35.4185 Tj +-239 TJm +(an) 9.40507 Tj +-238 TJm +(error) 19.3581 Tj +-239 TJm +(\(ie,) 13.0017 Tj +-241 TJm +(an) 9.40507 Tj +15 TJm +(ything) 25.4654 Tj +-239 TJm +(e) 4.42357 Tj +15 TJm +(x) 4.9815 Tj +1 TJm +(cept) 16.5984 Tj +[1 0 0 1 292.225 710.037] cm +0 g +0 G +[1 0 0 1 -292.225 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +292.225 710.037 Td +/F130_0 9.963 Tf +(BZ_OK) 29.889 Tj +[1 0 0 1 322.113 710.037] cm +0 g +0 G +[1 0 0 1 -322.113 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +324.492 710.037 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 341.257 710.037] cm +0 g +0 G +[1 0 0 1 -341.257 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +341.257 710.037 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 418.965 710.037] cm +0 g +0 G +[1 0 0 1 -418.965 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +418.965 710.037 Td +/F128_0 9.963 Tf +(\),) 5.80843 Tj +-239 TJm +(you) 14.9445 Tj +-238 TJm +(should) 26.5713 Tj +-239 TJm +(immediately) 49.815 Tj +-239 TJm +(cal) 11.6169 Tj +1 TJm +(l) 2.76971 Tj +[1 0 0 1 86.944 698.082] cm +0 g +0 G +[1 0 0 1 -86.944 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 698.082 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 176.608 698.082] cm +0 g +0 G +[1 0 0 1 -176.608 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +179.343 698.082 Td +/F128_0 9.963 Tf +(\(or) 11.6169 Tj +[1 0 0 1 193.695 698.082] cm +0 g +0 G +[1 0 0 1 -193.695 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +193.695 698.082 Td +/F130_0 9.963 Tf +(BZ2_bzWriteClose) 95.6448 Tj +[1 0 0 1 289.337 698.082] cm +0 g +0 G +[1 0 0 1 -289.337 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +289.337 698.082 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-281 TJm +(depending) 41.5059 Tj +-274 TJm +(on) 9.963 Tj +-275 TJm +(whethe) 28.7731 Tj +1 TJm +(r) 3.31768 Tj +-275 TJm +(you) 14.9445 Tj +-275 TJm +(are) 12.1648 Tj +-274 TJm +(attempting) 42.6217 Tj +-274 TJm +(to) 7.75121 Tj +-275 TJm +(read) 17.1463 Tj +-274 TJm +(or) 8.29918 Tj +-275 TJm +(to) 7.75121 Tj +-275 TJm +(writ) 16.0504 Tj +1 TJm +(e\)) 7.74125 Tj +86.944 686.127 Td +(to) 7.75121 Tj +-242 TJm +(free) 15.4825 Tj +-241 TJm +(up) 9.963 Tj +-242 TJm +(all) 9.963 Tj +-242 TJm +(resources) 37.6203 Tj +-241 TJm +(associated) 40.9479 Tj +-242 TJm +(with) 17.7142 Tj +-242 TJm +(the) 12.1748 Tj +-241 TJm +(stream.) 29.0521 Tj +-615 TJm +(Once) 21.0219 Tj +-241 TJm +(an) 9.40507 Tj +-242 TJm +(error) 19.3581 Tj +-242 TJm +(has) 13.2807 Tj +-241 TJm +(been) 18.8101 Tj +-242 TJm +(indicated,) 39.0151 Tj +-243 TJm +(beha) 18.8101 Tj +20 TJm +(viour) 21.0319 Tj +-242 TJm +(of) 8.29918 Tj +-242 TJm +(all) 9.963 Tj +-241 TJm +(calls) 18.2622 Tj +-242 TJm +(e) 4.42357 Tj +15 TJm +(xcept) 21.5799 Tj +[1 0 0 1 86.944 674.172] cm +0 g +0 G +[1 0 0 1 -86.944 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 674.172 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 176.608 674.172] cm +0 g +0 G +[1 0 0 1 -176.608 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +179.705 674.172 Td +/F128_0 9.963 Tf +(\() 3.31768 Tj +[1 0 0 1 183.022 674.172] cm +0 g +0 G +[1 0 0 1 -183.022 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +183.022 674.172 Td +/F130_0 9.963 Tf +(BZ2_bzWriteClose) 95.6448 Tj +[1 0 0 1 278.664 674.172] cm +0 g +0 G +[1 0 0 1 -278.664 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +278.664 674.172 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +-311 TJm +(is) 6.64532 Tj +-311 TJm +(unde\002) 24.9075 Tj +1 TJm +(ned.) 16.8773 Tj +-986 TJm +(Th) 11.0689 Tj +1 TJm +(e) 4.42357 Tj +-311 TJm +(implication) 45.3914 Tj +-311 TJm +(is) 6.64532 Tj +-311 TJm +(that) 14.9445 Tj +-311 TJm +(\(1) 8.29918 Tj +1 TJm +(\)) 3.31768 Tj +[1 0 0 1 455.988 674.172] cm +0 g +0 G +[1 0 0 1 -455.988 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +455.988 674.172 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 497.831 674.172] cm +0 g +0 G +[1 0 0 1 -497.831 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +500.928 674.172 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-311 TJm +(be) 9.40507 Tj +86.944 662.217 Td +(check) 23.2337 Tj +10 TJm +(ed) 9.40507 Tj +-291 TJm +(after) 18.2522 Tj +-291 TJm +(each) 18.2522 Tj +-291 TJm +(call,) 16.8773 Tj +-301 TJm +(and) 14.3866 Tj +-291 TJm +(\(2\)) 11.6169 Tj +-291 TJm +(if) 6.08739 Tj +[1 0 0 1 225.347 662.217] cm +0 g +0 G +[1 0 0 1 -225.347 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +225.347 662.217 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 267.19 662.217] cm +0 g +0 G +[1 0 0 1 -267.19 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +270.09 662.217 Td +/F128_0 9.963 Tf +(indicates) 35.4185 Tj +-291 TJm +(an) 9.40507 Tj +-291 TJm +(error) 19.3581 Tj +40 TJm +(,) 2.49075 Tj +[1 0 0 1 345.161 662.217] cm +0 g +0 G +[1 0 0 1 -345.161 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +345.161 662.217 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 434.824 662.217] cm +0 g +0 G +[1 0 0 1 -434.824 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +437.724 662.217 Td +/F128_0 9.963 Tf +(\() 3.31768 Tj +[1 0 0 1 441.041 662.217] cm +0 g +0 G +[1 0 0 1 -441.041 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +441.041 662.217 Td +/F130_0 9.963 Tf +(BZ2_bzWriteClose) 95.6448 Tj +[1 0 0 1 536.682 662.217] cm +0 g +0 G +[1 0 0 1 -536.682 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +536.682 662.217 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +86.944 650.262 Td +(should) 26.5713 Tj +-250 TJm +(then) 17.1563 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(called) 23.7916 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(clea) 16.0404 Tj +1 TJm +(n) 4.9815 Tj +-250 TJm +(up.) 12.4538 Tj +[1 0 0 1 220.034 650.262] cm +0 g +0 G +[1 0 0 1 -148.034 -21.918] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 628.344 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 628.344] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 628.344 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +[1 0 0 1 106.362 628.344] cm +0 g +0 G +[1 0 0 1 -106.362 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +106.362 628.344 Td +/F130_0 9.963 Tf +(FILE*) 29.889 Tj +[1 0 0 1 136.25 628.344] cm +0 g +0 G +[1 0 0 1 -136.25 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +140.177 628.344 Td +/F128_0 9.963 Tf +(ar) 7.74125 Tj +18 TJm +(guments) 33.7646 Tj +-394 TJm +(passed) 26.5614 Tj +-394 TJm +(to) 7.75121 Tj +[1 0 0 1 227.592 628.344] cm +0 g +0 G +[1 0 0 1 -227.592 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +227.592 628.344 Td +/F130_0 9.963 Tf +(BZ2_bzReadOpen) 83.6892 Tj +[1 0 0 1 311.278 628.344] cm +0 g +0 G +[1 0 0 1 -311.278 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +315.205 628.344 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 321.901 628.344] cm +0 g +0 G +[1 0 0 1 -321.901 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +321.901 628.344 Td +/F130_0 9.963 Tf +(BZ2_bzWriteOpen) 89.667 Tj +[1 0 0 1 411.565 628.344] cm +0 g +0 G +[1 0 0 1 -411.565 -628.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +415.491 628.344 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-394 TJm +(be) 9.40507 Tj +-394 TJm +(set) 11.0689 Tj +-394 TJm +(to) 7.75121 Tj +-394 TJm +(binary) 25.4555 Tj +-394 TJm +(mode.) 24.6285 Tj +86.944 616.389 Td +(Most) 20.4839 Tj +-229 TJm +(Unix) 19.926 Tj +-229 TJm +(s) 3.87561 Tj +1 TJm +(ystems) 27.6772 Tj +-229 TJm +(will) 15.5024 Tj +-229 TJm +(do) 9.963 Tj +-229 TJm +(this) 14.3965 Tj +-229 TJm +(by) 9.963 Tj +-228 TJm +(def) 12.7228 Tj +10 TJm +(ault,) 17.4353 Tj +-233 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-229 TJm +(other) 20.474 Tj +-229 TJm +(platforms,) 40.6789 Tj +-233 TJm +(including) 37.6402 Tj +-228 TJm +(W) 9.40507 Tj +40 TJm +(indo) 17.7142 Tj +25 TJm +(ws) 11.0689 Tj +-229 TJm +(and) 14.3866 Tj +-229 TJm +(Mac,) 20.195 Tj +-233 TJm +(will) 15.5024 Tj +-229 TJm +(not.) 15.2235 Tj +-605 TJm +(If) 6.63536 Tj +-229 TJm +(you) 14.9445 Tj +-229 TJm +(omit) 18.2721 Tj +86.944 604.433 Td +(this,) 16.8873 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(may) 17.1563 Tj +-250 TJm +(encounter) 39.2841 Tj +-250 TJm +(probl) 21.0319 Tj +1 TJm +(ems) 16.0504 Tj +-250 TJm +(when) 21.5799 Tj +-250 TJm +(mo) 12.7327 Tj +15 TJm +(ving) 17.7142 Tj +-250 TJm +(code) 18.8101 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(ne) 9.40507 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(platforms.) 40.6789 Tj +[1 0 0 1 372.66 604.433] cm +0 g +0 G +[1 0 0 1 -300.66 -21.917] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -582.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 582.516 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 582.516] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -582.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 582.516 Td +/F128_0 9.963 Tf +(Memory) 34.3126 Tj +-348 TJm +(allocation) 39.2941 Tj +-348 TJm +(requests) 32.6488 Tj +-348 TJm +(are) 12.1648 Tj +-348 TJm +(handled) 31.5429 Tj +-348 TJm +(by) 9.963 Tj +[1 0 0 1 267.67 582.516] cm +0 g +0 G +[1 0 0 1 -267.67 -582.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +267.67 582.516 Td +/F130_0 9.963 Tf +(malloc) 35.8668 Tj +[1 0 0 1 303.535 582.516] cm +0 g +0 G +[1 0 0 1 -303.535 -582.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +307.003 582.516 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 313.241 582.516] cm +0 g +0 G +[1 0 0 1 -313.241 -582.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +313.241 582.516 Td +/F130_0 9.963 Tf +(free) 23.9112 Tj +[1 0 0 1 337.151 582.516] cm +0 g +0 G +[1 0 0 1 -337.151 -582.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +337.151 582.516 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1208 TJm +(At) 9.963 Tj +-349 TJm +(pr) 8.29918 Tj +1 TJm +(esent) 20.474 Tj +-348 TJm +(there) 19.916 Tj +-348 TJm +(is) 6.64532 Tj +-348 TJm +(no) 9.963 Tj +-349 TJm +(f) 3.31768 Tj +10 TJm +(a) 4.42357 Tj +1 TJm +(cility) 20.4839 Tj +-348 TJm +(for) 11.6169 Tj +-348 TJm +(user) 16.5984 Tj +20 TJm +(-de\002ned) 32.6488 Tj +86.944 570.56 Td +(memory) 33.2067 Tj +-250 TJm +(allocators) 38.7361 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(\002l) 8.30914 Tj +1 TJm +(e) 4.42357 Tj +-250 TJm +(I/O) 13.2807 Tj +-250 TJm +(functions) 37.0823 Tj +-250 TJm +(\(could) 25.4555 Tj +-250 TJm +(easily) 23.2437 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(added,) 26.2824 Tj +-250 TJm +(though\).) 33.4856 Tj +[1 0 0 1 387.165 570.56] cm +0 g +0 G +[1 0 0 1 -315.165 -12.119] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -548.478] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 529.977 Td +/F121_0 17.215 Tf +(3.4.1.) 43.0719 Tj +[1 0 0 1 119.858 529.977] cm +0 g +0 G +[1 0 0 1 -119.858 -529.977] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 529.977 Td +/F387_0 17.215 Tf +(BZ2_bzReadOpen) 144.606 Tj +[1 0 0 1 264.468 529.977] cm +0 g +0 G +[1 0 0 1 -192.468 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -72.727] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 71.731 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 68.145] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -518.279] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 518.279 Td +/F130_0 9.963 Tf +(typedef) 41.8446 Tj +-426 TJm +(void) 23.9112 Tj +-426 TJm +(BZFILE;) 41.8446 Tj +90 494.369 Td +(BZFILE) 35.8668 Tj +-426 TJm +(*BZ2_bzReadOpen\() 95.6448 Tj +-426 TJm +(i) 5.9778 Tj +1 TJm +(nt) 11.9556 Tj +-426 TJm +(*bzerror,) 53.8002 Tj +-426 TJm +(FILE) 23.9112 Tj +-426 TJm +(*f,) 17.9334 Tj +191.855 482.414 Td +(int) 17.9334 Tj +-426 TJm +(verbosity,) 59.778 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(small,) 35.8668 Tj +191.855 470.458 Td +(void) 23.9112 Tj +-426 TJm +(*unused,) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(nUnused) 41.8446 Tj +-425 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 454.917] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -444.954] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 432.999 Td +/F128_0 9.963 Tf +(Prepare) 30.427 Tj +-290 TJm +(t) 2.76971 Tj +1 TJm +(o) 4.9815 Tj +-290 TJm +(read) 17.1463 Tj +-290 TJm +(compresse) 42.0538 Tj +1 TJm +(d) 4.9815 Tj +-290 TJm +(data) 16.5984 Tj +-290 TJm +(from) 19.3681 Tj +-289 TJm +(\002le) 12.7327 Tj +-290 TJm +(handle) 26.5614 Tj +[1 0 0 1 272.697 432.999] cm +0 g +0 G +[1 0 0 1 -272.697 -432.999] cm +[1 0 0 1 0 0] Tm +0 0 Td +272.697 432.999 Td +/F130_0 9.963 Tf +(f) 5.9778 Tj +[1 0 0 1 278.675 432.999] cm +0 g +0 G +[1 0 0 1 -278.675 -432.999] cm +[1 0 0 1 0 0] Tm +0 0 Td +278.675 432.999 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 285.439 432.999] cm +0 g +0 G +[1 0 0 1 -285.439 -432.999] cm +[1 0 0 1 0 0] Tm +0 0 Td +285.439 432.999 Td +/F130_0 9.963 Tf +(f) 5.9778 Tj +[1 0 0 1 291.417 432.999] cm +0 g +0 G +[1 0 0 1 -291.417 -432.999] cm +[1 0 0 1 0 0] Tm +0 0 Td +294.302 432.999 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-290 TJm +(refer) 18.8002 Tj +-289 TJm +(to) 7.75121 Tj +-290 TJm +(a) 4.42357 Tj +-289 TJm +(\002le) 12.7327 Tj +-290 TJm +(which) 24.3496 Tj +-289 TJm +(has) 13.2807 Tj +-290 TJm +(been) 18.8101 Tj +-290 TJm +(opened) 28.7731 Tj +-289 TJm +(for) 11.6169 Tj +-290 TJm +(reading,) 32.3698 Tj +-299 TJm +(and) 14.3866 Tj +72 421.044 Td +(for) 11.6169 Tj +-306 TJm +(which) 24.3496 Tj +-305 TJm +(the) 12.1748 Tj +-306 TJm +(error) 19.3581 Tj +-305 TJm +(indicator) 35.4185 Tj +-306 TJm +(\() 3.31768 Tj +[1 0 0 1 193.457 421.044] cm +0 g +0 G +[1 0 0 1 -193.457 -421.044] cm +[1 0 0 1 0 0] Tm +0 0 Td +193.457 421.044 Td +/F130_0 9.963 Tf +(ferror\(f\)) 53.8002 Tj +[1 0 0 1 247.255 421.044] cm +0 g +0 G +[1 0 0 1 -247.255 -421.044] cm +[1 0 0 1 0 0] Tm +0 0 Td +247.255 421.044 Td +/F128_0 9.963 Tf +(\)is) 9.963 Tj +-306 TJm +(not) 12.7327 Tj +-305 TJm +(set.) 13.5596 Tj +-954 TJm +(If) 6.63536 Tj +[1 0 0 1 308.784 421.044] cm +0 g +0 G +[1 0 0 1 -308.784 -421.044] cm +[1 0 0 1 0 0] Tm +0 0 Td +308.784 421.044 Td +/F130_0 9.963 Tf +(small) 29.889 Tj +[1 0 0 1 338.672 421.044] cm +0 g +0 G +[1 0 0 1 -338.672 -421.044] cm +[1 0 0 1 0 0] Tm +0 0 Td +341.717 421.044 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-306 TJm +(1,) 7.47225 Tj +-319 TJm +(the) 12.1748 Tj +-306 TJm +(library) 26.5614 Tj +-305 TJm +(will) 15.5024 Tj +-306 TJm +(try) 11.0689 Tj +-305 TJm +(to) 7.75121 Tj +-306 TJm +(decompress) 47.0353 Tj +-306 TJm +(us) 8.85711 Tj +1 TJm +(ing) 12.7327 Tj +-306 TJm +(less) 14.9445 Tj +72 409.089 Td +(memory) 33.2067 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(at) 7.19329 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(e) 4.42357 Tj +15 TJm +(xpense) 27.6673 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(spee) 17.7043 Tj +1 TJm +(d.) 7.47225 Tj +[1 0 0 1 72 406.932] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -396.969] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 387.171 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-227 TJm +(reasons) 29.879 Tj +-227 TJm +(e) 4.42357 Tj +15 TJm +(xplained) 34.3126 Tj +-227 TJm +(belo) 17.1563 Tj +25 TJm +(w) 7.19329 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 189.193 387.171] cm +0 g +0 G +[1 0 0 1 -189.193 -387.171] cm +[1 0 0 1 0 0] Tm +0 0 Td +189.193 387.171 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 248.969 387.171] cm +0 g +0 G +[1 0 0 1 -248.969 -387.171] cm +[1 0 0 1 0 0] Tm +0 0 Td +251.232 387.171 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-227 TJm +(decompress) 47.0353 Tj +-227 TJm +(the) 12.1748 Tj +[1 0 0 1 332.732 387.171] cm +0 g +0 G +[1 0 0 1 -332.732 -387.171] cm +[1 0 0 1 0 0] Tm +0 0 Td +332.732 387.171 Td +/F130_0 9.963 Tf +(nUnused) 41.8446 Tj +[1 0 0 1 374.575 387.171] cm +0 g +0 G +[1 0 0 1 -374.575 -387.171] cm +[1 0 0 1 0 0] Tm +0 0 Td +376.838 387.171 Td +/F128_0 9.963 Tf +(bytes) 21.0319 Tj +-227 TJm +(starting) 29.889 Tj +-227 TJm +(at) 7.19329 Tj +[1 0 0 1 441.74 387.171] cm +0 g +0 G +[1 0 0 1 -441.74 -387.171] cm +[1 0 0 1 0 0] Tm +0 0 Td +441.74 387.171 Td +/F130_0 9.963 Tf +(unused) 35.8668 Tj +[1 0 0 1 477.605 387.171] cm +0 g +0 G +[1 0 0 1 -477.605 -387.171] cm +[1 0 0 1 0 0] Tm +0 0 Td +477.605 387.171 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-232 TJm +(before) 25.4455 Tj +-227 TJm +(starting) 29.889 Tj +72 375.216 Td +(to) 7.75121 Tj +-279 TJm +(read) 17.1463 Tj +-280 TJm +(from) 19.3681 Tj +-279 TJm +(the) 12.1748 Tj +-280 TJm +(\002le) 12.7327 Tj +[1 0 0 1 155.094 375.216] cm +0 g +0 G +[1 0 0 1 -155.094 -375.216] cm +[1 0 0 1 0 0] Tm +0 0 Td +155.094 375.216 Td +/F130_0 9.963 Tf +(f) 5.9778 Tj +[1 0 0 1 161.072 375.216] cm +0 g +0 G +[1 0 0 1 -161.072 -375.216] cm +[1 0 0 1 0 0] Tm +0 0 Td +161.072 375.216 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-797 TJm +(At) 9.963 Tj +-280 TJm +(most) 19.378 Tj +[1 0 0 1 206.414 375.216] cm +0 g +0 G +[1 0 0 1 -206.414 -375.216] cm +[1 0 0 1 0 0] Tm +0 0 Td +206.414 375.216 Td +/F130_0 9.963 Tf +(BZ_MAX_UNUSED) 77.7114 Tj +[1 0 0 1 284.122 375.216] cm +0 g +0 G +[1 0 0 1 -284.122 -375.216] cm +[1 0 0 1 0 0] Tm +0 0 Td +286.907 375.216 Td +/F128_0 9.963 Tf +(bytes) 21.0319 Tj +-279 TJm +(may) 17.1563 Tj +-280 TJm +(be) 9.40507 Tj +-279 TJm +(supplied) 33.7646 Tj +-280 TJm +(lik) 10.5209 Tj +10 TJm +(e) 4.42357 Tj +-279 TJm +(this.) 16.8873 Tj +-797 TJm +(If) 6.63536 Tj +-280 TJm +(this) 14.3965 Tj +-279 TJm +(f) 3.31768 Tj +10 TJm +(acility) 24.9075 Tj +-280 TJm +(is) 6.64532 Tj +-279 TJm +(not) 12.7327 Tj +-280 TJm +(re) 7.74125 Tj +1 TJm +(quired,) 27.9462 Tj +72 363.26 Td +(you) 14.9445 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(pass) 17.1563 Tj +[1 0 0 1 138.141 363.26] cm +0 g +0 G +[1 0 0 1 -138.141 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +138.141 363.26 Td +/F130_0 9.963 Tf +(NULL) 23.9112 Tj +[1 0 0 1 162.052 363.26] cm +0 g +0 G +[1 0 0 1 -162.052 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +164.542 363.26 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 181.419 363.26] cm +0 g +0 G +[1 0 0 1 -181.419 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +181.419 363.26 Td +/F130_0 9.963 Tf +(0) 5.9778 Tj +[1 0 0 1 187.397 363.26] cm +0 g +0 G +[1 0 0 1 -187.397 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +189.887 363.26 Td +/F128_0 9.963 Tf +(for) 11.6169 Tj +[1 0 0 1 203.994 363.26] cm +0 g +0 G +[1 0 0 1 -203.994 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +203.994 363.26 Td +/F130_0 9.963 Tf +(unused) 35.8668 Tj +[1 0 0 1 239.86 363.26] cm +0 g +0 G +[1 0 0 1 -239.86 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +242.351 363.26 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +-250 TJm +(n) 4.9815 Tj +[1 0 0 1 264.209 363.26] cm +0 g +0 G +[1 0 0 1 -264.209 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +264.209 363.26 Td +/F130_0 9.963 Tf +(Unused) 35.8668 Tj +[1 0 0 1 300.074 363.26] cm +0 g +0 G +[1 0 0 1 -300.074 -363.26] cm +[1 0 0 1 0 0] Tm +0 0 Td +302.565 363.26 Td +/F128_0 9.963 Tf +(respecti) 30.9849 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ely) 12.1748 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 361.104] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -351.141] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 341.343 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(meaning) 34.3126 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(parameter) 39.8321 Tj +1 TJm +(s) 3.87561 Tj +[1 0 0 1 196.631 341.343] cm +0 g +0 G +[1 0 0 1 -196.631 -341.343] cm +[1 0 0 1 0 0] Tm +0 0 Td +196.631 341.343 Td +/F130_0 9.963 Tf +(small) 29.889 Tj +[1 0 0 1 226.519 341.343] cm +0 g +0 G +[1 0 0 1 -226.519 -341.343] cm +[1 0 0 1 0 0] Tm +0 0 Td +229.01 341.343 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 245.887 341.343] cm +0 g +0 G +[1 0 0 1 -245.887 -341.343] cm +[1 0 0 1 0 0] Tm +0 0 Td +245.887 341.343 Td +/F130_0 9.963 Tf +(verbosity) 53.8002 Tj +[1 0 0 1 299.685 341.343] cm +0 g +0 G +[1 0 0 1 -299.685 -341.343] cm +[1 0 0 1 0 0] Tm +0 0 Td +299.685 341.343 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(see) 12.7228 Tj +[1 0 0 1 319.879 341.343] cm +0 g +0 G +[1 0 0 1 -319.879 -341.343] cm +[1 0 0 1 0 0] Tm +0 0 Td +319.879 341.343 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressInit) 119.556 Tj +[1 0 0 1 439.431 341.343] cm +0 g +0 G +[1 0 0 1 -439.431 -341.343] cm +[1 0 0 1 0 0] Tm +0 0 Td +439.431 341.343 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 339.186] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -329.223] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 319.425 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-402 TJm +(amount) 29.889 Tj +-402 TJm +(of) 8.29918 Tj +-402 TJm +(mem) 19.926 Tj +1 TJm +(ory) 13.2807 Tj +-402 TJm +(needed) 28.2152 Tj +-402 TJm +(to) 7.75121 Tj +-402 TJm +(decompress) 47.0353 Tj +-402 TJm +(a) 4.42357 Tj +-402 TJm +(\002le) 12.7327 Tj +-402 TJm +(c) 4.42357 Tj +1 TJm +(annot) 22.1378 Tj +-402 TJm +(be) 9.40507 Tj +-402 TJm +(determined) 44.8235 Tj +-402 TJm +(until) 18.2721 Tj +-402 TJm +(the) 12.1748 Tj +-402 TJm +(\002le') 16.0504 Tj +55 TJm +(s) 3.87561 Tj +-401 TJm +(header) 26.5514 Tj +-402 TJm +(has) 13.2807 Tj +-402 TJm +(been) 18.8101 Tj +-402 TJm +(read.) 19.6371 Tj +72 307.47 Td +(So) 10.5209 Tj +-492 TJm +(it) 5.53943 Tj +-491 TJm +(is) 6.64532 Tj +-492 TJm +(possible) 32.6587 Tj +-491 TJm +(that) 14.9445 Tj +[1 0 0 1 166.797 307.47] cm +0 g +0 G +[1 0 0 1 -166.797 -307.47] cm +[1 0 0 1 0 0] Tm +0 0 Td +166.797 307.47 Td +/F130_0 9.963 Tf +(BZ2_bzReadOpen) 83.6892 Tj +[1 0 0 1 250.483 307.47] cm +0 g +0 G +[1 0 0 1 -250.483 -307.47] cm +[1 0 0 1 0 0] Tm +0 0 Td +255.381 307.47 Td +/F128_0 9.963 Tf +(returns) 27.6673 Tj +[1 0 0 1 287.945 307.47] cm +0 g +0 G +[1 0 0 1 -287.945 -307.47] cm +[1 0 0 1 0 0] Tm +0 0 Td +287.945 307.47 Td +/F130_0 9.963 Tf +(BZ_OK) 29.889 Tj +[1 0 0 1 317.833 307.47] cm +0 g +0 G +[1 0 0 1 -317.833 -307.47] cm +[1 0 0 1 0 0] Tm +0 0 Td +322.729 307.47 Td +/F128_0 9.963 Tf +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-492 TJm +(a) 4.42357 Tj +-491 TJm +(subsequent) 44.2756 Tj +-492 TJm +(call) 14.3866 Tj +-491 TJm +(of) 8.29918 Tj +[1 0 0 1 431.135 307.47] cm +0 g +0 G +[1 0 0 1 -431.135 -307.47] cm +[1 0 0 1 0 0] Tm +0 0 Td +431.135 307.47 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 490.911 307.47] cm +0 g +0 G +[1 0 0 1 -490.911 -307.47] cm +[1 0 0 1 0 0] Tm +0 0 Td +495.81 307.47 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-492 TJm +(re) 7.74125 Tj +1 TJm +(turn) 16.0504 Tj +[1 0 0 1 72 295.514] cm +0 g +0 G +[1 0 0 1 -72 -295.514] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 295.514 Td +/F130_0 9.963 Tf +(BZ_MEM_ERROR) 71.7336 Tj +[1 0 0 1 143.731 295.514] cm +0 g +0 G +[1 0 0 1 -143.731 -295.514] cm +[1 0 0 1 0 0] Tm +0 0 Td +143.731 295.514 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 294.349] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -284.386] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 273.597 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(assignments) 48.7091 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 169.144 273.597] cm +0 g +0 G +[1 0 0 1 -169.144 -273.597] cm +[1 0 0 1 0 0] Tm +0 0 Td +169.144 273.597 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 210.987 273.597] cm +0 g +0 G +[1 0 0 1 -210.987 -273.597] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.987 273.597 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 271.44] cm +0 g +0 G +[1 0 0 1 0 -168.369] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 167.372 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 163.786] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -262.075] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 262.075 Td +/F130_0 9.963 Tf +(BZ_CONFIG_ERROR) 89.667 Tj +98.488 250.12 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(library) 41.8446 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-425 TJm +(mis-compiled) 71.7336 Tj +90 238.165 Td +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 226.209 Td +(if) 11.9556 Tj +-426 TJm +(f) 5.9778 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +98.488 214.254 Td +(or) 11.9556 Tj +-426 TJm +(small) 29.889 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(neither) 41.8446 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(no) 11.9556 Tj +1 TJm +(r) 5.9778 Tj +-426 TJm +(1) 5.9778 Tj +98.488 202.299 Td +(or) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(unused) 35.8668 Tj +-426 TJm +(==) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(&&) 11.9556 Tj +-426 TJm +(n) 5.9778 Tj +1 TJm +(Unused) 35.8668 Tj +-426 TJm +(!=) 11.9556 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(\)) 5.9778 Tj +98.488 190.344 Td +(or) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(unused) 35.8668 Tj +-426 TJm +(!=) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(&&) 11.9556 Tj +-426 TJm +(!) 5.9778 Tj +1 TJm +(\(0) 11.9556 Tj +-426 TJm +(<=) 11.9556 Tj +-426 TJm +(nUnused) 41.8446 Tj +-426 TJm +(<=) 11.9556 Tj +-426 TJm +(BZ_MAX_UNUSED\)) 83.6892 Tj +-426 TJm +(\)) 5.9778 Tj +90 178.389 Td +(BZ_IO_ERROR) 65.7558 Tj +98.488 166.434 Td +(if) 11.9556 Tj +-426 TJm +(ferror\(f\)) 53.8002 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(nonzero) 41.8446 Tj +90 154.478 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 142.523 Td +(if) 11.9556 Tj +-426 TJm +(insufficient) 71.7336 Tj +-426 TJm +(memory) 35.8668 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(available) 53.8002 Tj +90 130.568 Td +(BZ_OK) 29.889 Tj +98.488 118.613 Td +(otherwise.) 59.778 Tj +[1 0 0 1 72 103.071] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -93.109] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 81.153 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 81.054] cm +0 g +0 G +[1 0 0 1 0 -30.202] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.974] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -51.071] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 51.071 Td +/F128_0 9.963 Tf +(19) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 23 23 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -81.33] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 56.189] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(Pointer) 41.8446 Tj +-426 TJm +(to) 11.9556 Tj +-426 TJm +(an) 11.9556 Tj +-426 TJm +(abstract) 47.8224 Tj +-426 TJm +(B) 5.9778 Tj +1 TJm +(ZFILE) 29.889 Tj +98.488 699.676 Td +(if) 11.9556 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +90 687.721 Td +(NULL) 23.9112 Tj +98.488 675.766 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 660.224] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -650.261] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 638.306 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 638.207] cm +0 g +0 G +[1 0 0 1 0 -60.772] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 56.19] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -628.842] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 628.842 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +98.488 616.887 Td +(if) 11.9556 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +90 604.932 Td +(BZ2_bzClose) 65.7558 Tj +98.488 592.976 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 577.435] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -567.472] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 546.814 Td +/F121_0 17.215 Tf +(3.4.2.) 43.0719 Tj +[1 0 0 1 119.858 546.814] cm +0 g +0 G +[1 0 0 1 -119.858 -546.814] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 546.814 Td +/F387_0 17.215 Tf +(BZ2_bzRead) 103.29 Tj +[1 0 0 1 223.151 546.814] cm +0 g +0 G +[1 0 0 1 -151.151 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -535.116] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 535.116 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzRead) 59.778 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(*bz) 17.9334 Tj +1 TJm +(error,) 35.8668 Tj +-426 TJm +(BZFILE) 35.8668 Tj +-426 TJm +(*b,) 17.9334 Tj +-426 TJm +(void) 23.9112 Tj +-426 TJm +(*buf,) 29.889 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(len) 17.9334 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 519.574] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -509.612] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 497.656 Td +/F128_0 9.963 Tf +(Reads) 24.3496 Tj +-284 TJm +(up) 9.963 Tj +-285 TJm +(to) 7.75121 Tj +[1 0 0 1 122.569 497.656] cm +0 g +0 G +[1 0 0 1 -122.569 -497.656] cm +[1 0 0 1 0 0] Tm +0 0 Td +122.569 497.656 Td +/F130_0 9.963 Tf +(len) 17.9334 Tj +[1 0 0 1 140.501 497.656] cm +0 g +0 G +[1 0 0 1 -140.501 -497.656] cm +[1 0 0 1 0 0] Tm +0 0 Td +143.337 497.656 Td +/F128_0 9.963 Tf +(\(uncompressed\)) 63.6337 Tj +-284 TJm +(bytes) 21.0319 Tj +-285 TJm +(from) 19.3681 Tj +-284 TJm +(the) 12.1748 Tj +-285 TJm +(compressed) 47.0353 Tj +-284 TJm +(\002le) 12.7327 Tj +[1 0 0 1 336.319 497.656] cm +0 g +0 G +[1 0 0 1 -336.319 -497.656] cm +[1 0 0 1 0 0] Tm +0 0 Td +336.319 497.656 Td +/F130_0 9.963 Tf +(b) 5.9778 Tj +[1 0 0 1 342.296 497.656] cm +0 g +0 G +[1 0 0 1 -342.296 -497.656] cm +[1 0 0 1 0 0] Tm +0 0 Td +345.132 497.656 Td +/F128_0 9.963 Tf +(into) 15.5024 Tj +-285 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-285 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +[1 0 0 1 405.205 497.656] cm +0 g +0 G +[1 0 0 1 -405.205 -497.656] cm +[1 0 0 1 0 0] Tm +0 0 Td +405.205 497.656 Td +/F130_0 9.963 Tf +(buf) 17.9334 Tj +[1 0 0 1 423.137 497.656] cm +0 g +0 G +[1 0 0 1 -423.137 -497.656] cm +[1 0 0 1 0 0] Tm +0 0 Td +423.137 497.656 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-828 TJm +(If) 6.63536 Tj +-284 TJm +(the) 12.1748 Tj +-285 TJm +(read) 17.1463 Tj +-284 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-285 TJm +(successful,) 43.4387 Tj +[1 0 0 1 72 485.701] cm +0 g +0 G +[1 0 0 1 -72 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 485.701 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 113.843 485.701] cm +0 g +0 G +[1 0 0 1 -113.843 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +117.36 485.701 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-353 TJm +(set) 11.0689 Tj +-353 TJm +(to) 7.75121 Tj +[1 0 0 1 153.374 485.701] cm +0 g +0 G +[1 0 0 1 -153.374 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +153.374 485.701 Td +/F130_0 9.963 Tf +(BZ_OK) 29.889 Tj +[1 0 0 1 183.262 485.701] cm +0 g +0 G +[1 0 0 1 -183.262 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +186.778 485.701 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +-353 TJm +(the) 12.1748 Tj +-353 TJm +(number) 30.437 Tj +-353 TJm +(of) 8.29918 Tj +-353 TJm +(bytes) 21.0319 Tj +-353 TJm +(read) 17.1463 Tj +-352 TJm +(is) 6.64532 Tj +-353 TJm +(returned.) 35.6875 Tj +-1238 TJm +(If) 6.63536 Tj +-353 TJm +(the) 12.1748 Tj +-353 TJm +(logical) 27.1193 Tj +-353 TJm +(end-of-stream) 55.8825 Tj +-353 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-353 TJm +(detecte) 28.2152 Tj +1 TJm +(d,) 7.47225 Tj +[1 0 0 1 72 473.746] cm +0 g +0 G +[1 0 0 1 -72 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 473.746 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 113.843 473.746] cm +0 g +0 G +[1 0 0 1 -113.843 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +116.795 473.746 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-296 TJm +(be) 9.40507 Tj +-296 TJm +(set) 11.0689 Tj +-297 TJm +(to) 7.75121 Tj +[1 0 0 1 172.328 473.746] cm +0 g +0 G +[1 0 0 1 -172.328 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +172.328 473.746 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 250.037 473.746] cm +0 g +0 G +[1 0 0 1 -250.037 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +250.037 473.746 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-296 TJm +(and) 14.3866 Tj +-297 TJm +(th) 7.75121 Tj +1 TJm +(e) 4.42357 Tj +-297 TJm +(number) 30.437 Tj +-296 TJm +(of) 8.29918 Tj +-296 TJm +(bytes) 21.0319 Tj +-296 TJm +(read) 17.1463 Tj +-297 TJm +(is) 6.64532 Tj +-296 TJm +(returned.) 35.6875 Tj +-898 TJm +(All) 12.7327 Tj +-296 TJm +(other) 20.474 Tj +[1 0 0 1 470 473.746] cm +0 g +0 G +[1 0 0 1 -470 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +470 473.746 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 511.843 473.746] cm +0 g +0 G +[1 0 0 1 -511.843 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +514.795 473.746 Td +/F128_0 9.963 Tf +(v) 4.9815 Tj +25 TJm +(alues) 20.474 Tj +72 461.791 Td +(denote) 26.5614 Tj +-250 TJm +(an) 9.40507 Tj +-250 TJm +(error) 19.3581 Tj +55 TJm +(.) 2.49075 Tj +[1 0 0 1 72 461.691] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -451.729] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 439.873 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 131.776 439.873] cm +0 g +0 G +[1 0 0 1 -131.776 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +134.224 439.873 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-246 TJm +(supply) 26.5713 Tj +[1 0 0 1 181.193 439.873] cm +0 g +0 G +[1 0 0 1 -181.193 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +181.193 439.873 Td +/F130_0 9.963 Tf +(len) 17.9334 Tj +[1 0 0 1 199.126 439.873] cm +0 g +0 G +[1 0 0 1 -199.126 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +201.575 439.873 Td +/F128_0 9.963 Tf +(bytes,) 23.5226 Tj +-246 TJm +(unless) 24.9075 Tj +-246 TJm +(the) 12.1748 Tj +-246 TJm +(logical) 27.1193 Tj +-245 TJm +(stream) 26.5614 Tj +-246 TJm +(end) 14.3866 Tj +-246 TJm +(is) 6.64532 Tj +-246 TJm +(detec) 21.0219 Tj +1 TJm +(ted) 12.1748 Tj +-246 TJm +(or) 8.29918 Tj +-246 TJm +(an) 9.40507 Tj +-246 TJm +(error) 19.3581 Tj +-245 TJm +(occurs.) 28.4942 Tj +-617 TJm +(Because) 33.1967 Tj +-246 TJm +(of) 8.29918 Tj +-246 TJm +(this,) 16.8873 Tj +-246 TJm +(it) 5.53943 Tj +72 427.918 Td +(is) 6.64532 Tj +-231 TJm +(possible) 32.6587 Tj +-231 TJm +(to) 7.75121 Tj +-231 TJm +(detect) 23.7916 Tj +-231 TJm +(the) 12.1748 Tj +-231 TJm +(stream) 26.5614 Tj +-231 TJm +(end) 14.3866 Tj +-231 TJm +(by) 9.963 Tj +-231 TJm +(observing) 39.2941 Tj +-231 TJm +(when) 21.5799 Tj +-231 TJm +(the) 12.1748 Tj +-231 TJm +(number) 30.437 Tj +-231 TJm +(of) 8.29918 Tj +-231 TJm +(bytes) 21.0319 Tj +-231 TJm +(returned) 33.1967 Tj +-231 TJm +(is) 6.64532 Tj +-231 TJm +(less) 14.9445 Tj +-231 TJm +(than) 17.1563 Tj +-231 TJm +(the) 12.1748 Tj +-231 TJm +(number) 30.437 Tj +-231 TJm +(requested.) 40.669 Tj +72 415.963 Td +(Ne) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ertheless,) 37.3513 Tj +-309 TJm +(this) 14.3965 Tj +-297 TJm +(is) 6.64532 Tj +-297 TJm +(re) 7.74125 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(arded) 22.1278 Tj +-298 TJm +(as) 8.29918 Tj +-297 TJm +(inadvisable;) 48.1512 Tj +-321 TJm +(you) 14.9445 Tj +-297 TJm +(should) 26.5713 Tj +-297 TJm +(instead) 28.2252 Tj +-297 TJm +(check) 23.2337 Tj +[1 0 0 1 360.631 415.963] cm +0 g +0 G +[1 0 0 1 -360.631 -415.963] cm +[1 0 0 1 0 0] Tm +0 0 Td +360.631 415.963 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 402.475 415.963] cm +0 g +0 G +[1 0 0 1 -402.475 -415.963] cm +[1 0 0 1 0 0] Tm +0 0 Td +405.437 415.963 Td +/F128_0 9.963 Tf +(after) 18.2522 Tj +-297 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ery) 12.7228 Tj +-297 TJm +(call) 14.3866 Tj +-298 TJm +(and) 14.3866 Tj +-297 TJm +(w) 7.19329 Tj +10 TJm +(atch) 16.5984 Tj +-297 TJm +(out) 12.7327 Tj +-297 TJm +(for) 11.6169 Tj +[1 0 0 1 72 404.008] cm +0 g +0 G +[1 0 0 1 -72 -404.008] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 404.008 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 149.709 404.008] cm +0 g +0 G +[1 0 0 1 -149.709 -404.008] cm +[1 0 0 1 0 0] Tm +0 0 Td +149.709 404.008 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 402.842] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -392.879] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 382.09 Td +/F128_0 9.963 Tf +(Internally) 38.7361 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 117.541 382.09] cm +0 g +0 G +[1 0 0 1 -117.541 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +117.541 382.09 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 177.317 382.09] cm +0 g +0 G +[1 0 0 1 -177.317 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +181.786 382.09 Td +/F128_0 9.963 Tf +(copies) 25.4555 Tj +-448 TJm +(data) 16.5984 Tj +-449 TJm +(from) 19.3681 Tj +-448 TJm +(the) 12.1748 Tj +-449 TJm +(compressed) 47.0353 Tj +-448 TJm +(\002le) 12.7327 Tj +-449 TJm +(in) 7.75121 Tj +-448 TJm +(chunks) 28.2252 Tj +-449 TJm +(of) 8.29918 Tj +-448 TJm +(size) 15.4925 Tj +[1 0 0 1 419.602 382.09] cm +0 g +0 G +[1 0 0 1 -419.602 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +419.602 382.09 Td +/F130_0 9.963 Tf +(BZ_MAX_UNUSED) 77.7114 Tj +[1 0 0 1 497.311 382.09] cm +0 g +0 G +[1 0 0 1 -497.311 -382.09] cm +[1 0 0 1 0 0] Tm +0 0 Td +501.778 382.09 Td +/F128_0 9.963 Tf +(bytes) 21.0319 Tj +-448 TJm +(be-) 12.7228 Tj +72 370.135 Td +(fore) 16.0404 Tj +-414 TJm +(decompressing) 59.768 Tj +-414 TJm +(it.) 8.03018 Tj +-1605 TJm +(If) 6.63536 Tj +-414 TJm +(the) 12.1748 Tj +-414 TJm +(\002le) 12.7327 Tj +-414 TJm +(contains) 33.2067 Tj +-414 TJm +(more) 20.474 Tj +-415 TJm +(by) 9.963 Tj +1 TJm +(tes) 11.0689 Tj +-415 TJm +(than) 17.1563 Tj +-414 TJm +(strictly) 27.6772 Tj +-414 TJm +(needed) 28.2152 Tj +-414 TJm +(to) 7.75121 Tj +-414 TJm +(reach) 21.5699 Tj +-414 TJm +(the) 12.1748 Tj +-414 TJm +(logical) 27.1193 Tj +-414 TJm +(end-of-stream,) 58.3732 Tj +[1 0 0 1 72 358.18] cm +0 g +0 G +[1 0 0 1 -72 -358.18] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 358.18 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 131.776 358.18] cm +0 g +0 G +[1 0 0 1 -131.776 -358.18] cm +[1 0 0 1 0 0] Tm +0 0 Td +134.749 358.18 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-298 TJm +(almost) 26.5713 Tj +-299 TJm +(certainly) 34.8605 Tj +-298 TJm +(read) 17.1463 Tj +-298 TJm +(some) 21.0319 Tj +-299 TJm +(of) 8.29918 Tj +-298 TJm +(the) 12.1748 Tj +-299 TJm +(t) 2.76971 Tj +1 TJm +(railing) 26.0134 Tj +-299 TJm +(data) 16.5984 Tj +-298 TJm +(before) 25.4455 Tj +-299 TJm +(s) 3.87561 Tj +1 TJm +(ignalling) 35.4284 Tj +[1 0 0 1 413.162 358.18] cm +0 g +0 G +[1 0 0 1 -413.162 -358.18] cm +[1 0 0 1 0 0] Tm +0 0 Td +413.162 358.18 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_END) 89.667 Tj +[1 0 0 1 502.826 358.18] cm +0 g +0 G +[1 0 0 1 -502.826 -358.18] cm +[1 0 0 1 0 0] Tm +0 0 Td +502.826 358.18 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-597 TJm +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-298 TJm +(col-) 15.4925 Tj +72 346.224 Td +(lect) 14.3866 Tj +-242 TJm +(the) 12.1748 Tj +-242 TJm +(read) 17.1463 Tj +-242 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-242 TJm +(unused) 28.2252 Tj +-243 TJm +(d) 4.9815 Tj +1 TJm +(ata) 11.6169 Tj +-243 TJm +(once) 18.8101 Tj +[1 0 0 1 208.759 346.224] cm +0 g +0 G +[1 0 0 1 -208.759 -346.224] cm +[1 0 0 1 0 0] Tm +0 0 Td +208.759 346.224 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_END) 89.667 Tj +[1 0 0 1 298.423 346.224] cm +0 g +0 G +[1 0 0 1 -298.423 -346.224] cm +[1 0 0 1 0 0] Tm +0 0 Td +300.835 346.224 Td +/F128_0 9.963 Tf +(has) 13.2807 Tj +-242 TJm +(appeared,) 38.4472 Tj +-244 TJm +(call) 14.3866 Tj +[1 0 0 1 374.201 346.224] cm +0 g +0 G +[1 0 0 1 -374.201 -346.224] cm +[1 0 0 1 0 0] Tm +0 0 Td +374.201 346.224 Td +/F130_0 9.963 Tf +(BZ2_bzReadGetUnused) 113.578 Tj +[1 0 0 1 487.775 346.224] cm +0 g +0 G +[1 0 0 1 -487.775 -346.224] cm +[1 0 0 1 0 0] Tm +0 0 Td +490.188 346.224 Td +/F128_0 9.963 Tf +(immediately) 49.815 Tj +72 334.269 Td +(before) 25.4455 Tj +[1 0 0 1 99.935 334.269] cm +0 g +0 G +[1 0 0 1 -99.935 -334.269] cm +[1 0 0 1 0 0] Tm +0 0 Td +99.935 334.269 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 189.599 334.269] cm +0 g +0 G +[1 0 0 1 -189.599 -334.269] cm +[1 0 0 1 0 0] Tm +0 0 Td +189.599 334.269 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 333.104] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -323.141] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 312.351 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(assignments) 48.7091 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 169.144 312.351] cm +0 g +0 G +[1 0 0 1 -169.144 -312.351] cm +[1 0 0 1 0 0] Tm +0 0 Td +169.144 312.351 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 210.987 312.351] cm +0 g +0 G +[1 0 0 1 -210.987 -312.351] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.987 312.351 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 310.195] cm +0 g +0 G +[1 0 0 1 0 -259.343] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(20) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 24 24 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -284.568] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 263.014 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 259.427] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 699.676 Td +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(buf) 17.9334 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(len) 17.9334 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +90 687.721 Td +(BZ_SEQUENCE_ERROR) 101.623 Tj +98.488 675.766 Td +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(opened) 35.8668 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(BZ2) 17.9334 Tj +1 TJm +(_bzWriteOpen) 71.7336 Tj +90 663.811 Td +(BZ_IO_ERROR) 65.7558 Tj +98.488 651.856 Td +(if) 11.9556 Tj +-426 TJm +(there) 29.889 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(an) 11.9556 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(rea) 17.9334 Tj +1 TJm +(ding) 23.9112 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(file) 23.9112 Tj +90 639.9 Td +(BZ_UNEXPECTED_EOF) 101.623 Tj +98.488 627.945 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(file) 23.9112 Tj +-426 TJm +(e) 5.9778 Tj +1 TJm +(nded) 23.9112 Tj +-426 TJm +(before) 35.8668 Tj +98.488 615.99 Td +(the) 17.9334 Tj +-426 TJm +(logical) 41.8446 Tj +-426 TJm +(end-of-stream) 77.7114 Tj +-425 TJm +(was) 17.9334 Tj +-426 TJm +(detected) 47.8224 Tj +90 604.035 Td +(BZ_DATA_ERROR) 77.7114 Tj +98.488 592.08 Td +(if) 11.9556 Tj +-426 TJm +(a) 5.9778 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(integrity) 53.8002 Tj +-426 TJm +(erro) 23.9112 Tj +1 TJm +(r) 5.9778 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(detected) 47.8224 Tj +-426 TJm +(in) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(stream) 35.8668 Tj +90 580.124 Td +(BZ_DATA_ERROR_MAGIC) 113.578 Tj +98.488 568.169 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(stream) 35.8668 Tj +-426 TJm +(does) 23.9112 Tj +-426 TJm +(not) 17.9334 Tj +-426 TJm +(b) 5.9778 Tj +1 TJm +(egin) 23.9112 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(requisite) 53.8002 Tj +-426 TJm +(header) 35.8668 Tj +-426 TJm +(bytes) 29.889 Tj +98.488 556.214 Td +(\(ie,) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(not) 17.9334 Tj +-426 TJm +(a) 5.9778 Tj +-426 TJm +(bzip2) 29.889 Tj +-426 TJm +(data) 23.9112 Tj +-425 TJm +(file\).) 35.8668 Tj +-852 TJm +(This) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(really) 35.8668 Tj +98.488 544.259 Td +(a) 5.9778 Tj +-426 TJm +(special) 41.8446 Tj +-426 TJm +(case) 23.9112 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(BZ_DAT) 35.8668 Tj +1 TJm +(A_ERROR.) 47.8224 Tj +90 532.304 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 520.349 Td +(if) 11.9556 Tj +-426 TJm +(insufficient) 71.7336 Tj +-426 TJm +(memory) 35.8668 Tj +-426 TJm +(wa) 11.9556 Tj +1 TJm +(s) 5.9778 Tj +-426 TJm +(available) 53.8002 Tj +90 508.393 Td +(BZ_STREAM_END) 77.7114 Tj +98.488 496.438 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(logical) 41.8446 Tj +-426 TJm +(end) 17.9334 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(st) 11.9556 Tj +1 TJm +(ream) 23.9112 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(detected.) 53.8002 Tj +90 484.483 Td +(BZ_OK) 29.889 Tj +98.488 472.528 Td +(otherwise.) 59.778 Tj +[1 0 0 1 72 456.986] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -447.024] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 435.068 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 434.969] cm +0 g +0 G +[1 0 0 1 0 -60.772] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 56.19] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -425.604] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 425.604 Td +/F130_0 9.963 Tf +(number) 35.8668 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(bytes) 29.889 Tj +-426 TJm +(read) 23.9112 Tj +98.488 413.649 Td +(if) 11.9556 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(B) 5.9778 Tj +1 TJm +(Z_STREAM_END) 71.7336 Tj +90 401.694 Td +(undefined) 53.8002 Tj +98.488 389.739 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 374.197] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -364.234] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 352.279 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 352.179] cm +0 g +0 G +[1 0 0 1 0 -84.682] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 83.686 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 80.099] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -342.815] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 342.815 Td +/F130_0 9.963 Tf +(collect) 41.8446 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(buf,) 23.9112 Tj +-426 TJm +(t) 5.9778 Tj +1 TJm +(hen) 17.9334 Tj +-426 TJm +(BZ2_bzRead) 59.778 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(BZ2_bzReadClose) 89.667 Tj +98.488 330.859 Td +(if) 11.9556 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +90 318.904 Td +(collect) 41.8446 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(buf,) 23.9112 Tj +-426 TJm +(t) 5.9778 Tj +1 TJm +(hen) 17.9334 Tj +-426 TJm +(BZ2_bzReadClose) 89.667 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(BZ2_bzReadGetUnused) 113.578 Tj +98.488 306.949 Td +(if) 11.9556 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(BZ_SEQUENCE) 65.7558 Tj +1 TJm +(_END) 23.9112 Tj +90 294.994 Td +(BZ2_bzReadClose) 89.667 Tj +98.488 283.039 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 267.497] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -257.534] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 236.876 Td +/F121_0 17.215 Tf +(3.4.3.) 43.0719 Tj +[1 0 0 1 119.858 236.876] cm +0 g +0 G +[1 0 0 1 -119.858 -236.876] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 236.876 Td +/F387_0 17.215 Tf +(BZ2_bzReadGetUnused) 196.251 Tj +[1 0 0 1 316.114 236.876] cm +0 g +0 G +[1 0 0 1 -244.114 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -36.862] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -225.178] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 225.178 Td +/F130_0 9.963 Tf +(void) 23.9112 Tj +-426 TJm +(BZ2_bzReadGetUnused\() 119.556 Tj +-425 TJm +(int*) 23.9112 Tj +-426 TJm +(bzerror,) 47.8224 Tj +-426 TJm +(BZFILE) 35.8668 Tj +-426 TJm +(*b,) 17.9334 Tj +200.343 213.223 Td +(void**) 35.8668 Tj +-426 TJm +(unused,) 41.8446 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(nUnuse) 35.8668 Tj +1 TJm +(d) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 197.681] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -187.719] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 175.764 Td +/F128_0 9.963 Tf +(Returns) 30.9949 Tj +-435 TJm +(data) 16.5984 Tj +-435 TJm +(which) 24.3496 Tj +-435 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-435 TJm +(rea) 12.1648 Tj +1 TJm +(d) 4.9815 Tj +-435 TJm +(from) 19.3681 Tj +-435 TJm +(the) 12.1748 Tj +-435 TJm +(compressed) 47.0353 Tj +-435 TJm +(\002le) 12.7327 Tj +-435 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-435 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-435 TJm +(not) 12.7327 Tj +-435 TJm +(needed) 28.2152 Tj +-435 TJm +(to) 7.75121 Tj +-435 TJm +(get) 12.1748 Tj +-434 TJm +(to) 7.75121 Tj +-435 TJm +(the) 12.1748 Tj +-435 TJm +(logical) 27.1193 Tj +-435 TJm +(end-of-stream.) 58.3732 Tj +[1 0 0 1 72 163.808] cm +0 g +0 G +[1 0 0 1 -72 -163.808] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 163.808 Td +/F130_0 9.963 Tf +(*unused) 41.8446 Tj +[1 0 0 1 113.843 163.808] cm +0 g +0 G +[1 0 0 1 -113.843 -163.808] cm +[1 0 0 1 0 0] Tm +0 0 Td +117.2 163.808 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-337 TJm +(set) 11.0689 Tj +-337 TJm +(to) 7.75121 Tj +-337 TJm +(the) 12.1748 Tj +-336 TJm +(address) 29.879 Tj +-337 TJm +(of) 8.29918 Tj +-337 TJm +(the) 12.1748 Tj +-337 TJm +(data,) 19.0891 Tj +-359 TJm +(a) 4.42357 Tj +1 TJm +(nd) 9.963 Tj +[1 0 0 1 269.089 163.808] cm +0 g +0 G +[1 0 0 1 -269.089 -163.808] cm +[1 0 0 1 0 0] Tm +0 0 Td +269.089 163.808 Td +/F130_0 9.963 Tf +(*nUnused) 47.8224 Tj +[1 0 0 1 316.91 163.808] cm +0 g +0 G +[1 0 0 1 -316.91 -163.808] cm +[1 0 0 1 0 0] Tm +0 0 Td +320.267 163.808 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-337 TJm +(the) 12.1748 Tj +-337 TJm +(number) 30.437 Tj +-337 TJm +(o) 4.9815 Tj +1 TJm +(f) 3.31768 Tj +-337 TJm +(bytes.) 23.5226 Tj +[1 0 0 1 427.247 163.808] cm +0 g +0 G +[1 0 0 1 -427.247 -163.808] cm +[1 0 0 1 0 0] Tm +0 0 Td +427.247 163.808 Td +/F130_0 9.963 Tf +(*nUnused) 47.8224 Tj +[1 0 0 1 475.068 163.808] cm +0 g +0 G +[1 0 0 1 -475.068 -163.808] cm +[1 0 0 1 0 0] Tm +0 0 Td +478.425 163.808 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-337 TJm +(be) 9.40507 Tj +-337 TJm +(set) 11.0689 Tj +-337 TJm +(to) 7.75121 Tj +-336 TJm +(a) 4.42357 Tj +72 151.853 Td +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-250 TJm +(between) 33.1967 Tj +[1 0 0 1 131.506 151.853] cm +0 g +0 G +[1 0 0 1 -131.506 -151.853] cm +[1 0 0 1 0 0] Tm +0 0 Td +131.506 151.853 Td +/F130_0 9.963 Tf +(0) 5.9778 Tj +[1 0 0 1 137.484 151.853] cm +0 g +0 G +[1 0 0 1 -137.484 -151.853] cm +[1 0 0 1 0 0] Tm +0 0 Td +139.975 151.853 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 156.851 151.853] cm +0 g +0 G +[1 0 0 1 -156.851 -151.853] cm +[1 0 0 1 0 0] Tm +0 0 Td +156.851 151.853 Td +/F130_0 9.963 Tf +(BZ_MAX_UNUSED) 77.7114 Tj +[1 0 0 1 234.56 151.853] cm +0 g +0 G +[1 0 0 1 -234.56 -151.853] cm +[1 0 0 1 0 0] Tm +0 0 Td +237.05 151.853 Td +/F128_0 9.963 Tf +(inclusi) 26.5713 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e.) 6.91432 Tj +[1 0 0 1 72 150.688] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -140.725] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 129.936 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-882 TJm +(function) 33.2067 Tj +-883 TJm +(may) 17.1563 Tj +-882 TJm +(only) 17.7142 Tj +-882 TJm +(be) 9.40507 Tj +-883 TJm +(called) 23.7916 Tj +-882 TJm +(once) 18.8101 Tj +[1 0 0 1 271.332 129.936] cm +0 g +0 G +[1 0 0 1 -271.332 -129.936] cm +[1 0 0 1 0 0] Tm +0 0 Td +271.332 129.936 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 331.108 129.936] cm +0 g +0 G +[1 0 0 1 -331.108 -129.936] cm +[1 0 0 1 0 0] Tm +0 0 Td +339.9 129.936 Td +/F128_0 9.963 Tf +(has) 13.2807 Tj +-882 TJm +(signalled) 35.9764 Tj +[1 0 0 1 406.737 129.936] cm +0 g +0 G +[1 0 0 1 -406.737 -129.936] cm +[1 0 0 1 0 0] Tm +0 0 Td +406.737 129.936 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 484.446 129.936] cm +0 g +0 G +[1 0 0 1 -484.446 -129.936] cm +[1 0 0 1 0 0] Tm +0 0 Td +493.231 129.936 Td +/F128_0 9.963 Tf +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-882 TJm +(before) 25.4455 Tj +[1 0 0 1 72 117.98] cm +0 g +0 G +[1 0 0 1 -72 -117.98] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 117.98 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 161.664 117.98] cm +0 g +0 G +[1 0 0 1 -161.664 -117.98] cm +[1 0 0 1 0 0] Tm +0 0 Td +161.664 117.98 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 116.815] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -106.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 96.063 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(assignments) 48.7091 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 169.144 96.063] cm +0 g +0 G +[1 0 0 1 -169.144 -96.063] cm +[1 0 0 1 0 0] Tm +0 0 Td +169.144 96.063 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 210.987 96.063] cm +0 g +0 G +[1 0 0 1 -210.987 -96.063] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.987 96.063 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 93.906] cm +0 g +0 G +[1 0 0 1 0 -43.054] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.754] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.754] cm +0 g +0 G +[1 0 0 1 -493.841 -50.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.852 Td +/F128_0 9.963 Tf +(21) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 25 25 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -129.151] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 107.597 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 104.01] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 699.676 Td +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +98.488 687.721 Td +(or) 11.9556 Tj +-426 TJm +(unused) 35.8668 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(nUn) 17.9334 Tj +1 TJm +(used) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +90 675.766 Td +(BZ_SEQUENCE_ERROR) 101.623 Tj +98.488 663.811 Td +(if) 11.9556 Tj +-426 TJm +(BZ_STREAM_END) 77.7114 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(not) 17.9334 Tj +-425 TJm +(been) 23.9112 Tj +-426 TJm +(signalled) 53.8002 Tj +98.488 651.856 Td +(or) 11.9556 Tj +-426 TJm +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(opened) 35.8668 Tj +-426 TJm +(with) 23.9112 Tj +-425 TJm +(BZ2_bzWriteOpen) 89.667 Tj +90 639.9 Td +(BZ_OK) 29.889 Tj +98.488 627.945 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 612.403] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -602.441] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 590.486 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 590.386] cm +0 g +0 G +[1 0 0 1 0 -24.906] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -581.021] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 581.021 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 72 565.48] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -555.517] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 534.858 Td +/F121_0 17.215 Tf +(3.4.4.) 43.0719 Tj +[1 0 0 1 119.858 534.858] cm +0 g +0 G +[1 0 0 1 -119.858 -534.858] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 534.858 Td +/F387_0 17.215 Tf +(BZ2_bzReadClose) 154.935 Tj +[1 0 0 1 274.797 534.858] cm +0 g +0 G +[1 0 0 1 -202.797 -2.332] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.323] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -523.161] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 523.161 Td +/F130_0 9.963 Tf +(void) 23.9112 Tj +-426 TJm +(BZ2_bzReadClose) 89.667 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(in) 11.9556 Tj +1 TJm +(t) 5.9778 Tj +-426 TJm +(*bzerror,) 53.8002 Tj +-426 TJm +(BZFILE) 35.8668 Tj +-426 TJm +(*b) 11.9556 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 507.619] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -497.656] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 485.701 Td +/F128_0 9.963 Tf +(Releases) 34.8605 Tj +-429 TJm +(all) 9.963 Tj +-430 TJm +(memory) 33.2067 Tj +-429 TJm +(pertaining) 40.4 Tj +-430 TJm +(to) 7.75121 Tj +-429 TJm +(the) 12.1748 Tj +-430 TJm +(compressed) 47.0353 Tj +-429 TJm +(\002le) 12.7327 Tj +[1 0 0 1 304.352 485.701] cm +0 g +0 G +[1 0 0 1 -304.352 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +304.352 485.701 Td +/F130_0 9.963 Tf +(b) 5.9778 Tj +[1 0 0 1 310.33 485.701] cm +0 g +0 G +[1 0 0 1 -310.33 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +310.33 485.701 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 321.276 485.701] cm +0 g +0 G +[1 0 0 1 -321.276 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +321.276 485.701 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 410.94 485.701] cm +0 g +0 G +[1 0 0 1 -410.94 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +415.22 485.701 Td +/F128_0 9.963 Tf +(does) 18.2622 Tj +-429 TJm +(not) 12.7327 Tj +-430 TJm +(call) 14.3866 Tj +[1 0 0 1 473.438 485.701] cm +0 g +0 G +[1 0 0 1 -473.438 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +473.438 485.701 Td +/F130_0 9.963 Tf +(fclose) 35.8668 Tj +[1 0 0 1 509.304 485.701] cm +0 g +0 G +[1 0 0 1 -509.304 -485.701] cm +[1 0 0 1 0 0] Tm +0 0 Td +513.583 485.701 Td +/F128_0 9.963 Tf +(on) 9.963 Tj +-430 TJm +(the) 12.1748 Tj +72 473.746 Td +(underlying) 43.1697 Tj +-264 TJm +(\002le) 12.7327 Tj +-264 TJm +(hand) 19.3681 Tj +1 TJm +(le,) 9.68404 Tj +-268 TJm +(so) 8.85711 Tj +-264 TJm +(you) 14.9445 Tj +-264 TJm +(sh) 8.85711 Tj +1 TJm +(ould) 17.7142 Tj +-264 TJm +(do) 9.963 Tj +-264 TJm +(that) 14.9445 Tj +-264 TJm +(yourself) 32.6488 Tj +-264 TJm +(if) 6.08739 Tj +-264 TJm +(appropri) 33.7546 Tj +1 TJm +(ate.) 14.1076 Tj +[1 0 0 1 348.653 473.746] cm +0 g +0 G +[1 0 0 1 -348.653 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +348.653 473.746 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 438.317 473.746] cm +0 g +0 G +[1 0 0 1 -438.317 -473.746] cm +[1 0 0 1 0 0] Tm +0 0 Td +440.946 473.746 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-264 TJm +(be) 9.40507 Tj +-264 TJm +(called) 23.7916 Tj +-263 TJm +(to) 7.75121 Tj +-264 TJm +(clean) 21.0219 Tj +72 461.791 Td +(up) 9.963 Tj +-250 TJm +(after) 18.2522 Tj +-250 TJm +(all) 9.963 Tj +-250 TJm +(error) 19.3581 Tj +-250 TJm +(situations.) 40.6889 Tj +[1 0 0 1 72 459.634] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -449.671] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 439.873 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(assignments) 48.7091 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 169.144 439.873] cm +0 g +0 G +[1 0 0 1 -169.144 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +169.144 439.873 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 210.987 439.873] cm +0 g +0 G +[1 0 0 1 -210.987 -439.873] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.987 439.873 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 437.716] cm +0 g +0 G +[1 0 0 1 0 -60.772] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 56.189] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -428.351] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 428.351 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +98.488 416.396 Td +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(opened) 35.8668 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(BZ2) 17.9334 Tj +1 TJm +(_bzOpenWrite) 71.7336 Tj +90 404.441 Td +(BZ_OK) 29.889 Tj +98.488 392.486 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 376.944] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -366.982] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 355.026 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 354.927] cm +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -345.562] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 345.562 Td +/F130_0 9.963 Tf +(none) 23.9112 Tj +[1 0 0 1 72 330.02] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -320.058] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 299.399 Td +/F121_0 17.215 Tf +(3.4.5.) 43.0719 Tj +[1 0 0 1 119.858 299.399] cm +0 g +0 G +[1 0 0 1 -119.858 -299.399] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 299.399 Td +/F387_0 17.215 Tf +(BZ2_bzWriteOpen) 154.935 Tj +[1 0 0 1 274.797 299.399] cm +0 g +0 G +[1 0 0 1 -202.797 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -48.817] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 47.821 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 44.234] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -287.702] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 287.702 Td +/F130_0 9.963 Tf +(BZFILE) 35.8668 Tj +-426 TJm +(*BZ2_bzWriteOpen\() 101.623 Tj +-425 TJm +(int) 17.9334 Tj +-426 TJm +(*bzerror,) 53.8002 Tj +-426 TJm +(FILE) 23.9112 Tj +-426 TJm +(*f,) 17.9334 Tj +196.099 275.746 Td +(int) 17.9334 Tj +-426 TJm +(blockSize100k,) 83.6892 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(ver) 17.9334 Tj +1 TJm +(bosity,) 41.8446 Tj +196.099 263.791 Td +(int) 17.9334 Tj +-426 TJm +(workFactor) 59.778 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 248.249] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -238.287] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 226.332 Td +/F128_0 9.963 Tf +(Prepare) 30.427 Tj +-268 TJm +(to) 7.75121 Tj +-269 TJm +(write) 20.474 Tj +-268 TJm +(compressed) 47.0353 Tj +-268 TJm +(data) 16.5984 Tj +-269 TJm +(to) 7.75121 Tj +-268 TJm +(\002le) 12.7327 Tj +-269 TJm +(hand) 19.3681 Tj +1 TJm +(le) 7.19329 Tj +[1 0 0 1 262.72 226.332] cm +0 g +0 G +[1 0 0 1 -262.72 -226.332] cm +[1 0 0 1 0 0] Tm +0 0 Td +262.72 226.332 Td +/F130_0 9.963 Tf +(f) 5.9778 Tj +[1 0 0 1 268.698 226.332] cm +0 g +0 G +[1 0 0 1 -268.698 -226.332] cm +[1 0 0 1 0 0] Tm +0 0 Td +268.698 226.332 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 274.829 226.332] cm +0 g +0 G +[1 0 0 1 -274.829 -226.332] cm +[1 0 0 1 0 0] Tm +0 0 Td +274.829 226.332 Td +/F130_0 9.963 Tf +(f) 5.9778 Tj +[1 0 0 1 280.807 226.332] cm +0 g +0 G +[1 0 0 1 -280.807 -226.332] cm +[1 0 0 1 0 0] Tm +0 0 Td +283.481 226.332 Td +/F128_0 9.963 Tf +(should) 26.5713 Tj +-268 TJm +(refer) 18.8002 Tj +-269 TJm +(to) 7.75121 Tj +-268 TJm +(a) 4.42357 Tj +-269 TJm +(\002le) 12.7327 Tj +-268 TJm +(which) 24.3496 Tj +-268 TJm +(has) 13.2807 Tj +-269 TJm +(been) 18.8101 Tj +-268 TJm +(opened) 28.7731 Tj +-269 TJm +(f) 3.31768 Tj +1 TJm +(or) 8.29918 Tj +-269 TJm +(writing,) 31.2739 Tj +-273 TJm +(and) 14.3866 Tj +-268 TJm +(for) 11.6169 Tj +72 214.377 Td +(which) 24.3496 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(error) 19.3581 Tj +-250 TJm +(indicator) 35.4185 Tj +-250 TJm +(\() 3.31768 Tj +[1 0 0 1 176.577 214.377] cm +0 g +0 G +[1 0 0 1 -176.577 -214.377] cm +[1 0 0 1 0 0] Tm +0 0 Td +176.577 214.377 Td +/F130_0 9.963 Tf +(ferror\(f\)) 53.8002 Tj +[1 0 0 1 230.375 214.377] cm +0 g +0 G +[1 0 0 1 -230.375 -214.377] cm +[1 0 0 1 0 0] Tm +0 0 Td +230.375 214.377 Td +/F128_0 9.963 Tf +(\)is) 9.963 Tj +-250 TJm +(not) 12.7327 Tj +-250 TJm +(set.) 13.5596 Tj +[1 0 0 1 72 212.593] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -202.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 192.459 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-223 TJm +(the) 12.1748 Tj +-224 TJm +(meaning) 34.3126 Tj +-223 TJm +(of) 8.29918 Tj +-223 TJm +(parameters) 43.7077 Tj +[1 0 0 1 195.306 192.459] cm +0 g +0 G +[1 0 0 1 -195.306 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +195.306 192.459 Td +/F130_0 9.963 Tf +(blockSize100k) 77.7114 Tj +[1 0 0 1 273.015 192.459] cm +0 g +0 G +[1 0 0 1 -273.015 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +273.015 192.459 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 277.784 192.459] cm +0 g +0 G +[1 0 0 1 -277.784 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +277.784 192.459 Td +/F130_0 9.963 Tf +(verbosity) 53.8002 Tj +[1 0 0 1 331.583 192.459] cm +0 g +0 G +[1 0 0 1 -331.583 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +333.808 192.459 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 350.42 192.459] cm +0 g +0 G +[1 0 0 1 -350.42 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +350.42 192.459 Td +/F130_0 9.963 Tf +(workFactor) 59.778 Tj +[1 0 0 1 410.196 192.459] cm +0 g +0 G +[1 0 0 1 -410.196 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +410.196 192.459 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-229 TJm +(see) 12.7228 Tj +[1 0 0 1 429.913 192.459] cm +0 g +0 G +[1 0 0 1 -429.913 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +429.913 192.459 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 537.509 192.459] cm +0 g +0 G +[1 0 0 1 -537.509 -192.459] cm +[1 0 0 1 0 0] Tm +0 0 Td +537.509 192.459 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 190.302] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -180.339] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 170.541 Td +/F128_0 9.963 Tf +(All) 12.7327 Tj +-382 TJm +(required) 33.1967 Tj +-382 TJm +(memory) 33.2067 Tj +-382 TJm +(is) 6.64532 Tj +-382 TJm +(allocated) 35.9664 Tj +-382 TJm +(at) 7.19329 Tj +-382 TJm +(this) 14.3965 Tj +-382 TJm +(stage,) 22.9647 Tj +-415 TJm +(so) 8.85711 Tj +-382 TJm +(if) 6.08739 Tj +-382 TJm +(the) 12.1748 Tj +-382 TJm +(call) 14.3866 Tj +-382 TJm +(completes) 40.4 Tj +-382 TJm +(successfully) 48.6991 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 424.692 170.541] cm +0 g +0 G +[1 0 0 1 -424.692 -170.541] cm +[1 0 0 1 0 0] Tm +0 0 Td +424.692 170.541 Td +/F130_0 9.963 Tf +(BZ_MEM_ERROR) 71.7336 Tj +[1 0 0 1 496.423 170.541] cm +0 g +0 G +[1 0 0 1 -496.423 -170.541] cm +[1 0 0 1 0 0] Tm +0 0 Td +500.228 170.541 Td +/F128_0 9.963 Tf +(cannot) 26.5614 Tj +-382 TJm +(be) 9.40507 Tj +72 158.586 Td +(signalled) 35.9764 Tj +-250 TJm +(by) 9.963 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(subsequent) 44.2756 Tj +-250 TJm +(cal) 11.6169 Tj +1 TJm +(l) 2.76971 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 203.715 158.586] cm +0 g +0 G +[1 0 0 1 -203.715 -158.586] cm +[1 0 0 1 0 0] Tm +0 0 Td +203.715 158.586 Td +/F130_0 9.963 Tf +(BZ2_bzWrite) 65.7558 Tj +[1 0 0 1 269.468 158.586] cm +0 g +0 G +[1 0 0 1 -269.468 -158.586] cm +[1 0 0 1 0 0] Tm +0 0 Td +269.468 158.586 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 156.429] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -146.466] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 136.668 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(assignments) 48.7091 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 169.144 136.668] cm +0 g +0 G +[1 0 0 1 -169.144 -136.668] cm +[1 0 0 1 0 0] Tm +0 0 Td +169.144 136.668 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 210.987 136.668] cm +0 g +0 G +[1 0 0 1 -210.987 -136.668] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.987 136.668 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 134.511] cm +0 g +0 G +[1 0 0 1 0 -83.659] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.754] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.754] cm +0 g +0 G +[1 0 0 1 -493.841 -50.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.852 Td +/F128_0 9.963 Tf +(22) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 26 26 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -165.016] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 143.462 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 139.875] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(BZ_CONFIG_ERROR) 89.667 Tj +98.488 699.676 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(library) 41.8446 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-425 TJm +(mis-compiled) 71.7336 Tj +90 687.721 Td +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 675.766 Td +(if) 11.9556 Tj +-426 TJm +(f) 5.9778 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +98.488 663.811 Td +(or) 11.9556 Tj +-426 TJm +(blockSize100k) 77.7114 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(1) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-425 TJm +(blockSize100k) 77.7114 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(9) 5.9778 Tj +90 651.856 Td +(BZ_IO_ERROR) 65.7558 Tj +98.488 639.9 Td +(if) 11.9556 Tj +-426 TJm +(ferror\(f\)) 53.8002 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(nonzero) 41.8446 Tj +90 627.945 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 615.99 Td +(if) 11.9556 Tj +-426 TJm +(insufficient) 71.7336 Tj +-426 TJm +(memory) 35.8668 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(available) 53.8002 Tj +90 604.035 Td +(BZ_OK) 29.889 Tj +98.488 592.08 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 576.538] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -566.575] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 554.62 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 554.521] cm +0 g +0 G +[1 0 0 1 0 -60.772] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 56.189] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -545.156] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 545.156 Td +/F130_0 9.963 Tf +(Pointer) 41.8446 Tj +-426 TJm +(to) 11.9556 Tj +-426 TJm +(an) 11.9556 Tj +-426 TJm +(abstract) 47.8224 Tj +-426 TJm +(B) 5.9778 Tj +1 TJm +(ZFILE) 29.889 Tj +98.488 533.201 Td +(if) 11.9556 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +90 521.245 Td +(NULL) 23.9112 Tj +98.488 509.29 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 493.749] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -483.786] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 471.831 Td +/F128_0 9.963 Tf +(Allo) 17.7142 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able) 16.5984 Tj +-250 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(actions:) 30.9949 Tj +[1 0 0 1 72 471.731] cm +0 g +0 G +[1 0 0 1 0 -84.682] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 83.686 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 80.1] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -462.366] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 462.366 Td +/F130_0 9.963 Tf +(BZ2_bzWrite) 65.7558 Tj +98.488 450.411 Td +(if) 11.9556 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +98.488 438.456 Td +(\(you) 23.9112 Tj +-426 TJm +(could) 29.889 Tj +-426 TJm +(go) 11.9556 Tj +-426 TJm +(directly) 47.8224 Tj +-426 TJm +(t) 5.9778 Tj +1 TJm +(o) 5.9778 Tj +-426 TJm +(BZ2_bzWriteClose,) 101.623 Tj +-426 TJm +(but) 17.9334 Tj +-426 TJm +(this) 23.9112 Tj +-426 TJm +(would) 29.889 Tj +-426 TJm +(be) 11.9556 Tj +-426 TJm +(pretty) 35.8668 Tj +485.506 434.212 Td +/F559_0 9.963 Tf +( ) 9.963 Tj +493.808 434.212 Td +/F143_0 9.963 Tf +(-) 2.76971 Tj +90 426.501 Td +/F130_0 9.963 Tf +(pointless\)) 59.778 Tj +90 414.546 Td +(BZ2_bzWriteClose) 95.6448 Tj +98.488 402.59 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 387.049] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -377.086] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 356.428 Td +/F121_0 17.215 Tf +(3.4.6.) 43.0719 Tj +[1 0 0 1 119.858 356.428] cm +0 g +0 G +[1 0 0 1 -119.858 -356.428] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 356.428 Td +/F387_0 17.215 Tf +(BZ2_bzWrite) 113.619 Tj +[1 0 0 1 233.48 356.428] cm +0 g +0 G +[1 0 0 1 -161.48 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -344.73] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 344.73 Td +/F130_0 9.963 Tf +(void) 23.9112 Tj +-426 TJm +(BZ2_bzWrite) 65.7558 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(*) 5.9778 Tj +1 TJm +(bzerror,) 47.8224 Tj +-426 TJm +(BZFILE) 35.8668 Tj +-426 TJm +(*b,) 17.9334 Tj +-426 TJm +(void) 23.9112 Tj +-426 TJm +(*buf,) 29.889 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(len) 17.9334 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 329.188] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -319.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 307.271 Td +/F128_0 9.963 Tf +(Absorbs) 33.2067 Tj +[1 0 0 1 107.696 307.271] cm +0 g +0 G +[1 0 0 1 -107.696 -307.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +107.696 307.271 Td +/F130_0 9.963 Tf +(len) 17.9334 Tj +[1 0 0 1 125.629 307.271] cm +0 g +0 G +[1 0 0 1 -125.629 -307.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +128.119 307.271 Td +/F128_0 9.963 Tf +(bytes) 21.0319 Tj +-250 TJm +(from) 19.3681 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +[1 0 0 1 214.544 307.271] cm +0 g +0 G +[1 0 0 1 -214.544 -307.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +214.544 307.271 Td +/F130_0 9.963 Tf +(buf) 17.9334 Tj +[1 0 0 1 232.477 307.271] cm +0 g +0 G +[1 0 0 1 -232.477 -307.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +232.477 307.271 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(entually) 32.1008 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(compressed) 47.0353 Tj +-249 TJm +(and) 14.3866 Tj +-250 TJm +(written) 28.2252 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(\002le.) 15.2235 Tj +[1 0 0 1 72 305.114] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -295.151] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 285.353 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(assignments) 48.7091 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 169.144 285.353] cm +0 g +0 G +[1 0 0 1 -169.144 -285.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +169.144 285.353 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 210.987 285.353] cm +0 g +0 G +[1 0 0 1 -210.987 -285.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.987 285.353 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 283.196] cm +0 g +0 G +[1 0 0 1 0 -108.593] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 107.597 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 104.01] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -273.831] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 273.831 Td +/F130_0 9.963 Tf +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 261.876 Td +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(buf) 17.9334 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(len) 17.9334 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +90 249.921 Td +(BZ_SEQUENCE_ERROR) 101.623 Tj +98.488 237.966 Td +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(opened) 35.8668 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(BZ2) 17.9334 Tj +1 TJm +(_bzReadOpen) 65.7558 Tj +90 226.01 Td +(BZ_IO_ERROR) 65.7558 Tj +98.488 214.055 Td +(if) 11.9556 Tj +-426 TJm +(there) 29.889 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(an) 11.9556 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(wri) 17.9334 Tj +1 TJm +(ting) 23.9112 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(file.) 29.889 Tj +90 202.1 Td +(BZ_OK) 29.889 Tj +98.488 190.145 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 174.603] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -164.64] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 143.982 Td +/F121_0 17.215 Tf +(3.4.7.) 43.0719 Tj +[1 0 0 1 119.858 143.982] cm +0 g +0 G +[1 0 0 1 -119.858 -143.982] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 143.982 Td +/F387_0 17.215 Tf +(BZ2_bzWriteClose) 165.264 Tj +[1 0 0 1 285.126 143.982] cm +0 g +0 G +[1 0 0 1 -213.126 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -90.797] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(23) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 27 27 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -165.016] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 143.462 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 139.875] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(void) 23.9112 Tj +-426 TJm +(BZ2_bzWriteClose\() 101.623 Tj +-426 TJm +(in) 11.9556 Tj +1 TJm +(t) 5.9778 Tj +-426 TJm +(*bzerror,) 53.8002 Tj +-426 TJm +(BZFILE*) 41.8446 Tj +-426 TJm +(f,) 11.9556 Tj +187.611 699.676 Td +(int) 17.9334 Tj +-426 TJm +(abandon,) 47.8224 Tj +187.611 687.721 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(nbytes_in,) 59.778 Tj +187.611 675.766 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(nbytes_out) 59.778 Tj +-426 TJm +(\);) 11.9556 Tj +90 651.856 Td +(void) 23.9112 Tj +-426 TJm +(BZ2_bzWriteClose64\() 113.578 Tj +-425 TJm +(int) 17.9334 Tj +-426 TJm +(*bzerror,) 53.8002 Tj +-426 TJm +(BZFILE*) 41.8446 Tj +-426 TJm +(f,) 11.9556 Tj +196.099 639.9 Td +(int) 17.9334 Tj +-426 TJm +(abandon,) 47.8224 Tj +196.099 627.945 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(nbytes_in_lo3) 77.7114 Tj +1 TJm +(2,) 11.9556 Tj +196.099 615.99 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(nbytes_in_hi3) 77.7114 Tj +1 TJm +(2,) 11.9556 Tj +196.099 604.035 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(nbytes_out_lo) 77.7114 Tj +1 TJm +(32,) 17.9334 Tj +196.099 592.08 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(nbytes_out_hi) 77.7114 Tj +1 TJm +(32) 11.9556 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 576.538] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -566.575] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 554.62 Td +/F128_0 9.963 Tf +(Compresses) 48.1512 Tj +-402 TJm +(and) 14.3866 Tj +-403 TJm +(\003ushes) 27.6772 Tj +-403 TJm +(to) 7.75121 Tj +-402 TJm +(the) 12.1748 Tj +-403 TJm +(compressed) 47.0353 Tj +-402 TJm +(\002le) 12.7327 Tj +-403 TJm +(all) 9.963 Tj +-402 TJm +(data) 16.5984 Tj +-403 TJm +(so) 8.85711 Tj +-403 TJm +(f) 3.31768 Tj +11 TJm +(ar) 7.74125 Tj +-403 TJm +(supplied) 33.7646 Tj +-403 TJm +(by) 9.963 Tj +[1 0 0 1 384.152 554.62] cm +0 g +0 G +[1 0 0 1 -384.152 -554.62] cm +[1 0 0 1 0 0] Tm +0 0 Td +384.152 554.62 Td +/F130_0 9.963 Tf +(BZ2_bzWrite) 65.7558 Tj +[1 0 0 1 449.906 554.62] cm +0 g +0 G +[1 0 0 1 -449.906 -554.62] cm +[1 0 0 1 0 0] Tm +0 0 Td +449.906 554.62 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-768 TJm +(The) 15.4925 Tj +-402 TJm +(logical) 27.1193 Tj +-403 TJm +(end-of-) 29.3211 Tj +72 542.665 Td +(stream) 26.5614 Tj +-352 TJm +(mark) 20.474 Tj +10 TJm +(ers) 11.6169 Tj +-352 TJm +(are) 12.1648 Tj +-352 TJm +(also) 16.0504 Tj +-352 TJm +(written,) 30.7159 Tj +-378 TJm +(so) 8.85711 Tj +-352 TJm +(subsequent) 44.2756 Tj +-352 TJm +(calls) 18.2622 Tj +-352 TJm +(to) 7.75121 Tj +[1 0 0 1 300.456 542.665] cm +0 g +0 G +[1 0 0 1 -300.456 -542.665] cm +[1 0 0 1 0 0] Tm +0 0 Td +300.456 542.665 Td +/F130_0 9.963 Tf +(BZ2_bzWrite) 65.7558 Tj +[1 0 0 1 366.209 542.665] cm +0 g +0 G +[1 0 0 1 -366.209 -542.665] cm +[1 0 0 1 0 0] Tm +0 0 Td +369.718 542.665 Td +/F128_0 9.963 Tf +(are) 12.1648 Tj +-352 TJm +(ille) 12.7327 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(al.) 9.68404 Tj +-1233 TJm +(All) 12.7327 Tj +-352 TJm +(memory) 33.2067 Tj +-353 TJm +(ass) 12.1748 Tj +1 TJm +(ociated) 28.7731 Tj +-353 TJm +(wit) 12.7327 Tj +1 TJm +(h) 4.9815 Tj +72 530.71 Td +(the) 12.1748 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(\002le) 12.7327 Tj +[1 0 0 1 151.411 530.71] cm +0 g +0 G +[1 0 0 1 -151.411 -530.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +151.411 530.71 Td +/F130_0 9.963 Tf +(b) 5.9778 Tj +[1 0 0 1 157.389 530.71] cm +0 g +0 G +[1 0 0 1 -157.389 -530.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +159.88 530.71 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(released.) 35.1295 Tj +[1 0 0 1 207.231 530.71] cm +0 g +0 G +[1 0 0 1 -207.231 -530.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +207.231 530.71 Td +/F130_0 9.963 Tf +(fflush) 35.8668 Tj +[1 0 0 1 243.097 530.71] cm +0 g +0 G +[1 0 0 1 -243.097 -530.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +245.587 530.71 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(called) 23.7916 Tj +-250 TJm +(on) 9.963 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(\002l) 8.30914 Tj +1 TJm +(e,) 6.91432 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(it) 5.53943 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(not) 12.7327 Tj +[1 0 0 1 422.771 530.71] cm +0 g +0 G +[1 0 0 1 -422.771 -530.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +422.771 530.71 Td +/F130_0 9.963 Tf +(fclose) 35.8668 Tj +[1 0 0 1 458.636 530.71] cm +0 g +0 G +[1 0 0 1 -458.636 -530.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +458.636 530.71 Td +/F128_0 9.963 Tf +(') 3.31768 Tj +50 TJm +(d.) 7.47225 Tj +[1 0 0 1 72 528.553] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -518.59] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 508.792 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +[1 0 0 1 81.574 508.792] cm +0 g +0 G +[1 0 0 1 -81.574 -508.792] cm +[1 0 0 1 0 0] Tm +0 0 Td +81.574 508.792 Td +/F130_0 9.963 Tf +(BZ2_bzWriteClose) 95.6448 Tj +[1 0 0 1 177.216 508.792] cm +0 g +0 G +[1 0 0 1 -177.216 -508.792] cm +[1 0 0 1 0 0] Tm +0 0 Td +180.155 508.792 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-295 TJm +(called) 23.7916 Tj +-295 TJm +(to) 7.75121 Tj +-295 TJm +(clean) 21.0219 Tj +-295 TJm +(up) 9.963 Tj +-295 TJm +(after) 18.2522 Tj +-295 TJm +(an) 9.40507 Tj +-295 TJm +(error) 19.3581 Tj +40 TJm +(,) 2.49075 Tj +-306 TJm +(the) 12.1748 Tj +-295 TJm +(only) 17.7142 Tj +-295 TJm +(action) 24.3496 Tj +-295 TJm +(is) 6.64532 Tj +-295 TJm +(to) 7.75121 Tj +-295 TJm +(relea) 19.3581 Tj +1 TJm +(se) 8.29918 Tj +-295 TJm +(the) 12.1748 Tj +-295 TJm +(memory) 33.2067 Tj +65 TJm +(.) 2.49075 Tj +-890 TJm +(The) 15.4925 Tj +-295 TJm +(library) 26.5614 Tj +72 496.837 Td +(records) 29.3211 Tj +-289 TJm +(the) 12.1748 Tj +-289 TJm +(error) 19.3581 Tj +-289 TJm +(codes) 22.6858 Tj +-289 TJm +(issued) 24.9075 Tj +-289 TJm +(by) 9.963 Tj +-289 TJm +(p) 4.9815 Tj +1 TJm +(re) 7.74125 Tj +25 TJm +(vious) 21.5898 Tj +-289 TJm +(calls,) 20.7529 Tj +-299 TJm +(so) 8.85711 Tj +-289 TJm +(this) 14.3965 Tj +-289 TJm +(situation) 34.3225 Tj +-289 TJm +(will) 15.5024 Tj +-289 TJm +(be) 9.40507 Tj +-289 TJm +(detecte) 28.2152 Tj +1 TJm +(d) 4.9815 Tj +-289 TJm +(automatically) 54.2386 Tj +65 TJm +(.) 2.49075 Tj +-427 TJm +(There) 23.2337 Tj +-289 TJm +(is) 6.64532 Tj +-289 TJm +(no) 9.963 Tj +-289 TJm +(attempt) 29.889 Tj +72 484.882 Td +(to) 7.75121 Tj +-263 TJm +(comple) 29.3311 Tj +1 TJm +(te) 7.19329 Tj +-263 TJm +(the) 12.1748 Tj +-263 TJm +(compression) 50.363 Tj +-262 TJm +(operation,) 40.121 Tj +-266 TJm +(nor) 13.2807 Tj +-262 TJm +(to) 7.75121 Tj +[1 0 0 1 258.308 484.882] cm +0 g +0 G +[1 0 0 1 -258.308 -484.882] cm +[1 0 0 1 0 0] Tm +0 0 Td +258.308 484.882 Td +/F130_0 9.963 Tf +(fflush) 35.8668 Tj +[1 0 0 1 294.173 484.882] cm +0 g +0 G +[1 0 0 1 -294.173 -484.882] cm +[1 0 0 1 0 0] Tm +0 0 Td +296.79 484.882 Td +/F128_0 9.963 Tf +(the) 12.1748 Tj +-263 TJm +(compres) 33.7546 Tj +1 TJm +(sed) 13.2807 Tj +-263 TJm +(\002le.) 15.2235 Tj +-696 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-263 TJm +(can) 13.8286 Tj +-262 TJm +(force) 20.464 Tj +-263 TJm +(this) 14.3965 Tj +-262 TJm +(beha) 18.8101 Tj +20 TJm +(viour) 21.0319 Tj +-263 TJm +(to) 7.75121 Tj +-262 TJm +(happen) 28.7731 Tj +72 472.927 Td +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(case) 17.1463 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(no) 9.963 Tj +-250 TJm +(error) 19.3581 Tj +40 TJm +(,) 2.49075 Tj +-250 TJm +(by) 9.963 Tj +-250 TJm +(p) 4.9815 Tj +1 TJm +(assing) 24.9075 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(nonzero) 32.0908 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alue) 16.5984 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 305.015 472.927] cm +0 g +0 G +[1 0 0 1 -305.015 -472.927] cm +[1 0 0 1 0 0] Tm +0 0 Td +305.015 472.927 Td +/F130_0 9.963 Tf +(abandon) 41.8446 Tj +[1 0 0 1 346.858 472.927] cm +0 g +0 G +[1 0 0 1 -346.858 -472.927] cm +[1 0 0 1 0 0] Tm +0 0 Td +346.858 472.927 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 470.77] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -460.807] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 451.009 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +[1 0 0 1 80.597 451.009] cm +0 g +0 G +[1 0 0 1 -80.597 -451.009] cm +[1 0 0 1 0 0] Tm +0 0 Td +80.597 451.009 Td +/F130_0 9.963 Tf +(nbytes_in) 53.8002 Tj +[1 0 0 1 134.396 451.009] cm +0 g +0 G +[1 0 0 1 -134.396 -451.009] cm +[1 0 0 1 0 0] Tm +0 0 Td +136.358 451.009 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-197 TJm +(non-null,) 36.2554 Tj +[1 0 0 1 183.287 451.009] cm +0 g +0 G +[1 0 0 1 -183.287 -451.009] cm +[1 0 0 1 0 0] Tm +0 0 Td +183.287 451.009 Td +/F130_0 9.963 Tf +(*nbytes_in) 59.778 Tj +[1 0 0 1 243.063 451.009] cm +0 g +0 G +[1 0 0 1 -243.063 -451.009] cm +[1 0 0 1 0 0] Tm +0 0 Td +245.025 451.009 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-197 TJm +(be) 9.40507 Tj +-197 TJm +(set) 11.0689 Tj +-197 TJm +(to) 7.75121 Tj +-197 TJm +(be) 9.40507 Tj +-197 TJm +(the) 12.1748 Tj +-197 TJm +(tot) 10.5209 Tj +1 TJm +(al) 7.19329 Tj +-197 TJm +(v) 4.9815 Tj +20 TJm +(olume) 24.9075 Tj +-197 TJm +(of) 8.29918 Tj +-197 TJm +(uncompressed) 56.9983 Tj +-197 TJm +(data) 16.5984 Tj +-197 TJm +(handled.) 34.0336 Tj +-584 TJm +(Similarly) 37.0922 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 72 439.054] cm +0 g +0 G +[1 0 0 1 -72 -439.054] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 439.054 Td +/F130_0 9.963 Tf +(nbytes_out) 59.778 Tj +[1 0 0 1 131.776 439.054] cm +0 g +0 G +[1 0 0 1 -131.776 -439.054] cm +[1 0 0 1 0 0] Tm +0 0 Td +134.716 439.054 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-295 TJm +(be) 9.40507 Tj +-295 TJm +(set) 11.0689 Tj +-295 TJm +(to) 7.75121 Tj +-295 TJm +(the) 12.1748 Tj +-295 TJm +(total) 17.7142 Tj +-295 TJm +(v) 4.9815 Tj +20 TJm +(olume) 24.9075 Tj +-295 TJm +(of) 8.29918 Tj +-295 TJm +(compressed) 47.0353 Tj +-295 TJm +(data) 16.5984 Tj +-295 TJm +(written.) 30.7159 Tj +-890 TJm +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-295 TJm +(compatibility) 53.1426 Tj +-295 TJm +(with) 17.7142 Tj +-295 TJm +(older) 20.474 Tj +-295 TJm +(v) 4.9815 Tj +15 TJm +(ersions) 28.2252 Tj +-295 TJm +(of) 8.29918 Tj +72 427.098 Td +(the) 12.1748 Tj +-283 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 118.294 427.098] cm +0 g +0 G +[1 0 0 1 -118.294 -427.098] cm +[1 0 0 1 0 0] Tm +0 0 Td +118.294 427.098 Td +/F130_0 9.963 Tf +(BZ2_bzWriteClose) 95.6448 Tj +[1 0 0 1 213.936 427.098] cm +0 g +0 G +[1 0 0 1 -213.936 -427.098] cm +[1 0 0 1 0 0] Tm +0 0 Td +216.753 427.098 Td +/F128_0 9.963 Tf +(only) 17.7142 Tj +-283 TJm +(yields) 23.8016 Tj +-282 TJm +(the) 12.1748 Tj +-283 TJm +(lo) 7.75121 Tj +25 TJm +(wer) 14.9345 Tj +-283 TJm +(32) 9.963 Tj +-283 TJm +(bits) 14.3965 Tj +-282 TJm +(of) 8.29918 Tj +-283 TJm +(these) 20.474 Tj +-283 TJm +(counts.) 28.5041 Tj +-817 TJm +(Use) 15.4925 Tj +[1 0 0 1 423.499 427.098] cm +0 g +0 G +[1 0 0 1 -423.499 -427.098] cm +[1 0 0 1 0 0] Tm +0 0 Td +423.499 427.098 Td +/F130_0 9.963 Tf +(BZ2_bzWriteClose64) 107.6 Tj +[1 0 0 1 531.095 427.098] cm +0 g +0 G +[1 0 0 1 -531.095 -427.098] cm +[1 0 0 1 0 0] Tm +0 0 Td +533.913 427.098 Td +/F128_0 9.963 Tf +(if) 6.08739 Tj +72 415.143 Td +(you) 14.9445 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(full) 13.8386 Tj +-250 TJm +(64) 9.963 Tj +-250 TJm +(bit) 10.5209 Tj +-250 TJm +(counts) 26.0134 Tj +1 TJm +(.) 2.49075 Tj +-620 TJm +(These) 23.7916 Tj +-250 TJm +(tw) 9.963 Tj +10 TJm +(o) 4.9815 Tj +-250 TJm +(functions) 37.0823 Tj +-250 TJm +(are) 12.1648 Tj +-250 TJm +(otherwise) 38.7361 Tj +-250 TJm +(absolutely) 40.9579 Tj +-250 TJm +(identic) 27.1193 Tj +1 TJm +(al.) 9.68404 Tj +[1 0 0 1 72 412.986] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -403.024] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 393.225 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(assignments) 48.7091 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 169.144 393.225] cm +0 g +0 G +[1 0 0 1 -169.144 -393.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +169.144 393.225 Td +/F130_0 9.963 Tf +(bzerror) 41.8446 Tj +[1 0 0 1 210.987 393.225] cm +0 g +0 G +[1 0 0 1 -210.987 -393.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.987 393.225 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 391.069] cm +0 g +0 G +[1 0 0 1 0 -84.683] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 83.686 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 80.099] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -381.704] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 381.704 Td +/F130_0 9.963 Tf +(BZ_SEQUENCE_ERROR) 101.623 Tj +98.488 369.749 Td +(if) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(opened) 35.8668 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(BZ2) 17.9334 Tj +1 TJm +(_bzReadOpen) 65.7558 Tj +90 357.793 Td +(BZ_IO_ERROR) 65.7558 Tj +98.488 345.838 Td +(if) 11.9556 Tj +-426 TJm +(there) 29.889 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(an) 11.9556 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(wri) 17.9334 Tj +1 TJm +(ting) 23.9112 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(file) 23.9112 Tj +90 333.883 Td +(BZ_OK) 29.889 Tj +98.488 321.928 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 306.386] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -296.423] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 275.765 Td +/F121_0 17.215 Tf +(3.4.8.) 43.0719 Tj +-278 TJm +(Handling) 73.6458 Tj +-278 TJm +(embed) 55.4839 Tj +10 TJm +(ded) 30.6083 Tj +-278 TJm +(compressed) 101.414 Tj +-278 TJm +(data) 35.394 Tj +-278 TJm +(streams) 66.0195 Tj +[1 0 0 1 72 271.935] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -261.972] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 253.847 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-203 TJm +(high-le) 28.2252 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-203 TJm +(library) 26.5614 Tj +-203 TJm +(f) 3.31768 Tj +10 TJm +(acilitates) 35.4185 Tj +-203 TJm +(use) 13.2807 Tj +-203 TJm +(of) 8.29918 Tj +[1 0 0 1 226.404 253.847] cm +0 g +0 G +[1 0 0 1 -226.404 -253.847] cm +[1 0 0 1 0 0] Tm +0 0 Td +226.404 253.847 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 256.292 253.847] cm +0 g +0 G +[1 0 0 1 -256.292 -253.847] cm +[1 0 0 1 0 0] Tm +0 0 Td +258.316 253.847 Td +/F128_0 9.963 Tf +(data) 16.5984 Tj +-203 TJm +(streams) 30.437 Tj +-203 TJm +(which) 24.3496 Tj +-203 TJm +(form) 19.3681 Tj +-203 TJm +(some) 21.0319 Tj +-203 TJm +(part) 15.4925 Tj +-203 TJm +(of) 8.29918 Tj +-203 TJm +(a) 4.42357 Tj +-203 TJm +(surrounding,) 50.6419 Tj +-212 TJm +(lar) 10.511 Tj +18 TJm +(ger) 12.7228 Tj +-203 TJm +(data) 16.5984 Tj +-203 TJm +(stream.) 29.0521 Tj +[1 0 0 1 72 251.69] cm +0 g +0 G +[1 0 0 1 0 -29.723] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -221.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 221.967 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 221.967] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -221.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 221.967 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-240 TJm +(writing,) 31.2739 Tj +-243 TJm +(the) 12.1748 Tj +-240 TJm +(library) 26.5614 Tj +-240 TJm +(tak) 12.1748 Tj +10 TJm +(es) 8.29918 Tj +-241 TJm +(an) 9.40507 Tj +-240 TJm +(open) 19.3681 Tj +-241 TJm +(\002le) 12.7327 Tj +-240 TJm +(handle,) 29.0521 Tj +-242 TJm +(writes) 24.3496 Tj +-241 TJm +(compress) 37.6303 Tj +1 TJm +(ed) 9.40507 Tj +-241 TJm +(data) 16.5984 Tj +-240 TJm +(to) 7.75121 Tj +-241 TJm +(it,) 8.03018 Tj +[1 0 0 1 398.926 221.967] cm +0 g +0 G +[1 0 0 1 -398.926 -221.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +398.926 221.967 Td +/F130_0 9.963 Tf +(fflush) 35.8668 Tj +[1 0 0 1 434.791 221.967] cm +0 g +0 G +[1 0 0 1 -434.791 -221.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.791 221.967 Td +/F128_0 9.963 Tf +(es) 8.29918 Tj +-240 TJm +(it) 5.53943 Tj +-241 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-240 TJm +(does) 18.2622 Tj +-241 TJm +(not) 12.7327 Tj +[1 0 0 1 504.135 221.967] cm +0 g +0 G +[1 0 0 1 -504.135 -221.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +504.135 221.967 Td +/F130_0 9.963 Tf +(fclose) 35.8668 Tj +[1 0 0 1 540 221.967] cm +0 g +0 G +[1 0 0 1 -540 -221.967] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 210.012 Td +/F128_0 9.963 Tf +(it.) 8.03018 Tj +-610 TJm +(The) 15.4925 Tj +-235 TJm +(calling) 27.1193 Tj +-235 TJm +(application) 44.2756 Tj +-234 TJm +(can) 13.8286 Tj +-235 TJm +(write) 20.474 Tj +-235 TJm +(its) 9.41504 Tj +-235 TJm +(o) 4.9815 Tj +25 TJm +(wn) 12.1748 Tj +-235 TJm +(data) 16.5984 Tj +-235 TJm +(before) 25.4455 Tj +-235 TJm +(and) 14.3866 Tj +-235 TJm +(after) 18.2522 Tj +-235 TJm +(the) 12.1748 Tj +-235 TJm +(compressed) 47.0353 Tj +-235 TJm +(dat) 12.1748 Tj +1 TJm +(a) 4.42357 Tj +-235 TJm +(stream,) 29.0521 Tj +-238 TJm +(using) 21.5898 Tj +-235 TJm +(that) 14.9445 Tj +-235 TJm +(same) 20.474 Tj +-235 TJm +(\002le) 12.7327 Tj +86.944 198.056 Td +(handle.) 29.0521 Tj +[1 0 0 1 115.995 198.056] cm +0 g +0 G +[1 0 0 1 -43.995 -21.917] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -176.139] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 176.139 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 176.139] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -176.139] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 176.139 Td +/F128_0 9.963 Tf +(Reading) 33.2067 Tj +-236 TJm +(is) 6.64532 Tj +-236 TJm +(m) 7.75121 Tj +1 TJm +(ore) 12.7228 Tj +-236 TJm +(comple) 29.3311 Tj +15 TJm +(x,) 7.47225 Tj +-239 TJm +(and) 14.3866 Tj +-236 TJm +(the) 12.1748 Tj +-235 TJm +(f) 3.31768 Tj +10 TJm +(acilities) 30.9949 Tj +-236 TJm +(are) 12.1648 Tj +-236 TJm +(not) 12.7327 Tj +-236 TJm +(as) 8.29918 Tj +-235 TJm +(general) 29.3211 Tj +-236 TJm +(as) 8.29918 Tj +-236 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-236 TJm +(could) 22.1378 Tj +-236 TJm +(b) 4.9815 Tj +1 TJm +(e) 4.42357 Tj +-236 TJm +(since) 20.474 Tj +-236 TJm +(generality) 39.842 Tj +-236 TJm +(is) 6.64532 Tj +-236 TJm +(har) 12.7228 Tj +1 TJm +(d) 4.9815 Tj +-236 TJm +(to) 7.75121 Tj +-236 TJm +(reconcile) 36.5144 Tj +86.944 164.183 Td +(with) 17.7142 Tj +-404 TJm +(ef) 7.74125 Tj +25 TJm +(\002cienc) 26.5614 Tj +15 TJm +(y) 4.9815 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 164.811 164.183] cm +0 g +0 G +[1 0 0 1 -164.811 -164.183] cm +[1 0 0 1 0 0] Tm +0 0 Td +164.811 164.183 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 224.587 164.183] cm +0 g +0 G +[1 0 0 1 -224.587 -164.183] cm +[1 0 0 1 0 0] Tm +0 0 Td +228.614 164.183 Td +/F128_0 9.963 Tf +(reads) 21.0219 Tj +-404 TJm +(from) 19.3681 Tj +-404 TJm +(the) 12.1748 Tj +-405 TJm +(com) 17.1563 Tj +1 TJm +(pressed) 29.879 Tj +-405 TJm +(\002le) 12.7327 Tj +-404 TJm +(in) 7.75121 Tj +-404 TJm +(blocks) 26.0134 Tj +-404 TJm +(of) 8.29918 Tj +-404 TJm +(size) 15.4925 Tj +[1 0 0 1 434.744 164.183] cm +0 g +0 G +[1 0 0 1 -434.744 -164.183] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.744 164.183 Td +/F130_0 9.963 Tf +(BZ_MAX_UNUSED) 77.7114 Tj +[1 0 0 1 512.452 164.183] cm +0 g +0 G +[1 0 0 1 -512.452 -164.183] cm +[1 0 0 1 0 0] Tm +0 0 Td +516.479 164.183 Td +/F128_0 9.963 Tf +(bytes,) 23.5226 Tj +86.944 152.228 Td +(and) 14.3866 Tj +-413 TJm +(in) 7.75121 Tj +-413 TJm +(doing) 22.6957 Tj +-413 TJm +(so) 8.85711 Tj +-413 TJm +(probably) 35.4185 Tj +-413 TJm +(wi) 9.963 Tj +1 TJm +(ll) 5.53943 Tj +-413 TJm +(o) 4.9815 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(ershoot) 29.3311 Tj +-413 TJm +(the) 12.1748 Tj +-413 TJm +(logical) 27.1193 Tj +-413 TJm +(end) 14.3866 Tj +-413 TJm +(of) 8.29918 Tj +-413 TJm +(compressed) 47.0353 Tj +-413 TJm +(stream.) 29.0521 Tj +-1597 TJm +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-413 TJm +(reco) 17.1463 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-413 TJm +(this) 14.3965 Tj +-413 TJm +(data) 16.5984 Tj +-413 TJm +(once) 18.8101 Tj +86.944 140.273 Td +(decompression) 59.768 Tj +-252 TJm +(has) 13.2807 Tj +-252 TJm +(ended,) 26.2824 Tj +-252 TJm +(call) 14.3866 Tj +[1 0 0 1 210.705 140.273] cm +0 g +0 G +[1 0 0 1 -210.705 -140.273] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.705 140.273 Td +/F130_0 9.963 Tf +(BZ2_bzReadGetUnused) 113.578 Tj +[1 0 0 1 324.279 140.273] cm +0 g +0 G +[1 0 0 1 -324.279 -140.273] cm +[1 0 0 1 0 0] Tm +0 0 Td +326.789 140.273 Td +/F128_0 9.963 Tf +(after) 18.2522 Tj +-252 TJm +(the) 12.1748 Tj +-252 TJm +(last) 13.8386 Tj +-252 TJm +(call) 14.3866 Tj +-252 TJm +(of) 8.29918 Tj +[1 0 0 1 406.291 140.273] cm +0 g +0 G +[1 0 0 1 -406.291 -140.273] cm +[1 0 0 1 0 0] Tm +0 0 Td +406.291 140.273 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 466.067 140.273] cm +0 g +0 G +[1 0 0 1 -466.067 -140.273] cm +[1 0 0 1 0 0] Tm +0 0 Td +468.578 140.273 Td +/F128_0 9.963 Tf +(\(the) 15.4925 Tj +-252 TJm +(one) 14.3866 Tj +-252 TJm +(returning) 36.5244 Tj +[1 0 0 1 86.944 128.318] cm +0 g +0 G +[1 0 0 1 -86.944 -128.318] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 128.318 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 164.653 128.318] cm +0 g +0 G +[1 0 0 1 -164.653 -128.318] cm +[1 0 0 1 0 0] Tm +0 0 Td +164.653 128.318 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(before) 25.4455 Tj +-250 TJm +(calling) 27.1193 Tj +[1 0 0 1 243.028 128.318] cm +0 g +0 G +[1 0 0 1 -243.028 -128.318] cm +[1 0 0 1 0 0] Tm +0 0 Td +243.028 128.318 Td +/F130_0 9.963 Tf +(BZ2_bzReadClose) 89.667 Tj +[1 0 0 1 332.692 128.318] cm +0 g +0 G +[1 0 0 1 -332.692 -128.318] cm +[1 0 0 1 0 0] Tm +0 0 Td +332.692 128.318 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 335.182 128.318] cm +0 g +0 G +[1 0 0 1 -263.182 -77.466] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.754] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.754] cm +0 g +0 G +[1 0 0 1 -493.841 -50.852] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.852 Td +/F128_0 9.963 Tf +(24) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 28 28 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -21.554] cm +0 g +0 G +[1 0 0 1 -72 -720] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-271 TJm +(mechanism) 45.3815 Tj +-271 TJm +(mak) 17.1563 Tj +10 TJm +(es) 8.29918 Tj +-272 TJm +(i) 2.76971 Tj +1 TJm +(t) 2.76971 Tj +-272 TJm +(easy) 17.7043 Tj +-271 TJm +(to) 7.75121 Tj +-271 TJm +(decompress) 47.0353 Tj +-271 TJm +(multiple) 33.2166 Tj +[1 0 0 1 293.313 710.037] cm +0 g +0 G +[1 0 0 1 -293.313 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +293.313 710.037 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 323.2 710.037] cm +0 g +0 G +[1 0 0 1 -323.2 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +325.903 710.037 Td +/F128_0 9.963 Tf +(streams) 30.437 Tj +-271 TJm +(placed) 26.0034 Tj +-271 TJm +(end-to-end.) 45.6505 Tj +-374 TJm +(As) 11.0689 Tj +-271 TJm +(the) 12.1748 Tj +-272 TJm +(end) 14.3866 Tj +-271 TJm +(of) 8.29918 Tj +-271 TJm +(one) 14.3866 Tj +-271 TJm +(stream,) 29.0521 Tj +72 698.082 Td +(when) 21.5799 Tj +[1 0 0 1 96.195 698.082] cm +0 g +0 G +[1 0 0 1 -96.195 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +96.195 698.082 Td +/F130_0 9.963 Tf +(BZ2_bzRead) 59.778 Tj +[1 0 0 1 155.971 698.082] cm +0 g +0 G +[1 0 0 1 -155.971 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +158.586 698.082 Td +/F128_0 9.963 Tf +(returns) 27.6673 Tj +[1 0 0 1 188.868 698.082] cm +0 g +0 G +[1 0 0 1 -188.868 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +188.868 698.082 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 266.577 698.082] cm +0 g +0 G +[1 0 0 1 -266.577 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +266.577 698.082 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-263 TJm +(c) 4.42357 Tj +1 TJm +(all) 9.963 Tj +[1 0 0 1 288.685 698.082] cm +0 g +0 G +[1 0 0 1 -288.685 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +288.685 698.082 Td +/F130_0 9.963 Tf +(BZ2_bzReadGetUnused) 113.578 Tj +[1 0 0 1 402.259 698.082] cm +0 g +0 G +[1 0 0 1 -402.259 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +404.875 698.082 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-262 TJm +(collect) 26.5614 Tj +-263 TJm +(the) 12.1748 Tj +-262 TJm +(unused) 28.2252 Tj +-263 TJm +(data) 16.5984 Tj +-262 TJm +(\(cop) 17.7043 Tj +10 TJm +(y) 4.9815 Tj +-263 TJm +(it) 5.53943 Tj +72 686.127 Td +(into) 15.5024 Tj +-265 TJm +(your) 18.2622 Tj +-265 TJm +(o) 4.9815 Tj +25 TJm +(wn) 12.1748 Tj +-265 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-265 TJm +(some) 21.0319 Tj +25 TJm +(where\).) 30.148 Tj +-710 TJm +(That) 18.2622 Tj +-265 TJm +(data) 16.5984 Tj +-265 TJm +(forms) 23.2437 Tj +-265 TJm +(the) 12.1748 Tj +-265 TJm +(start) 17.1563 Tj +-265 TJm +(of) 8.29918 Tj +-265 TJm +(the) 12.1748 Tj +-265 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-265 TJm +(compressed) 47.0353 Tj +-265 TJm +(stream.) 29.0521 Tj +-710 TJm +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-265 TJm +(start) 17.1563 Tj +-265 TJm +(uncompressing) 60.326 Tj +72 674.172 Td +(that) 14.9445 Tj +-246 TJm +(ne) 9.40507 Tj +15 TJm +(xt) 7.75121 Tj +-246 TJm +(stream,) 29.0521 Tj +-247 TJm +(call) 14.3866 Tj +[1 0 0 1 157.205 674.172] cm +0 g +0 G +[1 0 0 1 -157.205 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +157.205 674.172 Td +/F130_0 9.963 Tf +(BZ2_bzReadOpen) 83.6892 Tj +[1 0 0 1 240.891 674.172] cm +0 g +0 G +[1 0 0 1 -240.891 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +243.344 674.172 Td +/F128_0 9.963 Tf +(ag) 9.40507 Tj +5 TJm +(ain,) 14.6655 Tj +-247 TJm +(feeding) 29.879 Tj +-246 TJm +(in) 7.75121 Tj +-246 TJm +(the) 12.1748 Tj +-246 TJm +(unused) 28.2252 Tj +-246 TJm +(data) 16.5984 Tj +-246 TJm +(via) 12.1748 Tj +-247 TJm +(the) 12.1748 Tj +[1 0 0 1 405.967 674.172] cm +0 g +0 G +[1 0 0 1 -405.967 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +405.967 674.172 Td +/F130_0 9.963 Tf +(unused) 35.8668 Tj +[1 0 0 1 441.833 674.172] cm +0 g +0 G +[1 0 0 1 -441.833 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +444.286 674.172 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 449.508 674.172] cm +0 g +0 G +[1 0 0 1 -449.508 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +449.508 674.172 Td +/F130_0 9.963 Tf +(nUnused) 41.8446 Tj +[1 0 0 1 491.351 674.172] cm +0 g +0 G +[1 0 0 1 -491.351 -674.172] cm +[1 0 0 1 0 0] Tm +0 0 Td +493.804 674.172 Td +/F128_0 9.963 Tf +(parameters.) 46.1984 Tj +72 662.217 Td +(K) 7.19329 Tj +25 TJm +(eep) 13.8286 Tj +-263 TJm +(doing) 22.6957 Tj +-263 TJm +(this) 14.3965 Tj +-263 TJm +(until) 18.2721 Tj +[1 0 0 1 158.622 662.217] cm +0 g +0 G +[1 0 0 1 -158.622 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +158.622 662.217 Td +/F130_0 9.963 Tf +(BZ_STREAM_END) 77.7114 Tj +[1 0 0 1 236.33 662.217] cm +0 g +0 G +[1 0 0 1 -236.33 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +238.952 662.217 Td +/F128_0 9.963 Tf +(return) 23.7916 Tj +-263 TJm +(coincides) 37.6303 Tj +-263 TJm +(with) 17.7142 Tj +-263 TJm +(the) 12.1748 Tj +-263 TJm +(ph) 9.963 Tj +5 TJm +(ysical) 23.2437 Tj +-263 TJm +(end) 14.3866 Tj +-263 TJm +(of) 8.29918 Tj +-264 TJm +(\002le) 12.7327 Tj +-263 TJm +(\() 3.31768 Tj +[1 0 0 1 423.125 662.217] cm +0 g +0 G +[1 0 0 1 -423.125 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +423.125 662.217 Td +/F130_0 9.963 Tf +(feof\(f\)) 41.8446 Tj +[1 0 0 1 464.968 662.217] cm +0 g +0 G +[1 0 0 1 -464.968 -662.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +464.968 662.217 Td +/F128_0 9.963 Tf +(\).) 5.80843 Tj +-699 TJm +(In) 8.29918 Tj +-263 TJm +(this) 14.3965 Tj +-263 TJm +(situation) 34.3225 Tj +[1 0 0 1 72 650.262] cm +0 g +0 G +[1 0 0 1 -72 -650.262] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 650.262 Td +/F130_0 9.963 Tf +(BZ2_bzReadGetUnused) 113.578 Tj +[1 0 0 1 185.574 650.262] cm +0 g +0 G +[1 0 0 1 -185.574 -650.262] cm +[1 0 0 1 0 0] Tm +0 0 Td +188.065 650.262 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(course) 26.0034 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(no) 9.963 Tj +-250 TJm +(data) 16.5984 Tj +1 TJm +(.) 2.49075 Tj +[1 0 0 1 72 649.096] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -639.133] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 628.344 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-240 TJm +(should) 26.5713 Tj +-241 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-240 TJm +(some) 21.0319 Tj +-240 TJm +(feel) 14.9345 Tj +-241 TJm +(for) 11.6169 Tj +-240 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-240 TJm +(the) 12.1748 Tj +-241 TJm +(high-le) 28.2252 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-240 TJm +(interf) 21.5799 Tj +10 TJm +(ace) 13.2707 Tj +-240 TJm +(can) 13.8286 Tj +-241 TJm +(be) 9.40507 Tj +-240 TJm +(used.) 20.7529 Tj +-614 TJm +(If) 6.63536 Tj +-240 TJm +(you) 14.9445 Tj +-240 TJm +(require) 28.2152 Tj +-241 TJm +(e) 4.42357 Tj +15 TJm +(xtra) 15.4925 Tj +-240 TJm +(\003e) 9.963 Tj +15 TJm +(xibility) 28.7931 Tj +65 TJm +(,) 2.49075 Tj +-242 TJm +(you') 18.2622 Tj +10 TJm +(ll) 5.53943 Tj +-241 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-240 TJm +(to) 7.75121 Tj +72 616.389 Td +(bite) 14.9445 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ullet) 17.7142 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(get) 12.1748 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(grip) 16.0504 Tj +1 TJm +(s) 3.87561 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(lo) 7.75121 Tj +25 TJm +(w-le) 17.7043 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace.) 15.7615 Tj +[1 0 0 1 72 614.232] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -604.269] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 585.767 Td +/F121_0 17.215 Tf +(3.4.9.) 43.0719 Tj +-278 TJm +(Standar) 64.0914 Tj +20 TJm +(d) 10.5184 Tj +-278 TJm +(\002le-reading/writing) 154.005 Tj +-278 TJm +(code) 40.1798 Tj +[1 0 0 1 72 581.937] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -571.974] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 563.85 Td +/F128_0 9.963 Tf +(Here') 22.6758 Tj +55 TJm +(s) 3.87561 Tj +-250 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(you') 18.2622 Tj +50 TJm +(d) 4.9815 Tj +-250 TJm +(write) 20.474 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(to) 7.75121 Tj +-249 TJm +(a) 4.42357 Tj +-250 TJm +(compressed) 47.0353 Tj +-250 TJm +(\002le:) 15.5024 Tj +[1 0 0 1 72 561.693] cm +0 g +0 G +[1 0 0 1 0 -371.607] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 370.61 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 367.023] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -552.328] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 552.328 Td +/F130_0 9.963 Tf +(FILE*) 29.889 Tj +-1278 TJm +(f;) 11.9556 Tj +90 540.373 Td +(BZFILE*) 41.8446 Tj +-426 TJm +(b;) 11.9556 Tj +90 528.418 Td +(int) 17.9334 Tj +-2130 TJm +(nBuf;) 29.889 Tj +90 516.462 Td +(char) 23.9112 Tj +-1704 TJm +(buf[) 23.9112 Tj +-426 TJm +(/*) 11.9556 Tj +-426 TJm +(whatever) 47.8224 Tj +-425 TJm +(size) 23.9112 Tj +-426 TJm +(you) 17.9334 Tj +-426 TJm +(like) 23.9112 Tj +-426 TJm +(*/) 11.9556 Tj +-426 TJm +(];) 11.9556 Tj +90 504.507 Td +(int) 17.9334 Tj +-2130 TJm +(bzerror;) 47.8224 Tj +90 492.552 Td +(int) 17.9334 Tj +-2130 TJm +(nWritten;) 53.8002 Tj +90 468.642 Td +(f) 5.9778 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(fopen) 29.889 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +("myfile.bz2") 71.7336 Tj +1 TJm +(,) 5.9778 Tj +-426 TJm +("w") 17.9334 Tj +-426 TJm +(\);) 11.9556 Tj +90 456.687 Td +(if) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(!f) 11.9556 Tj +-426 TJm +(\)) 5.9778 Tj +-426 TJm +({) 5.9778 Tj +94.244 444.731 Td +(/*) 11.9556 Tj +-426 TJm +(handle) 35.8668 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(*/) 11.9556 Tj +90 432.776 Td +(}) 5.9778 Tj +90 420.821 Td +(b) 5.9778 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ2_bzWriteOpen\() 95.6448 Tj +-426 TJm +(&bze) 23.9112 Tj +1 TJm +(rror,) 29.889 Tj +-426 TJm +(f,) 11.9556 Tj +-426 TJm +(9) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +90 408.866 Td +(if) 11.9556 Tj +-426 TJm +(\(bzerror) 47.8224 Tj +-426 TJm +(!=) 11.9556 Tj +-426 TJm +(BZ_OK\)) 35.8668 Tj +-426 TJm +({) 5.9778 Tj +94.244 396.911 Td +(BZ2_bzWriteClose) 95.6448 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +94.244 384.955 Td +(/*) 11.9556 Tj +-426 TJm +(handle) 35.8668 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(*/) 11.9556 Tj +90 373 Td +(}) 5.9778 Tj +90 349.09 Td +(while) 29.889 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(/*) 11.9556 Tj +-426 TJm +(condition) 53.8002 Tj +-426 TJm +(*/) 11.9556 Tj +-425 TJm +(\)) 5.9778 Tj +-426 TJm +({) 5.9778 Tj +94.244 337.135 Td +(/*) 11.9556 Tj +-426 TJm +(get) 17.9334 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(to) 11.9556 Tj +-426 TJm +(write) 29.889 Tj +-426 TJm +(int) 17.9334 Tj +1 TJm +(o) 5.9778 Tj +-426 TJm +(buf,) 23.9112 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(set) 17.9334 Tj +-426 TJm +(nBuf) 23.9112 Tj +-426 TJm +(appropriately) 77.7114 Tj +-426 TJm +(*/) 11.9556 Tj +94.244 325.18 Td +(nWritten) 47.8224 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ2_bzWrite) 65.7558 Tj +-426 TJm +(\() 5.9778 Tj +-425 TJm +(&bzerror,) 53.8002 Tj +-426 TJm +(b,) 11.9556 Tj +-426 TJm +(buf,) 23.9112 Tj +-426 TJm +(nBuf) 23.9112 Tj +-426 TJm +(\);) 11.9556 Tj +94.244 313.224 Td +(if) 11.9556 Tj +-426 TJm +(\(bzerror) 47.8224 Tj +-426 TJm +(==) 11.9556 Tj +-426 TJm +(BZ_IO_ERRO) 59.778 Tj +1 TJm +(R\)) 11.9556 Tj +-426 TJm +({) 5.9778 Tj +102.732 301.269 Td +(BZ2_bzWriteClose) 95.6448 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(&bzerr) 35.8668 Tj +1 TJm +(or,) 17.9334 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +102.732 289.314 Td +(/*) 11.9556 Tj +-426 TJm +(handle) 35.8668 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(*/) 11.9556 Tj +94.244 277.359 Td +(}) 5.9778 Tj +90 265.404 Td +(}) 5.9778 Tj +90 241.493 Td +(BZ2_bzWriteClose\() 101.623 Tj +-426 TJm +(&bzerro) 41.8446 Tj +1 TJm +(r,) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +90 229.538 Td +(if) 11.9556 Tj +-426 TJm +(\(bzerror) 47.8224 Tj +-426 TJm +(==) 11.9556 Tj +-426 TJm +(BZ_IO_ERRO) 59.778 Tj +1 TJm +(R\)) 11.9556 Tj +-426 TJm +({) 5.9778 Tj +94.244 217.583 Td +(/*) 11.9556 Tj +-426 TJm +(handle) 35.8668 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(*/) 11.9556 Tj +90 205.628 Td +(}) 5.9778 Tj +[1 0 0 1 72 190.086] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -180.124] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 168.168 Td +/F128_0 9.963 Tf +(And) 17.1563 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(read) 17.1463 Tj +-250 TJm +(from) 19.3681 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(compresse) 42.0538 Tj +1 TJm +(d) 4.9815 Tj +-250 TJm +(\002le:) 15.5024 Tj +[1 0 0 1 72 166.012] cm +0 g +0 G +[1 0 0 1 0 -115.16] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(25) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 29 29 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -392.164] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 370.61 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 367.024] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(FILE*) 29.889 Tj +-1278 TJm +(f;) 11.9556 Tj +90 699.676 Td +(BZFILE*) 41.8446 Tj +-426 TJm +(b;) 11.9556 Tj +90 687.721 Td +(int) 17.9334 Tj +-2130 TJm +(nBuf;) 29.889 Tj +90 675.766 Td +(char) 23.9112 Tj +-1704 TJm +(buf[) 23.9112 Tj +-426 TJm +(/*) 11.9556 Tj +-426 TJm +(whatever) 47.8224 Tj +-425 TJm +(size) 23.9112 Tj +-426 TJm +(you) 17.9334 Tj +-426 TJm +(like) 23.9112 Tj +-426 TJm +(*/) 11.9556 Tj +-426 TJm +(];) 11.9556 Tj +90 663.811 Td +(int) 17.9334 Tj +-2130 TJm +(bzerror;) 47.8224 Tj +90 651.856 Td +(int) 17.9334 Tj +-2130 TJm +(nWritten;) 53.8002 Tj +90 627.945 Td +(f) 5.9778 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(fopen) 29.889 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +("myfile.bz2") 71.7336 Tj +1 TJm +(,) 5.9778 Tj +-426 TJm +("r") 17.9334 Tj +-426 TJm +(\);) 11.9556 Tj +90 615.99 Td +(if) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(!f) 11.9556 Tj +-426 TJm +(\)) 5.9778 Tj +-426 TJm +({) 5.9778 Tj +98.488 604.035 Td +(/*) 11.9556 Tj +-426 TJm +(handle) 35.8668 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(*/) 11.9556 Tj +90 592.08 Td +(}) 5.9778 Tj +90 580.125 Td +(b) 5.9778 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ2_bzReadOpen) 83.6892 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(&bz) 17.9334 Tj +1 TJm +(error,) 35.8668 Tj +-426 TJm +(f,) 11.9556 Tj +-426 TJm +(0,) 11.9556 Tj +-426 TJm +(NULL,) 29.889 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +90 568.169 Td +(if) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(!=) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +-426 TJm +(\)) 5.9778 Tj +-425 TJm +({) 5.9778 Tj +98.488 556.214 Td +(BZ2_bzReadClose) 89.667 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(&bzerro) 41.8446 Tj +1 TJm +(r,) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +98.488 544.259 Td +(/*) 11.9556 Tj +-426 TJm +(handle) 35.8668 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(*/) 11.9556 Tj +90 532.304 Td +(}) 5.9778 Tj +90 508.393 Td +(bzerror) 41.8446 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ_OK;) 35.8668 Tj +90 496.438 Td +(while) 29.889 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(==) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +-425 TJm +(&&) 11.9556 Tj +-426 TJm +(/*) 11.9556 Tj +-426 TJm +(arbitrary) 53.8002 Tj +-426 TJm +(other) 29.889 Tj +-426 TJm +(conditions) 59.778 Tj +-426 TJm +(*/\)) 17.9334 Tj +-426 TJm +({) 5.9778 Tj +98.488 484.483 Td +(nBuf) 23.9112 Tj +-426 TJm +(=) 5.9778 Tj +-426 TJm +(BZ2_bzRead) 59.778 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(&bze) 23.9112 Tj +1 TJm +(rror,) 29.889 Tj +-426 TJm +(b,) 11.9556 Tj +-426 TJm +(buf,) 23.9112 Tj +-426 TJm +(/*) 11.9556 Tj +-426 TJm +(size) 23.9112 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(buf) 17.9334 Tj +-426 TJm +(*/) 11.9556 Tj +-426 TJm +(\);) 11.9556 Tj +98.488 472.528 Td +(if) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(==) 11.9556 Tj +-426 TJm +(BZ_OK) 29.889 Tj +-426 TJm +(\)) 5.9778 Tj +-425 TJm +({) 5.9778 Tj +106.976 460.573 Td +(/*) 11.9556 Tj +-426 TJm +(do) 11.9556 Tj +-426 TJm +(something) 53.8002 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(buf) 17.9334 Tj +1 TJm +([0) 11.9556 Tj +-426 TJm +(..) 11.9556 Tj +-426 TJm +(nBuf-1]) 41.8446 Tj +-426 TJm +(*/) 11.9556 Tj +98.488 448.618 Td +(}) 5.9778 Tj +90 436.662 Td +(}) 5.9778 Tj +90 424.707 Td +(if) 11.9556 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(bzerror) 41.8446 Tj +-426 TJm +(!=) 11.9556 Tj +-426 TJm +(BZ_STREAM) 53.8002 Tj +1 TJm +(_END) 23.9112 Tj +-426 TJm +(\)) 5.9778 Tj +-426 TJm +({) 5.9778 Tj +102.732 412.752 Td +(BZ2_bzReadClose) 89.667 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(&bzerro) 41.8446 Tj +1 TJm +(r,) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +102.732 400.797 Td +(/*) 11.9556 Tj +-426 TJm +(handle) 35.8668 Tj +-426 TJm +(error) 29.889 Tj +-426 TJm +(*/) 11.9556 Tj +90 388.842 Td +(}) 5.9778 Tj +-426 TJm +(else) 23.9112 Tj +-426 TJm +({) 5.9778 Tj +102.732 376.887 Td +(BZ2_bzReadClose) 89.667 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(&bzerro) 41.8446 Tj +1 TJm +(r) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +90 364.931 Td +(}) 5.9778 Tj +[1 0 0 1 72 349.39] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -339.427] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 314.637 Td +/F121_0 20.659 Tf +(3.5.) 34.4592 Tj +-278 TJm +(Utility) 57.3907 Tj +-278 TJm +(functions) 92.9655 Tj +[1 0 0 1 72 310.361] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -300.398] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 284.016 Td +/F121_0 17.215 Tf +(3.5.1.) 43.0719 Tj +[1 0 0 1 119.858 284.016] cm +0 g +0 G +[1 0 0 1 -119.858 -284.016] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 284.016 Td +/F387_0 17.215 Tf +(BZ2_bzBuffToBuffCompress) 247.896 Tj +[1 0 0 1 367.76 284.016] cm +0 g +0 G +[1 0 0 1 -295.76 -2.333] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -96.638] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 95.641 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 92.055] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -272.318] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 272.318 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzBuffToBuffCompr) 125.534 Tj +1 TJm +(ess\() 23.9112 Tj +-426 TJm +(char*) 29.889 Tj +-3834 TJm +(dest,) 29.889 Tj +217.319 260.363 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(destLen,) 47.8224 Tj +217.319 248.408 Td +(char*) 29.889 Tj +-3834 TJm +(source,) 41.8446 Tj +217.319 236.453 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-852 TJm +(sourceLen,) 59.778 Tj +217.319 224.498 Td +(int) 17.9334 Tj +-4686 TJm +(blockSize) 53.8002 Tj +1 TJm +(100k,) 29.889 Tj +217.319 212.542 Td +(int) 17.9334 Tj +-4686 TJm +(verbosity) 53.8002 Tj +1 TJm +(,) 5.9778 Tj +217.319 200.587 Td +(int) 17.9334 Tj +-4686 TJm +(workFacto) 53.8002 Tj +1 TJm +(r) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 185.045] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -175.083] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 163.128 Td +/F128_0 9.963 Tf +(Attempts) 36.5343 Tj +-442 TJm +(to) 7.75121 Tj +-442 TJm +(compress) 37.6303 Tj +-442 TJm +(the) 12.1748 Tj +-442 TJm +(data) 16.5984 Tj +-443 TJm +(in) 7.75121 Tj +[1 0 0 1 216.87 163.128] cm +0 g +0 G +[1 0 0 1 -216.87 -163.128] cm +[1 0 0 1 0 0] Tm +0 0 Td +216.87 163.128 Td +/F130_0 9.963 Tf +(source[0) 47.8224 Tj +-600 TJm +(..) 11.9556 Tj +-1200 TJm +(sourceLen-1]) 71.7336 Tj +[1 0 0 1 366.309 163.128] cm +0 g +0 G +[1 0 0 1 -366.309 -163.128] cm +[1 0 0 1 0 0] Tm +0 0 Td +370.715 163.128 Td +/F128_0 9.963 Tf +(into) 15.5024 Tj +-442 TJm +(the) 12.1748 Tj +-442 TJm +(destination) 43.7276 Tj +-442 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +40 TJm +(,) 2.49075 Tj +[1 0 0 1 486.202 163.128] cm +0 g +0 G +[1 0 0 1 -486.202 -163.128] cm +[1 0 0 1 0 0] Tm +0 0 Td +486.202 163.128 Td +/F130_0 9.963 Tf +(dest[0) 35.8668 Tj +-600 TJm +(..) 11.9556 Tj +72 151.173 Td +(*destLen-1]) 65.7558 Tj +[1 0 0 1 137.753 151.173] cm +0 g +0 G +[1 0 0 1 -137.753 -151.173] cm +[1 0 0 1 0 0] Tm +0 0 Td +137.753 151.173 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1393 TJm +(If) 6.63536 Tj +-379 TJm +(the) 12.1748 Tj +-379 TJm +(destinat) 30.9949 Tj +1 TJm +(ion) 12.7327 Tj +-379 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-379 TJm +(is) 6.64532 Tj +-379 TJm +(big) 12.7327 Tj +-379 TJm +(enoug) 24.3496 Tj +1 TJm +(h,) 7.47225 Tj +[1 0 0 1 318.487 151.173] cm +0 g +0 G +[1 0 0 1 -318.487 -151.173] cm +[1 0 0 1 0 0] Tm +0 0 Td +318.487 151.173 Td +/F130_0 9.963 Tf +(*destLen) 47.8224 Tj +[1 0 0 1 366.307 151.173] cm +0 g +0 G +[1 0 0 1 -366.307 -151.173] cm +[1 0 0 1 0 0] Tm +0 0 Td +370.082 151.173 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-379 TJm +(set) 11.0689 Tj +-379 TJm +(t) 2.76971 Tj +1 TJm +(o) 4.9815 Tj +-379 TJm +(the) 12.1748 Tj +-379 TJm +(size) 15.4925 Tj +-379 TJm +(of) 8.29918 Tj +-379 TJm +(the) 12.1748 Tj +-378 TJm +(compressed) 47.0353 Tj +-379 TJm +(data,) 19.0891 Tj +72 139.217 Td +(and) 14.3866 Tj +[1 0 0 1 89.527 139.217] cm +0 g +0 G +[1 0 0 1 -89.527 -139.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +89.527 139.217 Td +/F130_0 9.963 Tf +(BZ_OK) 29.889 Tj +[1 0 0 1 119.415 139.217] cm +0 g +0 G +[1 0 0 1 -119.415 -139.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +122.556 139.217 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-315 TJm +(returned.) 35.6875 Tj +-1012 TJm +(If) 6.63536 Tj +-315 TJm +(the) 12.1748 Tj +-315 TJm +(compressed) 47.0353 Tj +-316 TJm +(da) 9.40507 Tj +1 TJm +(ta) 7.19329 Tj +-316 TJm +(w) 7.19329 Tj +10 TJm +(on') 13.2807 Tj +18 TJm +(t) 2.76971 Tj +-315 TJm +(\002t,) 10.7999 Tj +[1 0 0 1 313.323 139.217] cm +0 g +0 G +[1 0 0 1 -313.323 -139.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +313.323 139.217 Td +/F130_0 9.963 Tf +(*destLen) 47.8224 Tj +[1 0 0 1 361.143 139.217] cm +0 g +0 G +[1 0 0 1 -361.143 -139.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +364.285 139.217 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-315 TJm +(unchanged,) 45.6505 Tj +-332 TJm +(and) 14.3866 Tj +[1 0 0 1 440.551 139.217] cm +0 g +0 G +[1 0 0 1 -440.551 -139.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +440.551 139.217 Td +/F130_0 9.963 Tf +(BZ_OUTBUFF_FULL) 89.667 Tj +[1 0 0 1 530.214 139.217] cm +0 g +0 G +[1 0 0 1 -530.214 -139.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +533.355 139.217 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +72 127.262 Td +(returned.) 35.6875 Tj +[1 0 0 1 72 127.163] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -117.2] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 105.344 Td +/F128_0 9.963 Tf +(Compression) 52.5847 Tj +-297 TJm +(in) 7.75121 Tj +-297 TJm +(this) 14.3965 Tj +-297 TJm +(manner) 29.879 Tj +-297 TJm +(is) 6.64532 Tj +-297 TJm +(a) 4.42357 Tj +-297 TJm +(one-shot) 34.3126 Tj +-297 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ent,) 14.6655 Tj +-308 TJm +(done) 19.3681 Tj +-297 TJm +(with) 17.7142 Tj +-297 TJm +(a) 4.42357 Tj +-297 TJm +(single) 23.8016 Tj +-297 TJm +(call) 14.3866 Tj +-297 TJm +(to) 7.75121 Tj +-297 TJm +(this) 14.3965 Tj +-297 TJm +(function.) 35.6974 Tj +-902 TJm +(The) 15.4925 Tj +-297 TJm +(resulting) 34.8705 Tj +-297 TJm +(compressed) 47.0353 Tj +72 93.389 Td +(data) 16.5984 Tj +-296 TJm +(is) 6.64532 Tj +-296 TJm +(a) 4.42357 Tj +-296 TJm +(complete) 36.5244 Tj +[1 0 0 1 147.987 93.389] cm +0 g +0 G +[1 0 0 1 -147.987 -93.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +147.987 93.389 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 177.875 93.389] cm +0 g +0 G +[1 0 0 1 -177.875 -93.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +180.825 93.389 Td +/F128_0 9.963 Tf +(format) 26.5614 Tj +-296 TJm +(data) 16.5984 Tj +-296 TJm +(stream.) 29.0521 Tj +-896 TJm +(There) 23.2337 Tj +-296 TJm +(is) 6.64532 Tj +-296 TJm +(no) 9.963 Tj +-296 TJm +(mechanism) 45.3815 Tj +-296 TJm +(for) 11.6169 Tj +-296 TJm +(making) 29.889 Tj +-296 TJm +(additional) 39.852 Tj +-296 TJm +(calls) 18.2622 Tj +-296 TJm +(to) 7.75121 Tj +-296 TJm +(pro) 13.2807 Tj +15 TJm +(vide) 17.1563 Tj +-296 TJm +(e) 4.42357 Tj +15 TJm +(xtra) 15.4925 Tj +72 81.434 Td +(input) 20.4839 Tj +-250 TJm +(data.) 19.0891 Tj +-620 TJm +(If) 6.63536 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(k) 4.9815 Tj +1 TJm +(ind) 12.7327 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(mechanism,) 47.8722 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(lo) 7.75121 Tj +25 TJm +(w-le) 17.7043 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(el) 7.19329 Tj +-250 TJm +(interf) 21.5799 Tj +10 TJm +(ace.) 15.7615 Tj +[1 0 0 1 72 79.277] cm +0 g +0 G +[1 0 0 1 0 -28.425] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(26) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 30 30 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -21.554] cm +0 g +0 G +[1 0 0 1 -72 -720] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-223 TJm +(the) 12.1748 Tj +-224 TJm +(meaning) 34.3126 Tj +-223 TJm +(of) 8.29918 Tj +-223 TJm +(parameters) 43.7077 Tj +[1 0 0 1 195.306 710.037] cm +0 g +0 G +[1 0 0 1 -195.306 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +195.306 710.037 Td +/F130_0 9.963 Tf +(blockSize100k) 77.7114 Tj +[1 0 0 1 273.015 710.037] cm +0 g +0 G +[1 0 0 1 -273.015 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +273.015 710.037 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 277.784 710.037] cm +0 g +0 G +[1 0 0 1 -277.784 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +277.784 710.037 Td +/F130_0 9.963 Tf +(verbosity) 53.8002 Tj +[1 0 0 1 331.583 710.037] cm +0 g +0 G +[1 0 0 1 -331.583 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +333.808 710.037 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 350.42 710.037] cm +0 g +0 G +[1 0 0 1 -350.42 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +350.42 710.037 Td +/F130_0 9.963 Tf +(workFactor) 59.778 Tj +[1 0 0 1 410.196 710.037] cm +0 g +0 G +[1 0 0 1 -410.196 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +410.196 710.037 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-229 TJm +(see) 12.7228 Tj +[1 0 0 1 429.913 710.037] cm +0 g +0 G +[1 0 0 1 -429.913 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +429.913 710.037 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 537.509 710.037] cm +0 g +0 G +[1 0 0 1 -537.509 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +537.509 710.037 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 707.881] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -697.918] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 688.12 Td +/F128_0 9.963 Tf +(T) 6.08739 Tj +80 TJm +(o) 4.9815 Tj +-410 TJm +(guarantee) 38.7262 Tj +-410 TJm +(that) 14.9445 Tj +-410 TJm +(the) 12.1748 Tj +-410 TJm +(compressed) 47.0353 Tj +-410 TJm +(data) 16.5984 Tj +-410 TJm +(will) 15.5024 Tj +-410 TJm +(\002) 5.53943 Tj +1 TJm +(t) 2.76971 Tj +-411 TJm +(i) 2.76971 Tj +1 TJm +(n) 4.9815 Tj +-411 TJm +(i) 2.76971 Tj +1 TJm +(ts) 6.64532 Tj +-410 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +40 TJm +(,) 2.49075 Tj +-450 TJm +(allocate) 30.9849 Tj +-410 TJm +(an) 9.40507 Tj +-410 TJm +(output) 25.4654 Tj +-410 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-410 TJm +(of) 8.29918 Tj +-410 TJm +(size) 15.4925 Tj +-410 TJm +(1%) 13.2807 Tj +-410 TJm +(lar) 10.511 Tj +18 TJm +(ger) 12.7228 Tj +-410 TJm +(than) 17.1563 Tj +-410 TJm +(the) 12.1748 Tj +72 676.164 Td +(uncompressed) 56.9983 Tj +-250 TJm +(data,) 19.0891 Tj +-250 TJm +(plus) 16.6083 Tj +-250 TJm +(six) 11.6268 Tj +-249 TJm +(hundred) 32.6488 Tj +-250 TJm +(e) 4.42357 Tj +15 TJm +(xtra) 15.4925 Tj +-250 TJm +(bytes.) 23.5226 Tj +[1 0 0 1 72 674.008] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -664.045] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 654.247 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffDecompress) 155.423 Tj +[1 0 0 1 227.417 654.247] cm +0 g +0 G +[1 0 0 1 -227.417 -654.247] cm +[1 0 0 1 0 0] Tm +0 0 Td +230.553 654.247 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-315 TJm +(not) 12.7327 Tj +-314 TJm +(write) 20.474 Tj +-315 TJm +(data) 16.5984 Tj +-315 TJm +(at) 7.19329 Tj +-315 TJm +(or) 8.29918 Tj +-314 TJm +(be) 9.40507 Tj +15 TJm +(yond) 19.926 Tj +[1 0 0 1 362.484 654.247] cm +0 g +0 G +[1 0 0 1 -362.484 -654.247] cm +[1 0 0 1 0 0] Tm +0 0 Td +362.484 654.247 Td +/F130_0 9.963 Tf +(dest[*destLen]) 83.6892 Tj +[1 0 0 1 446.17 654.247] cm +0 g +0 G +[1 0 0 1 -446.17 -654.247] cm +[1 0 0 1 0 0] Tm +0 0 Td +446.17 654.247 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-331 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-315 TJm +(in) 7.75121 Tj +-314 TJm +(case) 17.1463 Tj +-315 TJm +(of) 8.29918 Tj +-315 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +72 642.291 Td +(o) 4.9815 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(er\003o) 18.2622 Tj +25 TJm +(w) 7.19329 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 642.192] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -632.229] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 620.374 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 620.274] cm +0 g +0 G +[1 0 0 1 0 -168.369] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 167.372 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 163.786] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -610.909] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 610.909 Td +/F130_0 9.963 Tf +(BZ_CONFIG_ERROR) 89.667 Tj +98.488 598.954 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(library) 41.8446 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-425 TJm +(mis-compiled) 71.7336 Tj +90 586.999 Td +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 575.044 Td +(if) 11.9556 Tj +-426 TJm +(dest) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(destL) 29.889 Tj +1 TJm +(en) 11.9556 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +98.488 563.088 Td +(or) 11.9556 Tj +-426 TJm +(blockSize100k) 77.7114 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(1) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-425 TJm +(blockSize100k) 77.7114 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(9) 5.9778 Tj +98.488 551.133 Td +(or) 11.9556 Tj +-426 TJm +(verbosity) 53.8002 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(verb) 23.9112 Tj +1 TJm +(osity) 29.889 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(4) 5.9778 Tj +98.488 539.178 Td +(or) 11.9556 Tj +-426 TJm +(workFactor) 59.778 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(wor) 17.9334 Tj +1 TJm +(kFactor) 41.8446 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(250) 17.9334 Tj +90 527.223 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 515.268 Td +(if) 11.9556 Tj +-426 TJm +(insufficient) 71.7336 Tj +-426 TJm +(memory) 35.8668 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(available) 53.8002 Tj +90 503.313 Td +(BZ_OUTBUFF_FULL) 89.667 Tj +98.488 491.357 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(size) 23.9112 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compr) 29.889 Tj +1 TJm +(essed) 29.889 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(exceeds) 41.8446 Tj +-426 TJm +(*destLen) 47.8224 Tj +90 479.402 Td +(BZ_OK) 29.889 Tj +98.488 467.447 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 451.905] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -441.943] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 421.284 Td +/F121_0 17.215 Tf +(3.5.2.) 43.0719 Tj +[1 0 0 1 119.858 421.284] cm +0 g +0 G +[1 0 0 1 -119.858 -421.284] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.858 421.284 Td +/F387_0 17.215 Tf +(BZ2_bzBuffToBuffDecompress) 268.554 Tj +[1 0 0 1 388.419 421.284] cm +0 g +0 G +[1 0 0 1 -316.419 -2.332] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -84.683] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 83.686 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 80.099] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -409.587] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 409.587 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzBuffToBuffDecom) 125.534 Tj +1 TJm +(press\() 35.8668 Tj +-426 TJm +(char*) 29.889 Tj +-3834 TJm +(dest,) 29.889 Tj +225.807 397.632 Td +(unsigned) 47.8224 Tj +-426 TJm +(int*) 23.9112 Tj +-426 TJm +(destLen,) 47.8224 Tj +225.807 385.676 Td +(char*) 29.889 Tj +-3834 TJm +(source,) 41.8446 Tj +225.807 373.721 Td +(unsigned) 47.8224 Tj +-426 TJm +(int) 17.9334 Tj +-852 TJm +(sourceLen,) 59.778 Tj +225.807 361.766 Td +(int) 17.9334 Tj +-4686 TJm +(small,) 35.8668 Tj +225.807 349.811 Td +(int) 17.9334 Tj +-4686 TJm +(verbosity) 53.8002 Tj +-425 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 334.269] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -324.307] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 312.351 Td +/F128_0 9.963 Tf +(Attempts) 36.5343 Tj +-358 TJm +(to) 7.75121 Tj +-358 TJm +(decompress) 47.0353 Tj +-359 TJm +(the) 12.1748 Tj +-358 TJm +(data) 16.5984 Tj +-358 TJm +(in) 7.75121 Tj +[1 0 0 1 221.259 312.351] cm +0 g +0 G +[1 0 0 1 -221.259 -312.351] cm +[1 0 0 1 0 0] Tm +0 0 Td +221.259 312.351 Td +/F130_0 9.963 Tf +(source[0) 47.8224 Tj +-600 TJm +(..) 11.9556 Tj +-1200 TJm +(sourceLen-1) 65.7558 Tj +1 TJm +(]) 5.9778 Tj +[1 0 0 1 370.698 312.351] cm +0 g +0 G +[1 0 0 1 -370.698 -312.351] cm +[1 0 0 1 0 0] Tm +0 0 Td +374.268 312.351 Td +/F128_0 9.963 Tf +(into) 15.5024 Tj +-358 TJm +(the) 12.1748 Tj +-359 TJm +(des) 13.2807 Tj +1 TJm +(tination) 30.4469 Tj +-359 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +40 TJm +(,) 2.49075 Tj +[1 0 0 1 486.202 312.351] cm +0 g +0 G +[1 0 0 1 -486.202 -312.351] cm +[1 0 0 1 0 0] Tm +0 0 Td +486.202 312.351 Td +/F130_0 9.963 Tf +(dest[0) 35.8668 Tj +-600 TJm +(..) 11.9556 Tj +72 300.396 Td +(*destLen-1]) 65.7558 Tj +[1 0 0 1 137.753 300.396] cm +0 g +0 G +[1 0 0 1 -137.753 -300.396] cm +[1 0 0 1 0 0] Tm +0 0 Td +137.753 300.396 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1123 TJm +(If) 6.63536 Tj +-334 TJm +(the) 12.1748 Tj +-334 TJm +(destination) 43.7276 Tj +-334 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-334 TJm +(is) 6.64532 Tj +-333 TJm +(big) 12.7327 Tj +-334 TJm +(enough,) 31.8218 Tj +[1 0 0 1 312.554 300.396] cm +0 g +0 G +[1 0 0 1 -312.554 -300.396] cm +[1 0 0 1 0 0] Tm +0 0 Td +312.554 300.396 Td +/F130_0 9.963 Tf +(*destLen) 47.8224 Tj +[1 0 0 1 360.374 300.396] cm +0 g +0 G +[1 0 0 1 -360.374 -300.396] cm +[1 0 0 1 0 0] Tm +0 0 Td +363.701 300.396 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-334 TJm +(set) 11.0689 Tj +-334 TJm +(to) 7.75121 Tj +-334 TJm +(th) 7.75121 Tj +1 TJm +(e) 4.42357 Tj +-334 TJm +(size) 15.4925 Tj +-334 TJm +(of) 8.29918 Tj +-334 TJm +(the) 12.1748 Tj +-334 TJm +(uncompressed) 56.9983 Tj +-334 TJm +(d) 4.9815 Tj +1 TJm +(ata,) 14.1076 Tj +72 288.441 Td +(and) 14.3866 Tj +[1 0 0 1 89.527 288.441] cm +0 g +0 G +[1 0 0 1 -89.527 -288.441] cm +[1 0 0 1 0 0] Tm +0 0 Td +89.527 288.441 Td +/F130_0 9.963 Tf +(BZ_OK) 29.889 Tj +[1 0 0 1 119.415 288.441] cm +0 g +0 G +[1 0 0 1 -119.415 -288.441] cm +[1 0 0 1 0 0] Tm +0 0 Td +122.556 288.441 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-315 TJm +(returned.) 35.6875 Tj +-1012 TJm +(If) 6.63536 Tj +-315 TJm +(the) 12.1748 Tj +-315 TJm +(compressed) 47.0353 Tj +-316 TJm +(da) 9.40507 Tj +1 TJm +(ta) 7.19329 Tj +-316 TJm +(w) 7.19329 Tj +10 TJm +(on') 13.2807 Tj +18 TJm +(t) 2.76971 Tj +-315 TJm +(\002t,) 10.7999 Tj +[1 0 0 1 313.323 288.441] cm +0 g +0 G +[1 0 0 1 -313.323 -288.441] cm +[1 0 0 1 0 0] Tm +0 0 Td +313.323 288.441 Td +/F130_0 9.963 Tf +(*destLen) 47.8224 Tj +[1 0 0 1 361.143 288.441] cm +0 g +0 G +[1 0 0 1 -361.143 -288.441] cm +[1 0 0 1 0 0] Tm +0 0 Td +364.285 288.441 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-315 TJm +(unchanged,) 45.6505 Tj +-332 TJm +(and) 14.3866 Tj +[1 0 0 1 440.551 288.441] cm +0 g +0 G +[1 0 0 1 -440.551 -288.441] cm +[1 0 0 1 0 0] Tm +0 0 Td +440.551 288.441 Td +/F130_0 9.963 Tf +(BZ_OUTBUFF_FULL) 89.667 Tj +[1 0 0 1 530.214 288.441] cm +0 g +0 G +[1 0 0 1 -530.214 -288.441] cm +[1 0 0 1 0 0] Tm +0 0 Td +533.355 288.441 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +72 276.486 Td +(returned.) 35.6875 Tj +[1 0 0 1 72 276.386] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -266.424] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 254.568 Td +/F130_0 9.963 Tf +(source) 35.8668 Tj +[1 0 0 1 107.865 254.568] cm +0 g +0 G +[1 0 0 1 -107.865 -254.568] cm +[1 0 0 1 0 0] Tm +0 0 Td +110.981 254.568 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-313 TJm +(assumed) 34.3126 Tj +-312 TJm +(to) 7.75121 Tj +-313 TJm +(hold) 17.7142 Tj +-313 TJm +(a) 4.42357 Tj +-312 TJm +(complete) 36.5244 Tj +[1 0 0 1 237.04 254.568] cm +0 g +0 G +[1 0 0 1 -237.04 -254.568] cm +[1 0 0 1 0 0] Tm +0 0 Td +237.04 254.568 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 266.928 254.568] cm +0 g +0 G +[1 0 0 1 -266.928 -254.568] cm +[1 0 0 1 0 0] Tm +0 0 Td +270.044 254.568 Td +/F128_0 9.963 Tf +(format) 26.5614 Tj +-313 TJm +(dat) 12.1748 Tj +1 TJm +(a) 4.42357 Tj +-313 TJm +(stream.) 29.0521 Tj +[1 0 0 1 353.446 254.568] cm +0 g +0 G +[1 0 0 1 -353.446 -254.568] cm +[1 0 0 1 0 0] Tm +0 0 Td +353.446 254.568 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffDecompres) 149.445 Tj +1 TJm +(s) 5.9778 Tj +[1 0 0 1 508.863 254.568] cm +0 g +0 G +[1 0 0 1 -508.863 -254.568] cm +[1 0 0 1 0 0] Tm +0 0 Td +511.979 254.568 Td +/F128_0 9.963 Tf +(tries) 17.1563 Tj +-313 TJm +(to) 7.75121 Tj +72 242.613 Td +(decompress) 47.0353 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(entirety) 30.437 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-250 TJm +(stream) 26.5614 Tj +-250 TJm +(into) 15.5024 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(output) 25.4654 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +55 TJm +(.) 2.49075 Tj +[1 0 0 1 72 240.456] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -230.493] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 220.695 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(meaning) 34.3126 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(parameter) 39.8321 Tj +1 TJm +(s) 3.87561 Tj +[1 0 0 1 196.631 220.695] cm +0 g +0 G +[1 0 0 1 -196.631 -220.695] cm +[1 0 0 1 0 0] Tm +0 0 Td +196.631 220.695 Td +/F130_0 9.963 Tf +(small) 29.889 Tj +[1 0 0 1 226.519 220.695] cm +0 g +0 G +[1 0 0 1 -226.519 -220.695] cm +[1 0 0 1 0 0] Tm +0 0 Td +229.01 220.695 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 245.887 220.695] cm +0 g +0 G +[1 0 0 1 -245.887 -220.695] cm +[1 0 0 1 0 0] Tm +0 0 Td +245.887 220.695 Td +/F130_0 9.963 Tf +(verbosity) 53.8002 Tj +[1 0 0 1 299.685 220.695] cm +0 g +0 G +[1 0 0 1 -299.685 -220.695] cm +[1 0 0 1 0 0] Tm +0 0 Td +299.685 220.695 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(see) 12.7228 Tj +[1 0 0 1 319.879 220.695] cm +0 g +0 G +[1 0 0 1 -319.879 -220.695] cm +[1 0 0 1 0 0] Tm +0 0 Td +319.879 220.695 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressInit) 119.556 Tj +[1 0 0 1 439.431 220.695] cm +0 g +0 G +[1 0 0 1 -439.431 -220.695] cm +[1 0 0 1 0 0] Tm +0 0 Td +439.431 220.695 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 218.538] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -208.576] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 198.777 Td +/F128_0 9.963 Tf +(Because) 33.1967 Tj +-249 TJm +(the) 12.1748 Tj +-250 TJm +(compression) 50.363 Tj +-249 TJm +(ratio) 18.2622 Tj +-250 TJm +(of) 8.29918 Tj +-249 TJm +(the) 12.1748 Tj +-250 TJm +(compressed) 47.0353 Tj +-249 TJm +(data) 16.5984 Tj +-250 TJm +(canno) 23.7916 Tj +1 TJm +(t) 2.76971 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(kno) 14.9445 Tj +25 TJm +(w) 7.19329 Tj +1 TJm +(n) 4.9815 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(adv) 14.3866 Tj +25 TJm +(a) 4.42357 Tj +1 TJm +(nce,) 16.3194 Tj +-250 TJm +(there) 19.916 Tj +-250 TJm +(is) 6.64532 Tj +-249 TJm +(no) 9.963 Tj +-250 TJm +(easy) 17.7043 Tj +-249 TJm +(w) 7.19329 Tj +10 TJm +(ay) 9.40507 Tj +-250 TJm +(to) 7.75121 Tj +-249 TJm +(guarantee) 38.7262 Tj +72 186.822 Td +(that) 14.9445 Tj +-286 TJm +(the) 12.1748 Tj +-287 TJm +(output) 25.4654 Tj +-286 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +-286 TJm +(will) 15.5024 Tj +-287 TJm +(be) 9.40507 Tj +-286 TJm +(big) 12.7327 Tj +-286 TJm +(enough.) 31.8218 Tj +-839 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-286 TJm +(may) 17.1563 Tj +-286 TJm +(of) 8.29918 Tj +-287 TJm +(course) 26.0034 Tj +-286 TJm +(mak) 17.1563 Tj +10 TJm +(e) 4.42357 Tj +-286 TJm +(arrangements) 53.6707 Tj +-287 TJm +(in) 7.75121 Tj +-286 TJm +(your) 18.2622 Tj +-286 TJm +(code) 18.8101 Tj +-287 TJm +(to) 7.75121 Tj +-286 TJm +(record) 25.4455 Tj +-286 TJm +(the) 12.1748 Tj +-287 TJm +(size) 15.4925 Tj +-286 TJm +(of) 8.29918 Tj +72 174.867 Td +(the) 12.1748 Tj +-250 TJm +(uncompressed) 56.9983 Tj +-250 TJm +(data,) 19.0891 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(su) 8.85711 Tj +1 TJm +(ch) 9.40507 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(mechanism) 45.3815 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(be) 9.40507 Tj +15 TJm +(yond) 19.926 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(scope) 22.6858 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(this) 14.3965 Tj +-250 TJm +(library) 26.5614 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 172.71] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -162.747] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 152.949 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffDecompress) 155.423 Tj +[1 0 0 1 227.417 152.949] cm +0 g +0 G +[1 0 0 1 -227.417 -152.949] cm +[1 0 0 1 0 0] Tm +0 0 Td +230.553 152.949 Td +/F128_0 9.963 Tf +(will) 15.5024 Tj +-315 TJm +(not) 12.7327 Tj +-314 TJm +(write) 20.474 Tj +-315 TJm +(data) 16.5984 Tj +-315 TJm +(at) 7.19329 Tj +-315 TJm +(or) 8.29918 Tj +-314 TJm +(be) 9.40507 Tj +15 TJm +(yond) 19.926 Tj +[1 0 0 1 362.484 152.949] cm +0 g +0 G +[1 0 0 1 -362.484 -152.949] cm +[1 0 0 1 0 0] Tm +0 0 Td +362.484 152.949 Td +/F130_0 9.963 Tf +(dest[*destLen]) 83.6892 Tj +[1 0 0 1 446.17 152.949] cm +0 g +0 G +[1 0 0 1 -446.17 -152.949] cm +[1 0 0 1 0 0] Tm +0 0 Td +446.17 152.949 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-331 TJm +(e) 4.42357 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(en) 9.40507 Tj +-315 TJm +(in) 7.75121 Tj +-314 TJm +(case) 17.1463 Tj +-315 TJm +(of) 8.29918 Tj +-315 TJm +(b) 4.9815 Tj +20 TJm +(uf) 8.29918 Tj +25 TJm +(fer) 11.0589 Tj +72 140.994 Td +(o) 4.9815 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(er\003o) 18.2622 Tj +25 TJm +(w) 7.19329 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 140.894] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -130.932] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 119.076 Td +/F128_0 9.963 Tf +(Possible) 33.2166 Tj +-250 TJm +(return) 23.7916 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues:) 23.2437 Tj +[1 0 0 1 72 118.977] cm +0 g +0 G +[1 0 0 1 0 -68.125] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(27) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 31 31 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 4.384 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -352.044 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +436.124 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip) 27.6772 Tj +1 TJm +(2) 4.9815 Tj +[1 0 0 1 267.964 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -15.037 0] cm +0 g +0 G +[1 0 0 1 -468 -248.702] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 227.148 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 223.562] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -711.631] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F130_0 9.963 Tf +(BZ_CONFIG_ERROR) 89.667 Tj +98.488 699.676 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(library) 41.8446 Tj +-426 TJm +(has) 17.9334 Tj +-426 TJm +(been) 23.9112 Tj +-425 TJm +(mis-compiled) 71.7336 Tj +90 687.721 Td +(BZ_PARAM_ERROR) 83.6892 Tj +98.488 675.766 Td +(if) 11.9556 Tj +-426 TJm +(dest) 23.9112 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(destL) 29.889 Tj +1 TJm +(en) 11.9556 Tj +-426 TJm +(is) 11.9556 Tj +-426 TJm +(NULL) 23.9112 Tj +98.488 663.811 Td +(or) 11.9556 Tj +-426 TJm +(small) 29.889 Tj +-426 TJm +(!=) 11.9556 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(&&) 11.9556 Tj +-426 TJm +(small) 29.889 Tj +-426 TJm +(!) 5.9778 Tj +1 TJm +(=) 5.9778 Tj +-426 TJm +(1) 5.9778 Tj +98.488 651.856 Td +(or) 11.9556 Tj +-426 TJm +(verbosity) 53.8002 Tj +-426 TJm +(<) 5.9778 Tj +-426 TJm +(0) 5.9778 Tj +-426 TJm +(or) 11.9556 Tj +-426 TJm +(verb) 23.9112 Tj +1 TJm +(osity) 29.889 Tj +-426 TJm +(>) 5.9778 Tj +-426 TJm +(4) 5.9778 Tj +90 639.9 Td +(BZ_MEM_ERROR) 71.7336 Tj +98.488 627.945 Td +(if) 11.9556 Tj +-426 TJm +(insufficient) 71.7336 Tj +-426 TJm +(memory) 35.8668 Tj +-426 TJm +(is) 11.9556 Tj +-425 TJm +(available) 53.8002 Tj +90 615.99 Td +(BZ_OUTBUFF_FULL) 89.667 Tj +98.488 604.035 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(size) 23.9112 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compr) 29.889 Tj +1 TJm +(essed) 29.889 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(exceeds) 41.8446 Tj +-426 TJm +(*destLen) 47.8224 Tj +90 592.08 Td +(BZ_DATA_ERROR) 77.7114 Tj +98.488 580.124 Td +(if) 11.9556 Tj +-426 TJm +(a) 5.9778 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(integrity) 53.8002 Tj +-426 TJm +(erro) 23.9112 Tj +1 TJm +(r) 5.9778 Tj +-426 TJm +(was) 17.9334 Tj +-426 TJm +(detected) 47.8224 Tj +-426 TJm +(in) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(data) 23.9112 Tj +90 568.169 Td +(BZ_DATA_ERROR_MAGIC) 113.578 Tj +98.488 556.214 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(d) 5.9778 Tj +1 TJm +(oesn't) 35.8668 Tj +-426 TJm +(begin) 29.889 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(right) 29.889 Tj +-426 TJm +(magic) 29.889 Tj +-426 TJm +(bytes) 29.889 Tj +90 544.259 Td +(BZ_UNEXPECTED_EOF) 101.623 Tj +98.488 532.304 Td +(if) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(compressed) 59.778 Tj +-426 TJm +(data) 23.9112 Tj +-426 TJm +(e) 5.9778 Tj +1 TJm +(nds) 17.9334 Tj +-426 TJm +(unexpectedly) 71.7336 Tj +90 520.349 Td +(BZ_OK) 29.889 Tj +98.488 508.393 Td +(otherwise) 53.8002 Tj +[1 0 0 1 72 492.852] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -482.889] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 458.099 Td +/F121_0 20.659 Tf +(3.6.) 34.4592 Tj +[1 0 0 1 112.201 458.099] cm +0 g +0 G +[1 0 0 1 -112.201 -458.099] cm +[1 0 0 1 0 0] Tm +0 0 Td +112.201 458.099 Td +/F387_0 20.659 Tf +(zlib) 49.5816 Tj +[1 0 0 1 161.781 458.099] cm +0 g +0 G +[1 0 0 1 -161.781 -458.099] cm +[1 0 0 1 0 0] Tm +0 0 Td +167.524 458.099 Td +/F121_0 20.659 Tf +(compatibility) 127.425 Tj +-278 TJm +(functions) 92.9655 Tj +[1 0 0 1 72 453.823] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -443.86] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 436.181 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(oshioka) 30.9949 Tj +-604 TJm +(Tsuneo) 29.3311 Tj +-604 TJm +(has) 13.2807 Tj +-604 TJm +(contrib) 28.2252 Tj +20 TJm +(uted) 17.1563 Tj +-604 TJm +(some) 21.0319 Tj +-604 TJm +(funct) 20.474 Tj +1 TJm +(ions) 16.6083 Tj +-604 TJm +(to) 7.75121 Tj +-604 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-604 TJm +(better) 22.6858 Tj +[1 0 0 1 356.347 436.181] cm +0 g +0 G +[1 0 0 1 -356.347 -436.181] cm +[1 0 0 1 0 0] Tm +0 0 Td +356.347 436.181 Td +/F130_0 9.963 Tf +(zlib) 23.9112 Tj +[1 0 0 1 380.257 436.181] cm +0 g +0 G +[1 0 0 1 -380.257 -436.181] cm +[1 0 0 1 0 0] Tm +0 0 Td +386.275 436.181 Td +/F128_0 9.963 Tf +(compatibility) 53.1426 Tj +65 TJm +(.) 2.49075 Tj +-1372 TJm +(These) 23.7916 Tj +-604 TJm +(functions) 37.0823 Tj +-604 TJm +(are) 12.1648 Tj +[1 0 0 1 72 424.226] cm +0 g +0 G +[1 0 0 1 -72 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 424.226 Td +/F130_0 9.963 Tf +(BZ2_bzopen) 59.778 Tj +[1 0 0 1 131.776 424.226] cm +0 g +0 G +[1 0 0 1 -131.776 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +131.776 424.226 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 144.283 424.226] cm +0 g +0 G +[1 0 0 1 -144.283 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +144.283 424.226 Td +/F130_0 9.963 Tf +(BZ2_bzread) 59.778 Tj +[1 0 0 1 204.059 424.226] cm +0 g +0 G +[1 0 0 1 -204.059 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +204.059 424.226 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 216.567 424.226] cm +0 g +0 G +[1 0 0 1 -216.567 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +216.567 424.226 Td +/F130_0 9.963 Tf +(BZ2_bzwrite) 65.7558 Tj +[1 0 0 1 282.32 424.226] cm +0 g +0 G +[1 0 0 1 -282.32 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +282.32 424.226 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 294.827 424.226] cm +0 g +0 G +[1 0 0 1 -294.827 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +294.827 424.226 Td +/F130_0 9.963 Tf +(BZ2_bzflush) 65.7558 Tj +[1 0 0 1 360.581 424.226] cm +0 g +0 G +[1 0 0 1 -360.581 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +360.581 424.226 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 373.088 424.226] cm +0 g +0 G +[1 0 0 1 -373.088 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +373.088 424.226 Td +/F130_0 9.963 Tf +(BZ2_bzclose) 65.7558 Tj +[1 0 0 1 438.842 424.226] cm +0 g +0 G +[1 0 0 1 -438.842 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +438.842 424.226 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 451.349 424.226] cm +0 g +0 G +[1 0 0 1 -451.349 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +451.349 424.226 Td +/F130_0 9.963 Tf +(BZ2_bzerror) 65.7558 Tj +[1 0 0 1 517.102 424.226] cm +0 g +0 G +[1 0 0 1 -517.102 -424.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +525.614 424.226 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 72 412.271] cm +0 g +0 G +[1 0 0 1 -72 -412.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 412.271 Td +/F130_0 9.963 Tf +(BZ2_bzlibVersion) 95.6448 Tj +[1 0 0 1 167.641 412.271] cm +0 g +0 G +[1 0 0 1 -167.641 -412.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +167.641 412.271 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1419 TJm +(These) 23.7916 Tj +-384 TJm +(functi) 23.2437 Tj +1 TJm +(ons) 13.8386 Tj +-384 TJm +(are) 12.1648 Tj +-383 TJm +(not) 12.7327 Tj +-383 TJm +(\(yet\)) 18.8101 Tj +-383 TJm +(of) 8.29918 Tj +25 TJm +(\002cially) 27.6772 Tj +-383 TJm +(part) 15.4925 Tj +-383 TJm +(of) 8.29918 Tj +-384 TJm +(the) 12.1748 Tj +-383 TJm +(library) 26.5614 Tj +65 TJm +(.) 2.49075 Tj +-1419 TJm +(If) 6.63536 Tj +-383 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-383 TJm +(break,) 24.6186 Tj +-417 TJm +(you) 14.9445 Tj +-383 TJm +(get) 12.1748 Tj +-383 TJm +(to) 7.75121 Tj +72 400.316 Td +(k) 4.9815 Tj +10 TJm +(eep) 13.8286 Tj +-250 TJm +(all) 9.963 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(pieces.) 27.3883 Tj +-620 TJm +(Ne) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(erth) 15.4925 Tj +1 TJm +(eless,) 21.8588 Tj +-250 TJm +(I) 3.31768 Tj +-250 TJm +(think) 20.4839 Tj +-250 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ork) 13.2807 Tj +-250 TJm +(ok.) 12.4538 Tj +[1 0 0 1 72 398.159] cm +0 g +0 G +[1 0 0 1 0 -48.817] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 47.821 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 44.235] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -388.794] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 388.794 Td +/F130_0 9.963 Tf +(typedef) 41.8446 Tj +-426 TJm +(void) 23.9112 Tj +-426 TJm +(BZFILE;) 41.8446 Tj +90 364.884 Td +(const) 29.889 Tj +-426 TJm +(char) 23.9112 Tj +-426 TJm +(*) 5.9778 Tj +-426 TJm +(BZ2_bzlibVer) 71.7336 Tj +1 TJm +(sion) 23.9112 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(void) 23.9112 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 349.342] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -339.379] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 327.424 Td +/F128_0 9.963 Tf +(Returns) 30.9949 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(string) 22.6957 Tj +-250 TJm +(indicating) 39.852 Tj +-250 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-250 TJm +(library) 26.5614 Tj +-250 TJm +(v) 4.9815 Tj +15 TJm +(ersion.) 26.8403 Tj +[1 0 0 1 72 325.267] cm +0 g +0 G +[1 0 0 1 0 -36.862] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -315.902] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 315.902 Td +/F130_0 9.963 Tf +(BZFILE) 35.8668 Tj +-426 TJm +(*) 5.9778 Tj +-426 TJm +(BZ2_bzopen) 59.778 Tj +-852 TJm +(\() 5.9778 Tj +-426 TJm +(c) 5.9778 Tj +1 TJm +(onst) 23.9112 Tj +-426 TJm +(char) 23.9112 Tj +-426 TJm +(*path,) 35.8668 Tj +-426 TJm +(const) 29.889 Tj +-426 TJm +(char) 23.9112 Tj +-426 TJm +(*mode) 29.889 Tj +-426 TJm +(\);) 11.9556 Tj +90 303.947 Td +(BZFILE) 35.8668 Tj +-426 TJm +(*) 5.9778 Tj +-426 TJm +(BZ2_bzdopen) 65.7558 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(i) 5.9778 Tj +1 TJm +(nt) 11.9556 Tj +-3408 TJm +(fd,) 17.9334 Tj +-1704 TJm +(const) 29.889 Tj +-426 TJm +(char) 23.9112 Tj +-426 TJm +(*mode) 29.889 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 288.405] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -278.443] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 266.488 Td +/F128_0 9.963 Tf +(Opens) 25.4555 Tj +-243 TJm +(a) 4.42357 Tj +[1 0 0 1 106.713 266.488] cm +0 g +0 G +[1 0 0 1 -106.713 -266.488] cm +[1 0 0 1 0 0] Tm +0 0 Td +106.713 266.488 Td +/F130_0 9.963 Tf +(.bz2) 23.9112 Tj +[1 0 0 1 130.624 266.488] cm +0 g +0 G +[1 0 0 1 -130.624 -266.488] cm +[1 0 0 1 0 0] Tm +0 0 Td +133.041 266.488 Td +/F128_0 9.963 Tf +(\002le) 12.7327 Tj +-243 TJm +(for) 11.6169 Tj +-242 TJm +(reading) 29.879 Tj +-243 TJm +(or) 8.29918 Tj +-242 TJm +(writing,) 31.2739 Tj +-244 TJm +(using) 21.5898 Tj +-243 TJm +(either) 22.6858 Tj +-243 TJm +(its) 9.41504 Tj +-242 TJm +(name) 21.5799 Tj +-243 TJm +(or) 8.29918 Tj +-242 TJm +(a) 4.42357 Tj +-243 TJm +(pre-e) 20.464 Tj +15 TJm +(xisting) 27.1292 Tj +-243 TJm +(\002le) 12.7327 Tj +-242 TJm +(descriptor) 39.842 Tj +55 TJm +(.) 2.49075 Tj +-615 TJm +(Analogous) 43.1697 Tj +-243 TJm +(to) 7.75121 Tj +[1 0 0 1 510.112 266.488] cm +0 g +0 G +[1 0 0 1 -510.112 -266.488] cm +[1 0 0 1 0 0] Tm +0 0 Td +510.112 266.488 Td +/F130_0 9.963 Tf +(fopen) 29.889 Tj +[1 0 0 1 540 266.488] cm +0 g +0 G +[1 0 0 1 -540 -266.488] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 254.532 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 88.877 254.532] cm +0 g +0 G +[1 0 0 1 -88.877 -254.532] cm +[1 0 0 1 0 0] Tm +0 0 Td +88.877 254.532 Td +/F130_0 9.963 Tf +(fdopen) 35.8668 Tj +[1 0 0 1 124.742 254.532] cm +0 g +0 G +[1 0 0 1 -124.742 -254.532] cm +[1 0 0 1 0 0] Tm +0 0 Td +124.742 254.532 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 252.968] cm +0 g +0 G +[1 0 0 1 0 -36.861] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -243.604] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 243.604 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-426 TJm +(BZ2_bzread) 59.778 Tj +-852 TJm +(\() 5.9778 Tj +-426 TJm +(BZFILE) 35.8668 Tj +1 TJm +(*) 5.9778 Tj +-426 TJm +(b,) 11.9556 Tj +-426 TJm +(void*) 29.889 Tj +-426 TJm +(buf,) 23.9112 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(len) 17.9334 Tj +-426 TJm +(\);) 11.9556 Tj +90 231.648 Td +(int) 17.9334 Tj +-426 TJm +(BZ2_bzwrite) 65.7558 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(BZFILE*) 41.8446 Tj +-425 TJm +(b,) 11.9556 Tj +-426 TJm +(void*) 29.889 Tj +-426 TJm +(buf,) 23.9112 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(len) 17.9334 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 216.107] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -206.144] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 194.189 Td +/F128_0 9.963 Tf +(Reads/writes) 51.4689 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(from/to) 29.889 Tj +-249 TJm +(a) 4.42357 Tj +-250 TJm +(pre) 12.7228 Tj +25 TJm +(viously) 29.341 Tj +-250 TJm +(opened) 28.7731 Tj +[1 0 0 1 259.903 194.189] cm +0 g +0 G +[1 0 0 1 -259.903 -194.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +259.903 194.189 Td +/F130_0 9.963 Tf +(BZFILE) 35.8668 Tj +[1 0 0 1 295.769 194.189] cm +0 g +0 G +[1 0 0 1 -295.769 -194.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +295.769 194.189 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-500 TJm +(Analogous) 43.1697 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 359.141 194.189] cm +0 g +0 G +[1 0 0 1 -359.141 -194.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +359.141 194.189 Td +/F130_0 9.963 Tf +(fread) 29.889 Tj +[1 0 0 1 389.029 194.189] cm +0 g +0 G +[1 0 0 1 -389.029 -194.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +391.519 194.189 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 408.396 194.189] cm +0 g +0 G +[1 0 0 1 -408.396 -194.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +408.396 194.189 Td +/F130_0 9.963 Tf +(fwrite) 35.8668 Tj +[1 0 0 1 444.261 194.189] cm +0 g +0 G +[1 0 0 1 -444.261 -194.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +444.261 194.189 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 192.032] cm +0 g +0 G +[1 0 0 1 0 -36.862] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -182.667] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 182.667 Td +/F130_0 9.963 Tf +(int) 17.9334 Tj +-852 TJm +(BZ2_bzflush) 65.7558 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(BZFIL) 29.889 Tj +1 TJm +(E*) 11.9556 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +90 170.712 Td +(void) 23.9112 Tj +-426 TJm +(BZ2_bzclose) 65.7558 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(BZFILE) 35.8668 Tj +1 TJm +(*) 5.9778 Tj +-426 TJm +(b) 5.9778 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 155.17] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -145.208] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 133.252 Td +/F128_0 9.963 Tf +(Flushes/closes) 57.5662 Tj +-250 TJm +(a) 4.42357 Tj +[1 0 0 1 138.968 133.252] cm +0 g +0 G +[1 0 0 1 -138.968 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +138.968 133.252 Td +/F130_0 9.963 Tf +(BZFILE) 35.8668 Tj +[1 0 0 1 174.833 133.252] cm +0 g +0 G +[1 0 0 1 -174.833 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +174.833 133.252 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 179.815 133.252] cm +0 g +0 G +[1 0 0 1 -179.815 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +179.815 133.252 Td +/F130_0 9.963 Tf +(BZ2_bzflush) 65.7558 Tj +[1 0 0 1 245.568 133.252] cm +0 g +0 G +[1 0 0 1 -245.568 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +248.059 133.252 Td +/F128_0 9.963 Tf +(doesn') 26.5614 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(actually) 31.5429 Tj +-250 TJm +(do) 9.963 Tj +-250 TJm +(an) 9.40507 Tj +15 TJm +(ything.) 27.9562 Tj +-619 TJm +(Analogous) 43.1697 Tj +-250 TJm +(to) 7.75121 Tj +[1 0 0 1 425.472 133.252] cm +0 g +0 G +[1 0 0 1 -425.472 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +425.472 133.252 Td +/F130_0 9.963 Tf +(fflush) 35.8668 Tj +[1 0 0 1 461.338 133.252] cm +0 g +0 G +[1 0 0 1 -461.338 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +463.828 133.252 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 480.705 133.252] cm +0 g +0 G +[1 0 0 1 -480.705 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +480.705 133.252 Td +/F130_0 9.963 Tf +(fclose) 35.8668 Tj +[1 0 0 1 516.57 133.252] cm +0 g +0 G +[1 0 0 1 -516.57 -133.252] cm +[1 0 0 1 0 0] Tm +0 0 Td +516.57 133.252 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 131.096] cm +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.323] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -121.731] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 121.731 Td +/F130_0 9.963 Tf +(const) 29.889 Tj +-426 TJm +(char) 23.9112 Tj +-426 TJm +(*) 5.9778 Tj +-426 TJm +(BZ2_bzerror) 65.7558 Tj +-425 TJm +(\() 5.9778 Tj +-426 TJm +(BZFILE) 35.8668 Tj +-426 TJm +(*b,) 17.9334 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(*errnum) 41.8446 Tj +-426 TJm +(\)) 5.9778 Tj +[1 0 0 1 72 106.189] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -96.226] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 84.271 Td +/F128_0 9.963 Tf +(Returns) 30.9949 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(string) 22.6957 Tj +-250 TJm +(describing) 41.5059 Tj +-250 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-250 TJm +(more) 20.474 Tj +-250 TJm +(recent) 24.3396 Tj +-250 TJm +(error) 19.3581 Tj +-250 TJm +(status) 22.6957 Tj +-250 TJm +(of) 8.29918 Tj +[1 0 0 1 303.858 84.271] cm +0 g +0 G +[1 0 0 1 -303.858 -84.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +303.858 84.271 Td +/F130_0 9.963 Tf +(b) 5.9778 Tj +[1 0 0 1 309.835 84.271] cm +0 g +0 G +[1 0 0 1 -309.835 -84.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +309.835 84.271 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(also) 16.0504 Tj +-250 TJm +(sets) 14.9445 Tj +[1 0 0 1 367.668 84.271] cm +0 g +0 G +[1 0 0 1 -367.668 -84.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +367.668 84.271 Td +/F130_0 9.963 Tf +(*errnum) 41.8446 Tj +[1 0 0 1 409.511 84.271] cm +0 g +0 G +[1 0 0 1 -409.511 -84.271] cm +[1 0 0 1 0 0] Tm +0 0 Td +412.002 84.271 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(its) 9.41504 Tj +-250 TJm +(numerical) 39.842 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alue.) 19.0891 Tj +[1 0 0 1 72 82.114] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -21.3] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 4.384 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.573 -6.755] cm +0 g +0 G +[1 0 0 1 -495.734 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +536.307 50.951 Td +/F128_0 9.963 Tf +(28) 9.963 Tj +[1 0 0 1 455.161 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.599 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -15.037 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 32 32 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -540 -741.554] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 704.93 Td +/F121_0 20.659 Tf +(3.7.) 34.4592 Tj +-449 TJm +(Using) 57.3907 Tj +-449 TJm +(the) 30.9885 Tj +-449 TJm +(librar) 51.6682 Tj +-10 TJm +(y) 11.4864 Tj +-449 TJm +(in) 18.3659 Tj +-450 TJm +(a) 11.4864 Tj +[1 0 0 1 343.721 704.93] cm +0 g +0 G +[1 0 0 1 -343.721 -704.93] cm +[1 0 0 1 0 0] Tm +0 0 Td +343.721 704.93 Td +/F387_0 20.659 Tf +(stdio) 61.977 Tj +[1 0 0 1 405.696 704.93] cm +0 g +0 G +[1 0 0 1 -405.696 -704.93] cm +[1 0 0 1 0 0] Tm +0 0 Td +405.696 704.93 Td +/F121_0 20.659 Tf +(-free) 44.7681 Tj +-449 TJm +(en) 24.1091 Tj +40 TJm +(vir) 25.266 Tj +20 TJm +(on-) 32.1247 Tj +72 680.139 Td +(ment) 49.3544 Tj +[1 0 0 1 72 679.881] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -669.919] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 649.518 Td +/F121_0 17.215 Tf +(3.7.1.) 43.0719 Tj +-278 TJm +(Getting) 60.2525 Tj +-278 TJm +(rid) 22.0008 Tj +-278 TJm +(of) 16.251 Tj +[1 0 0 1 232.721 649.518] cm +0 g +0 G +[1 0 0 1 -232.721 -649.518] cm +[1 0 0 1 0 0] Tm +0 0 Td +232.721 649.518 Td +/F387_0 17.215 Tf +(stdio) 51.645 Tj +[1 0 0 1 284.367 649.518] cm +0 g +0 G +[1 0 0 1 -212.367 -3.83] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -635.725] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 627.6 Td +/F128_0 9.963 Tf +(In) 8.29918 Tj +-319 TJm +(a) 4.42357 Tj +-319 TJm +(deeply) 26.5614 Tj +-319 TJm +(embedded) 40.9479 Tj +-319 TJm +(application,) 46.7663 Tj +-336 TJm +(you) 14.9445 Tj +-319 TJm +(might) 23.2536 Tj +-319 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-319 TJm +(to) 7.75121 Tj +-319 TJm +(use) 13.2807 Tj +-319 TJm +(just) 14.3965 Tj +-319 TJm +(t) 2.76971 Tj +1 TJm +(he) 9.40507 Tj +-319 TJm +(memory-to-memory) 80.7999 Tj +-319 TJm +(functions.) 39.573 Tj +-1034 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-319 TJm +(can) 13.8286 Tj +-319 TJm +(do) 9.963 Tj +-319 TJm +(this) 14.3965 Tj +72 615.645 Td +(con) 14.3866 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(eniently) 32.1008 Tj +-327 TJm +(by) 9.963 Tj +-327 TJm +(compiling) 40.4099 Tj +-327 TJm +(the) 12.1748 Tj +-327 TJm +(library) 26.5614 Tj +-327 TJm +(with) 17.7142 Tj +-327 TJm +(preprocessor) 50.901 Tj +-327 TJm +(symbol) 29.341 Tj +[1 0 0 1 336.045 615.645] cm +0 g +0 G +[1 0 0 1 -336.045 -615.645] cm +[1 0 0 1 0 0] Tm +0 0 Td +336.045 615.645 Td +/F130_0 9.963 Tf +(BZ_NO_STDIO) 65.7558 Tj +[1 0 0 1 401.799 615.645] cm +0 g +0 G +[1 0 0 1 -401.799 -615.645] cm +[1 0 0 1 0 0] Tm +0 0 Td +405.057 615.645 Td +/F128_0 9.963 Tf +(de\002ned.) 31.8218 Tj +-1082 TJm +(Doing) 24.9075 Tj +-327 TJm +(this) 14.3965 Tj +-327 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-327 TJm +(you) 14.9445 Tj +-327 TJm +(a) 4.42357 Tj +72 603.69 Td +(library) 26.5614 Tj +-250 TJm +(containing) 42.0638 Tj +-250 TJm +(only) 17.7142 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(fo) 8.29918 Tj +1 TJm +(llo) 10.5209 Tj +25 TJm +(wing) 19.926 Tj +-250 TJm +(eight) 19.926 Tj +-250 TJm +(functions:) 39.852 Tj +[1 0 0 1 72 601.533] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -591.571] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 581.772 Td +/F130_0 9.963 Tf +(BZ2_bzCompressInit) 107.6 Tj +[1 0 0 1 179.597 581.772] cm +0 g +0 G +[1 0 0 1 -179.597 -581.772] cm +[1 0 0 1 0 0] Tm +0 0 Td +179.597 581.772 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 199.079 581.772] cm +0 g +0 G +[1 0 0 1 -199.079 -581.772] cm +[1 0 0 1 0 0] Tm +0 0 Td +199.079 581.772 Td +/F130_0 9.963 Tf +(BZ2_bzCompress) 83.6892 Tj +[1 0 0 1 282.765 581.772] cm +0 g +0 G +[1 0 0 1 -282.765 -581.772] cm +[1 0 0 1 0 0] Tm +0 0 Td +282.765 581.772 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 302.247 581.772] cm +0 g +0 G +[1 0 0 1 -302.247 -581.772] cm +[1 0 0 1 0 0] Tm +0 0 Td +302.247 581.772 Td +/F130_0 9.963 Tf +(BZ2_bzCompressEnd) 101.623 Tj +[1 0 0 1 403.866 581.772] cm +0 g +0 G +[1 0 0 1 14.092 0] cm +0 g +0 G +[1 0 0 1 -417.958 -581.772] cm +[1 0 0 1 0 0] Tm +0 0 Td +417.958 581.772 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressInit) 119.556 Tj +[1 0 0 1 537.509 581.772] cm +0 g +0 G +[1 0 0 1 -537.509 -581.772] cm +[1 0 0 1 0 0] Tm +0 0 Td +537.509 581.772 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 72 569.817] cm +0 g +0 G +[1 0 0 1 -72 -569.817] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 569.817 Td +/F130_0 9.963 Tf +(BZ2_bzDecompress) 95.6448 Tj +[1 0 0 1 167.641 569.817] cm +0 g +0 G +[1 0 0 1 -167.641 -569.817] cm +[1 0 0 1 0 0] Tm +0 0 Td +167.641 569.817 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 172.144 569.817] cm +0 g +0 G +[1 0 0 1 -172.144 -569.817] cm +[1 0 0 1 0 0] Tm +0 0 Td +172.144 569.817 Td +/F130_0 9.963 Tf +(BZ2_bzDecompressEnd) 113.578 Tj +[1 0 0 1 285.719 569.817] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 -287.612 -569.817] cm +[1 0 0 1 0 0] Tm +0 0 Td +287.612 569.817 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffCompres) 137.489 Tj +1 TJm +(s) 5.9778 Tj +[1 0 0 1 431.074 569.817] cm +0 g +0 G +[1 0 0 1 -431.074 -569.817] cm +[1 0 0 1 0 0] Tm +0 0 Td +431.074 569.817 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 435.577 569.817] cm +0 g +0 G +[1 0 0 1 -435.577 -569.817] cm +[1 0 0 1 0 0] Tm +0 0 Td +435.577 569.817 Td +/F130_0 9.963 Tf +(BZ2_bzBuffToBuffDecompre) 143.467 Tj +1 TJm +(ss) 11.9556 Tj +[1 0 0 1 590.994 569.817] cm +0 g +0 G +[1 0 0 1 -518.994 -1.564] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -558.29] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 547.899 Td +/F128_0 9.963 Tf +(When) 23.7916 Tj +-250 TJm +(compiled) 37.0823 Tj +-250 TJm +(lik) 10.5209 Tj +10 TJm +(e) 4.42357 Tj +-250 TJm +(this,) 16.8873 Tj +-250 TJm +(all) 9.963 Tj +-249 TJm +(functions) 37.0823 Tj +-250 TJm +(will) 15.5024 Tj +-250 TJm +(ignore) 25.4555 Tj +[1 0 0 1 272.526 547.899] cm +0 g +0 G +[1 0 0 1 -272.526 -547.899] cm +[1 0 0 1 0 0] Tm +0 0 Td +272.526 547.899 Td +/F130_0 9.963 Tf +(verbosity) 53.8002 Tj +[1 0 0 1 326.324 547.899] cm +0 g +0 G +[1 0 0 1 -326.324 -547.899] cm +[1 0 0 1 0 0] Tm +0 0 Td +328.815 547.899 Td +/F128_0 9.963 Tf +(settings.) 32.9377 Tj +[1 0 0 1 72 545.742] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -535.78] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 517.278 Td +/F121_0 17.215 Tf +(3.7.2.) 43.0719 Tj +-278 TJm +(Critical) 58.3589 Tj +-278 TJm +(err) 22.9648 Tj +20 TJm +(or) 17.215 Tj +-278 TJm +(handling) 71.7349 Tj +[1 0 0 1 72 513.448] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -503.485] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 495.36 Td +/F130_0 9.963 Tf +(libbzip2) 47.8224 Tj +[1 0 0 1 119.821 495.36] cm +0 g +0 G +[1 0 0 1 -119.821 -495.36] cm +[1 0 0 1 0 0] Tm +0 0 Td +124.529 495.36 Td +/F128_0 9.963 Tf +(contains) 33.2067 Tj +-472 TJm +(a) 4.42357 Tj +-473 TJm +(number) 30.437 Tj +-472 TJm +(of) 8.29918 Tj +-473 TJm +(internal) 30.437 Tj +-472 TJm +(assertion) 35.4185 Tj +-473 TJm +(checks) 27.1093 Tj +-472 TJm +(which) 24.3496 Tj +-473 TJm +(sho) 13.8386 Tj +1 TJm +(uld,) 15.2235 Tj +-529 TJm +(needles) 29.879 Tj +1 TJm +(s) 3.87561 Tj +-473 TJm +(to) 7.75121 Tj +-473 TJm +(sa) 8.29918 Tj +1 TJm +(y) 4.9815 Tj +65 TJm +(,) 2.49075 Tj +-529 TJm +(ne) 9.40507 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-472 TJm +(be) 9.40507 Tj +-473 TJm +(acti) 14.3866 Tj +25 TJm +(v) 4.9815 Tj +25 TJm +(ated.) 19.0891 Tj +72 483.405 Td +(Ne) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ertheless,) 37.3513 Tj +-532 TJm +(if) 6.08739 Tj +-476 TJm +(an) 9.40507 Tj +-476 TJm +(assertion) 35.4185 Tj +-476 TJm +(should) 26.5713 Tj +-476 TJm +(f) 3.31768 Tj +10 TJm +(ail,) 12.4538 Tj +-533 TJm +(beha) 18.8101 Tj +21 TJm +(viour) 21.0319 Tj +-476 TJm +(depends) 32.6488 Tj +-476 TJm +(on) 9.963 Tj +-476 TJm +(whether) 32.0908 Tj +-476 TJm +(or) 8.29918 Tj +-476 TJm +(not) 12.7327 Tj +-476 TJm +(the) 12.1748 Tj +-476 TJm +(library) 26.5614 Tj +-476 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-476 TJm +(compiled) 37.0823 Tj +-476 TJm +(with) 17.7142 Tj +[1 0 0 1 72 471.45] cm +0 g +0 G +[1 0 0 1 -72 -471.45] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 471.45 Td +/F130_0 9.963 Tf +(BZ_NO_STDIO) 65.7558 Tj +[1 0 0 1 137.753 471.45] cm +0 g +0 G +[1 0 0 1 -137.753 -471.45] cm +[1 0 0 1 0 0] Tm +0 0 Td +140.244 471.45 Td +/F128_0 9.963 Tf +(set.) 13.5596 Tj +[1 0 0 1 72 470.284] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -460.322] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 449.532 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(normal) 28.2252 Tj +-250 TJm +(compile,) 34.5915 Tj +-250 TJm +(an) 9.40507 Tj +-250 TJm +(asse) 16.5984 Tj +1 TJm +(rtion) 18.8201 Tj +-250 TJm +(f) 3.31768 Tj +10 TJm +(ailure) 22.6858 Tj +-250 TJm +(yields) 23.8016 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(message:) 36.5244 Tj +[1 0 0 1 72 447.375] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -437.413] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 427.614 Td +/F128_0 9.963 Tf +(bzip2/libbzip2:) 60.3359 Tj +-310 TJm +(internal) 30.437 Tj +-250 TJm +(err) 11.0589 Tj +1 TJm +(or) 8.29918 Tj +-250 TJm +(number) 30.437 Tj +-250 TJm +(N.) 9.68404 Tj +[1 0 0 1 72 425.458] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -415.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +108 405.697 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-475 TJm +(is) 6.64532 Tj +-476 TJm +(a) 4.42357 Tj +-476 TJm +(b) 4.9815 Tj +20 TJm +(u) 4.9815 Tj +1 TJm +(g) 4.9815 Tj +-476 TJm +(in) 7.75121 Tj +-476 TJm +(bzi) 12.1748 Tj +1 TJm +(p2/libbzip2,) 47.8822 Tj +-532 TJm +(1.0.3) 19.926 Tj +-476 TJm +(of) 8.29918 Tj +-475 TJm +(15) 9.963 Tj +-476 TJm +(February) 35.9664 Tj +-475 TJm +(2005.) 22.4168 Tj +-987 TJm +(Please) 25.4555 Tj +-475 TJm +(report) 23.7916 Tj +-476 TJm +(it) 5.53943 Tj +-475 TJm +(to) 7.75121 Tj +-476 TJm +(me) 12.1748 Tj +-475 TJm +(at:) 9.963 Tj +-761 TJm +(jse-) 14.3866 Tj +108 393.741 Td +(w) 7.19329 Tj +10 TJm +(ard@bzip.or) 49.8449 Tj +18 TJm +(g.) 7.47225 Tj +-1091 TJm +(If) 6.63536 Tj +-329 TJm +(this) 14.3965 Tj +-328 TJm +(happened) 38.1782 Tj +-329 TJm +(wh) 12.1748 Tj +1 TJm +(en) 9.40507 Tj +-329 TJm +(you) 14.9445 Tj +-329 TJm +(w) 7.19329 Tj +1 TJm +(ere) 12.1648 Tj +-329 TJm +(using) 21.5898 Tj +-328 TJm +(some) 21.0319 Tj +-329 TJm +(program) 33.7546 Tj +-328 TJm +(which) 24.3496 Tj +-329 TJm +(uses) 17.1563 Tj +-328 TJm +(libbzip2) 32.6587 Tj +-329 TJm +(as) 8.29918 Tj +-328 TJm +(a) 4.42357 Tj +108 381.786 Td +(component,) 46.7663 Tj +-323 TJm +(you) 14.9445 Tj +-309 TJm +(should) 26.5713 Tj +-308 TJm +(also) 16.0504 Tj +-309 TJm +(report) 23.7916 Tj +-309 TJm +(this) 14.3965 Tj +-308 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-309 TJm +(to) 7.75121 Tj +-309 TJm +(the) 12.1748 Tj +-308 TJm +(author\(s\)) 35.9664 Tj +-309 TJm +(of) 8.29918 Tj +-309 TJm +(tha) 12.1748 Tj +1 TJm +(t) 2.76971 Tj +-309 TJm +(program.) 36.2454 Tj +-972 TJm +(Please) 25.4555 Tj +-309 TJm +(mak) 17.1563 Tj +10 TJm +(e) 4.42357 Tj +-309 TJm +(an) 9.40507 Tj +-308 TJm +(ef-) 11.0589 Tj +108 369.831 Td +(fort) 14.3866 Tj +-315 TJm +(to) 7.75121 Tj +-315 TJm +(report) 23.7916 Tj +-316 TJm +(this) 14.3965 Tj +-315 TJm +(b) 4.9815 Tj +20 TJm +(ug;) 12.7327 Tj +-348 TJm +(timely) 25.4654 Tj +-315 TJm +(and) 14.3866 Tj +-315 TJm +(accurate) 33.1868 Tj +-315 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-315 TJm +(reports) 27.6673 Tj +-316 TJm +(e) 4.42357 Tj +26 TJm +(v) 4.9815 Tj +15 TJm +(entually) 32.1008 Tj +-316 TJm +(lead) 16.5984 Tj +-315 TJm +(to) 7.75121 Tj +-315 TJm +(higher) 25.4555 Tj +-315 TJm +(quality) 27.6772 Tj +-315 TJm +(softw) 22.1378 Tj +10 TJm +(are.) 14.6556 Tj +108 357.876 Td +(Thanks.) 31.8218 Tj +-620 TJm +(Julian) 23.8016 Tj +-250 TJm +(Se) 9.963 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(ard,) 15.2135 Tj +-250 TJm +(15) 9.963 Tj +-250 TJm +(Fe) 9.963 Tj +1 TJm +(bruary) 26.0034 Tj +-250 TJm +(2005.) 22.4168 Tj +[1 0 0 1 72 355.719] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -335.794] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 325.995 Td +/F128_0 9.963 Tf +(where) 24.3396 Tj +[1 0 0 1 98.831 325.995] cm +0 g +0 G +[1 0 0 1 -98.831 -325.995] cm +[1 0 0 1 0 0] Tm +0 0 Td +98.831 325.995 Td +/F130_0 9.963 Tf +(N) 5.9778 Tj +[1 0 0 1 104.809 325.995] cm +0 g +0 G +[1 0 0 1 -104.809 -325.995] cm +[1 0 0 1 0 0] Tm +0 0 Td +107.301 325.995 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(some) 21.0319 Tj +-250 TJm +(error) 19.3581 Tj +-250 TJm +(code) 18.8101 Tj +-251 TJm +(nu) 9.963 Tj +1 TJm +(mber) 20.474 Tj +55 TJm +(.) 2.49075 Tj +-622 TJm +(If) 6.63536 Tj +[1 0 0 1 230.81 325.995] cm +0 g +0 G +[1 0 0 1 -230.81 -325.995] cm +[1 0 0 1 0 0] Tm +0 0 Td +230.81 325.995 Td +/F130_0 9.963 Tf +(N) 5.9778 Tj +-600 TJm +(==) 11.9556 Tj +-600 TJm +(1007) 23.9112 Tj +[1 0 0 1 284.608 325.995] cm +0 g +0 G +[1 0 0 1 -284.608 -325.995] cm +[1 0 0 1 0 0] Tm +0 0 Td +284.608 325.995 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(it) 5.53943 Tj +-250 TJm +(also) 16.0504 Tj +-250 TJm +(prints) 22.6957 Tj +-251 TJm +(som) 16.6083 Tj +1 TJm +(e) 4.42357 Tj +-251 TJm +(e) 4.42357 Tj +15 TJm +(xtra) 15.4925 Tj +-250 TJm +(te) 7.19329 Tj +15 TJm +(xt) 7.75121 Tj +-250 TJm +(advising) 33.7646 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(reader) 24.8876 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(unreliable) 39.842 Tj +72 314.04 Td +(memory) 33.2067 Tj +-425 TJm +(i) 2.76971 Tj +1 TJm +(s) 3.87561 Tj +-425 TJm +(often) 20.474 Tj +-425 TJm +(associate) 35.9664 Tj +1 TJm +(d) 4.9815 Tj +-425 TJm +(with) 17.7142 Tj +-425 TJm +(internal) 30.437 Tj +-424 TJm +(error) 19.3581 Tj +-425 TJm +(1007.) 22.4168 Tj +-834 TJm +(\(This) 21.0319 Tj +-424 TJm +(is) 6.64532 Tj +-425 TJm +(a) 4.42357 Tj +-424 TJm +(frequently-observ) 70.827 Tj +15 TJm +(ed-phenomenon) 64.1916 Tj +-425 TJm +(w) 7.19329 Tj +1 TJm +(ith) 10.5209 Tj +-425 TJm +(v) 4.9815 Tj +15 TJm +(ersions) 28.2252 Tj +72 302.085 Td +(1.0.0/1.0.1\).) 48.4301 Tj +[1 0 0 1 72 300.302] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -290.339] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 280.167 Td +/F130_0 9.963 Tf +(exit\(3\)) 41.8446 Tj +[1 0 0 1 113.843 280.167] cm +0 g +0 G +[1 0 0 1 -113.843 -280.167] cm +[1 0 0 1 0 0] Tm +0 0 Td +116.334 280.167 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(then) 17.1563 Tj +-250 TJm +(called.) 26.2824 Tj +[1 0 0 1 72 279.002] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -269.039] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 258.25 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-250 TJm +(a) 4.42357 Tj +[1 0 0 1 95.093 258.25] cm +0 g +0 G +[1 0 0 1 -95.093 -258.25] cm +[1 0 0 1 0 0] Tm +0 0 Td +95.093 258.25 Td +/F130_0 9.963 Tf +(stdio) 29.889 Tj +[1 0 0 1 124.981 258.25] cm +0 g +0 G +[1 0 0 1 -124.981 -258.25] cm +[1 0 0 1 0 0] Tm +0 0 Td +124.981 258.25 Td +/F128_0 9.963 Tf +(-free) 18.8002 Tj +-250 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(assertion) 35.4185 Tj +-250 TJm +(f) 3.31768 Tj +10 TJm +(ailure) 22.6858 Tj +1 TJm +(s) 3.87561 Tj +-250 TJm +(result) 22.1378 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(call) 14.3866 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(function) 33.2067 Tj +-250 TJm +(declared) 33.7447 Tj +-250 TJm +(as:) 11.0689 Tj +[1 0 0 1 72 256.093] cm +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.323] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -246.728] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 246.728 Td +/F130_0 9.963 Tf +(extern) 35.8668 Tj +-426 TJm +(void) 23.9112 Tj +-426 TJm +(bz_internal_e) 77.7114 Tj +1 TJm +(rror) 23.9112 Tj +-426 TJm +(\() 5.9778 Tj +-426 TJm +(int) 17.9334 Tj +-426 TJm +(errcode) 41.8446 Tj +-426 TJm +(\);) 11.9556 Tj +[1 0 0 1 72 231.186] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -221.223] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 209.268 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-250 TJm +(rele) 14.9345 Tj +25 TJm +(v) 4.9815 Tj +25 TJm +(ant) 12.1748 Tj +-250 TJm +(code) 18.8101 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(passed) 26.5614 Tj +-250 TJm +(a) 4.42357 Tj +1 TJm +(s) 3.87561 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(parameter) 39.8321 Tj +55 TJm +(.) 2.49075 Tj +-620 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(supply) 26.5713 Tj +-250 TJm +(such) 18.2622 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(function.) 35.6974 Tj +[1 0 0 1 72 207.111] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -197.149] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 187.35 Td +/F128_0 9.963 Tf +(In) 8.29918 Tj +-294 TJm +(either) 22.6858 Tj +-294 TJm +(case,) 19.6371 Tj +-305 TJm +(once) 18.8101 Tj +-295 TJm +(an) 9.40507 Tj +-294 TJm +(assertion) 35.4185 Tj +-294 TJm +(f) 3.31768 Tj +10 TJm +(ailure) 22.6858 Tj +-294 TJm +(has) 13.2807 Tj +-294 TJm +(occurred,) 37.3413 Tj +-305 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +[1 0 0 1 306.541 187.35] cm +0 g +0 G +[1 0 0 1 -306.541 -187.35] cm +[1 0 0 1 0 0] Tm +0 0 Td +306.541 187.35 Td +/F130_0 9.963 Tf +(bz_stream) 53.8002 Tj +[1 0 0 1 360.34 187.35] cm +0 g +0 G +[1 0 0 1 -360.34 -187.35] cm +[1 0 0 1 0 0] Tm +0 0 Td +363.271 187.35 Td +/F128_0 9.963 Tf +(records) 29.3211 Tj +-294 TJm +(in) 7.75121 Tj +40 TJm +(v) 4.9815 Tj +20 TJm +(olv) 12.7327 Tj +15 TJm +(ed) 9.40507 Tj +-294 TJm +(can) 13.8286 Tj +-294 TJm +(be) 9.40507 Tj +-294 TJm +(re) 7.74125 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(arded) 22.1278 Tj +-295 TJm +(as) 8.29918 Tj +-294 TJm +(in) 7.75121 Tj +40 TJm +(v) 4.9815 Tj +25 TJm +(alid.) 17.4353 Tj +72 175.395 Td +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(not) 12.7327 Tj +-250 TJm +(attempt) 29.889 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(res) 11.6169 Tj +1 TJm +(ume) 17.1563 Tj +-250 TJm +(normal) 28.2252 Tj +-250 TJm +(operation) 37.6303 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(them.) 22.4168 Tj +[1 0 0 1 72 173.238] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -163.276] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 153.477 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-299 TJm +(m) 7.75121 Tj +1 TJm +(ay) 9.40507 Tj +65 TJm +(,) 2.49075 Tj +-311 TJm +(of) 8.29918 Tj +-299 TJm +(course,) 28.4942 Tj +-310 TJm +(change) 28.2152 Tj +-299 TJm +(critical) 27.6673 Tj +-298 TJm +(error) 19.3581 Tj +-299 TJm +(ha) 9.40507 Tj +1 TJm +(ndling) 25.4654 Tj +-299 TJm +(to) 7.75121 Tj +-298 TJm +(suit) 14.3965 Tj +-299 TJm +(your) 18.2622 Tj +-298 TJm +(needs.) 25.1765 Tj +-912 TJm +(As) 11.0689 Tj +-298 TJm +(I) 3.31768 Tj +-299 TJm +(said) 16.0504 Tj +-298 TJm +(abo) 14.3866 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e,) 6.91432 Tj +-311 TJm +(critical) 27.6673 Tj +-298 TJm +(errors) 23.2337 Tj +-299 TJm +(indic) 19.926 Tj +1 TJm +(ate) 11.6169 Tj +-299 TJm +(b) 4.9815 Tj +20 TJm +(ugs) 13.8386 Tj +72 141.522 Td +(in) 7.75121 Tj +-263 TJm +(the) 12.1748 Tj +-263 TJm +(library) 26.5614 Tj +-263 TJm +(and) 14.3866 Tj +-263 TJm +(s) 3.87561 Tj +1 TJm +(hould) 22.6957 Tj +-263 TJm +(not) 12.7327 Tj +-263 TJm +(occur) 22.1278 Tj +55 TJm +(.) 2.49075 Tj +-698 TJm +(All) 12.7327 Tj +-263 TJm +("normal") 36.355 Tj +-263 TJm +(er) 7.74125 Tj +1 TJm +(ror) 11.6169 Tj +-263 TJm +(situations) 38.1981 Tj +-263 TJm +(are) 12.1648 Tj +-263 TJm +(indicated) 36.5244 Tj +-263 TJm +(via) 12.1748 Tj +-263 TJm +(error) 19.3581 Tj +-263 TJm +(retu) 15.4925 Tj +1 TJm +(rn) 8.29918 Tj +-263 TJm +(codes) 22.6858 Tj +-263 TJm +(from) 19.3681 Tj +-263 TJm +(functions,) 39.573 Tj +72 129.567 Td +(and) 14.3866 Tj +-250 TJm +(can) 13.8286 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(reco) 17.1463 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(ered) 17.1463 Tj +-250 TJm +(from.) 21.8588 Tj +[1 0 0 1 72 129.468] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -119.505] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 94.814 Td +/F121_0 20.659 Tf +(3.8.) 34.4592 Tj +-278 TJm +(Making) 71.1703 Tj +-278 TJm +(a) 11.4864 Tj +-278 TJm +(Windo) 63.1132 Tj +15 TJm +(ws) 27.5591 Tj +-278 TJm +(DLL) 40.1611 Tj +[1 0 0 1 72 90.218] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 0 -29.403] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.974] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -51.071] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 51.071 Td +/F128_0 9.963 Tf +(29) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 33 33 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -8.911] cm +0 g +0 G +[1 0 0 1 0 8.911] cm +0 g +0 G +0 g +0 G +[1 0 0 1 84.08 -6.755] cm +0 g +0 G +[1 0 0 1 -350.151 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +434.231 749.245 Td +/F128_0 9.963 Tf +(Programming) 54.7965 Tj +-250 TJm +(with) 17.7142 Tj +-250 TJm +(libbzip2) 32.6587 Tj +[1 0 0 1 266.071 747.089] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -5.037] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -540 -741.554] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(Ev) 11.0689 Tj +15 TJm +(erything) 33.2067 Tj +-452 TJm +(related) 27.1093 Tj +-452 TJm +(to) 7.75121 Tj +-453 TJm +(W) 9.40507 Tj +40 TJm +(indo) 17.7142 Tj +25 TJm +(ws) 11.0689 Tj +-452 TJm +(has) 13.2807 Tj +-452 TJm +(been) 18.8101 Tj +-453 TJm +(c) 4.42357 Tj +1 TJm +(ontrib) 23.8016 Tj +20 TJm +(uted) 17.1563 Tj +-453 TJm +(by) 9.963 Tj +-452 TJm +(Y) 7.19329 Tj +110 TJm +(oshioka) 30.9949 Tj +-452 TJm +(Tsuneo) 29.3311 Tj +-452 TJm +(\() 3.31768 Tj +[1 0 0 1 390.56 710.037] cm +0 g +0 G +[1 0 0 1 -390.56 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +390.56 710.037 Td +/F130_0 9.963 Tf +(QWF00133@niftyserve.or.jp) 149.445 Tj +[1 0 0 1 540 710.037] cm +0 g +0 G +[1 0 0 1 -540 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 698.082 Td +/F128_0 9.963 Tf +(/) 2.76971 Tj +[1 0 0 1 80.825 698.082] cm +0 g +0 G +[1 0 0 1 -80.825 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +80.825 698.082 Td +/F130_0 9.963 Tf +(tsuneo-y@is.aist-nara.ac.) 149.445 Tj +1 TJm +(jp) 11.9556 Tj +[1 0 0 1 242.22 698.082] cm +0 g +0 G +[1 0 0 1 -242.22 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +242.22 698.082 Td +/F128_0 9.963 Tf +(\),) 5.80843 Tj +-697 TJm +(so) 8.85711 Tj +-608 TJm +(you) 14.9445 Tj +-608 TJm +(should) 26.5713 Tj +-607 TJm +(send) 18.2622 Tj +-608 TJm +(your) 18.2622 Tj +-608 TJm +(queries) 28.7731 Tj +-607 TJm +(to) 7.75121 Tj +-608 TJm +(him) 15.5024 Tj +-608 TJm +(\(b) 8.29918 Tj +20 TJm +(ut) 7.75121 Tj +-608 TJm +(perha) 22.1278 Tj +1 TJm +(ps) 8.85711 Tj +-608 TJm +(Cc:) 13.8386 Tj +-1026 TJm +(me,) 14.6655 Tj +[1 0 0 1 72 686.127] cm +0 g +0 G +[1 0 0 1 -72 -686.127] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 686.127 Td +/F130_0 9.963 Tf +(jseward@bzip.org) 95.6448 Tj +[1 0 0 1 167.641 686.127] cm +0 g +0 G +[1 0 0 1 -167.641 -686.127] cm +[1 0 0 1 0 0] Tm +0 0 Td +167.641 686.127 Td +/F128_0 9.963 Tf +(\).) 5.80843 Tj +[1 0 0 1 72 684.344] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -674.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 664.209 Td +/F128_0 9.963 Tf +(My) 13.8386 Tj +-367 TJm +(v) 4.9815 Tj +25 TJm +(ague) 18.8101 Tj +-367 TJm +(understanding) 56.4504 Tj +-367 TJm +(of) 8.29918 Tj +-367 TJm +(what) 19.3681 Tj +-367 TJm +(to) 7.75121 Tj +-367 TJm +(do) 9.963 Tj +-367 TJm +(is:) 9.41504 Tj +-544 TJm +(using) 21.5898 Tj +-367 TJm +(V) 7.19329 Tj +60 TJm +(isual) 18.8201 Tj +-367 TJm +(C++) 17.8836 Tj +-367 TJm +(5.0,) 14.9445 Tj +-397 TJm +(open) 19.3681 Tj +-367 TJm +(the) 12.1748 Tj +-367 TJm +(project) 27.6673 Tj +-367 TJm +(\002le) 12.7327 Tj +[1 0 0 1 432.966 664.209] cm +0 g +0 G +[1 0 0 1 -432.966 -664.209] cm +[1 0 0 1 0 0] Tm +0 0 Td +432.966 664.209 Td +/F130_0 9.963 Tf +(libbz2.dsp) 59.778 Tj +[1 0 0 1 492.742 664.209] cm +0 g +0 G +[1 0 0 1 -492.742 -664.209] cm +[1 0 0 1 0 0] Tm +0 0 Td +492.742 664.209 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-396 TJm +(and) 14.3866 Tj +-367 TJm +(b) 4.9815 Tj +20 TJm +(uild.) 17.9932 Tj +72 652.254 Td +(That') 21.5799 Tj +55 TJm +(s) 3.87561 Tj +-250 TJm +(all.) 12.4538 Tj +[1 0 0 1 72 652.155] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -642.192] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 630.336 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-284 TJm +(you) 14.9445 Tj +-284 TJm +(can') 17.1463 Tj +18 TJm +(t) 2.76971 Tj +-284 TJm +(open) 19.3681 Tj +-285 TJm +(the) 12.1748 Tj +-284 TJm +(project) 27.6673 Tj +-284 TJm +(\002le) 12.7327 Tj +-284 TJm +(for) 11.6169 Tj +-284 TJm +(some) 21.0319 Tj +-284 TJm +(reason,) 28.4942 Tj +-293 TJm +(mak) 17.1563 Tj +10 TJm +(e) 4.42357 Tj +-284 TJm +(a) 4.42357 Tj +-284 TJm +(ne) 9.40507 Tj +25 TJm +(w) 7.19329 Tj +-284 TJm +(one,) 16.8773 Tj +-293 TJm +(naming) 29.889 Tj +-284 TJm +(these) 20.474 Tj +-284 TJm +(\002les:) 19.378 Tj +[1 0 0 1 424.505 630.336] cm +0 g +0 G +[1 0 0 1 -424.505 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +424.505 630.336 Td +/F130_0 9.963 Tf +(blocksort.c) 65.7558 Tj +[1 0 0 1 490.259 630.336] cm +0 g +0 G +[1 0 0 1 -490.259 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +490.259 630.336 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 495.666 630.336] cm +0 g +0 G +[1 0 0 1 -495.666 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +495.666 630.336 Td +/F130_0 9.963 Tf +(bzlib.c) 41.8446 Tj +[1 0 0 1 537.509 630.336] cm +0 g +0 G +[1 0 0 1 -537.509 -630.336] cm +[1 0 0 1 0 0] Tm +0 0 Td +537.509 630.336 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 72 618.381] cm +0 g +0 G +[1 0 0 1 -72 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 618.381 Td +/F130_0 9.963 Tf +(compress.c) 59.778 Tj +[1 0 0 1 131.776 618.381] cm +0 g +0 G +[1 0 0 1 -131.776 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +131.776 618.381 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 136.436 618.381] cm +0 g +0 G +[1 0 0 1 -136.436 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +136.436 618.381 Td +/F130_0 9.963 Tf +(crctable.c) 59.778 Tj +[1 0 0 1 196.211 618.381] cm +0 g +0 G +[1 0 0 1 -196.211 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +196.211 618.381 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 200.871 618.381] cm +0 g +0 G +[1 0 0 1 -200.871 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +200.871 618.381 Td +/F130_0 9.963 Tf +(decompress.c) 71.7336 Tj +[1 0 0 1 272.602 618.381] cm +0 g +0 G +[1 0 0 1 -272.602 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +272.602 618.381 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 277.262 618.381] cm +0 g +0 G +[1 0 0 1 -277.262 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +277.262 618.381 Td +/F130_0 9.963 Tf +(huffman.c) 53.8002 Tj +[1 0 0 1 331.06 618.381] cm +0 g +0 G +[1 0 0 1 -331.06 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +331.06 618.381 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 335.72 618.381] cm +0 g +0 G +[1 0 0 1 -335.72 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +335.72 618.381 Td +/F130_0 9.963 Tf +(randtable.c) 65.7558 Tj +[1 0 0 1 401.473 618.381] cm +0 g +0 G +[1 0 0 1 -401.473 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +403.562 618.381 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 420.037 618.381] cm +0 g +0 G +[1 0 0 1 -420.037 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +420.037 618.381 Td +/F130_0 9.963 Tf +(libbz2.def) 59.778 Tj +[1 0 0 1 479.812 618.381] cm +0 g +0 G +[1 0 0 1 -479.812 -618.381] cm +[1 0 0 1 0 0] Tm +0 0 Td +479.812 618.381 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-593 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-210 TJm +(will) 15.5024 Tj +-209 TJm +(also) 16.0504 Tj +72 606.426 Td +(need) 18.8101 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(name) 21.5799 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(header) 26.5514 Tj +-250 TJm +(\002les) 16.6083 Tj +[1 0 0 1 190.415 606.426] cm +0 g +0 G +[1 0 0 1 -190.415 -606.426] cm +[1 0 0 1 0 0] Tm +0 0 Td +190.415 606.426 Td +/F130_0 9.963 Tf +(bzlib.h) 41.8446 Tj +[1 0 0 1 232.258 606.426] cm +0 g +0 G +[1 0 0 1 -232.258 -606.426] cm +[1 0 0 1 0 0] Tm +0 0 Td +234.749 606.426 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 251.625 606.426] cm +0 g +0 G +[1 0 0 1 -251.625 -606.426] cm +[1 0 0 1 0 0] Tm +0 0 Td +251.625 606.426 Td +/F130_0 9.963 Tf +(bzlib_private.h) 89.667 Tj +[1 0 0 1 341.289 606.426] cm +0 g +0 G +[1 0 0 1 -341.289 -606.426] cm +[1 0 0 1 0 0] Tm +0 0 Td +341.289 606.426 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 604.862] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -594.899] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 584.508 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(don') 18.2622 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(VC++,) 27.5676 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(ma) 12.1748 Tj +1 TJm +(y) 4.9815 Tj +-250 TJm +(need) 18.8101 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(de\002ne) 24.3496 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(proprocessor) 51.4589 Tj +-250 TJm +(symbol) 29.341 Tj +[1 0 0 1 363.634 584.508] cm +0 g +0 G +[1 0 0 1 -363.634 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +363.634 584.508 Td +/F130_0 9.963 Tf +(_WIN32) 35.8668 Tj +[1 0 0 1 399.5 584.508] cm +0 g +0 G +[1 0 0 1 -399.5 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +399.5 584.508 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 582.351] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -572.389] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 562.59 Td +/F128_0 9.963 Tf +(Finally) 28.2351 Tj +65 TJm +(,) 2.49075 Tj +[1 0 0 1 104.568 562.59] cm +0 g +0 G +[1 0 0 1 -104.568 -562.59] cm +[1 0 0 1 0 0] Tm +0 0 Td +104.568 562.59 Td +/F130_0 9.963 Tf +(dlltest.c) 53.8002 Tj +[1 0 0 1 158.366 562.59] cm +0 g +0 G +[1 0 0 1 -158.366 -562.59] cm +[1 0 0 1 0 0] Tm +0 0 Td +160.856 562.59 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(sample) 28.2252 Tj +-250 TJm +(program) 33.7546 Tj +-250 TJm +(using) 21.5898 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(D) 7.19329 Tj +1 TJm +(LL.) 14.6655 Tj +-500 TJm +(It) 6.08739 Tj +-250 TJm +(has) 13.2807 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(project) 27.6673 Tj +-250 TJm +(\002le,) 15.2235 Tj +[1 0 0 1 388.58 562.59] cm +0 g +0 G +[1 0 0 1 -388.58 -562.59] cm +[1 0 0 1 0 0] Tm +0 0 Td +388.58 562.59 Td +/F130_0 9.963 Tf +(dlltest.dsp) 65.7558 Tj +[1 0 0 1 454.333 562.59] cm +0 g +0 G +[1 0 0 1 -454.333 -562.59] cm +[1 0 0 1 0 0] Tm +0 0 Td +454.333 562.59 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 560.433] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -550.471] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 540.672 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(just) 14.3965 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(mak) 17.1563 Tj +10 TJm +(e\002le) 17.1563 Tj +-250 TJm +(fo) 8.29918 Tj +1 TJm +(r) 3.31768 Tj +-250 TJm +(V) 7.19329 Tj +60 TJm +(isual) 18.8201 Tj +-250 TJm +(C,) 9.13607 Tj +-250 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(look) 17.7142 Tj +-250 TJm +(at) 7.19329 Tj +[1 0 0 1 292.212 540.672] cm +0 g +0 G +[1 0 0 1 -292.212 -540.672] cm +[1 0 0 1 0 0] Tm +0 0 Td +292.212 540.672 Td +/F130_0 9.963 Tf +(makefile.msc) 71.7336 Tj +[1 0 0 1 363.943 540.672] cm +0 g +0 G +[1 0 0 1 -363.943 -540.672] cm +[1 0 0 1 0 0] Tm +0 0 Td +363.943 540.672 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 538.516] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -528.553] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 518.755 Td +/F128_0 9.963 Tf +(Be) 11.0689 Tj +-291 TJm +(a) 4.42357 Tj +15 TJm +(w) 7.19329 Tj +10 TJm +(are) 12.1648 Tj +-291 TJm +(that) 14.9445 Tj +-291 TJm +(if) 6.08739 Tj +-291 TJm +(you) 14.9445 Tj +-291 TJm +(compile) 32.1008 Tj +[1 0 0 1 192.07 518.755] cm +0 g +0 G +[1 0 0 1 -192.07 -518.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +192.07 518.755 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 221.957 518.755] cm +0 g +0 G +[1 0 0 1 -221.957 -518.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +224.857 518.755 Td +/F128_0 9.963 Tf +(itself) 19.926 Tj +-291 TJm +(on) 9.963 Tj +-291 TJm +(W) 9.40507 Tj +40 TJm +(in32,) 20.205 Tj +-301 TJm +(you) 14.9445 Tj +-291 TJm +(must) 19.378 Tj +-291 TJm +(set) 11.0689 Tj +[1 0 0 1 346.842 518.755] cm +0 g +0 G +[1 0 0 1 -346.842 -518.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +346.842 518.755 Td +/F130_0 9.963 Tf +(BZ_UNIX) 41.8446 Tj +[1 0 0 1 388.685 518.755] cm +0 g +0 G +[1 0 0 1 -388.685 -518.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +391.584 518.755 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-291 TJm +(0) 4.9815 Tj +-291 TJm +(and) 14.3866 Tj +[1 0 0 1 427.399 518.755] cm +0 g +0 G +[1 0 0 1 -427.399 -518.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +427.399 518.755 Td +/F130_0 9.963 Tf +(BZ_LCCWIN32) 65.7558 Tj +[1 0 0 1 493.153 518.755] cm +0 g +0 G +[1 0 0 1 -493.153 -518.755] cm +[1 0 0 1 0 0] Tm +0 0 Td +496.052 518.755 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-291 TJm +(1,) 7.47225 Tj +-301 TJm +(in) 7.75121 Tj +-291 TJm +(the) 12.1748 Tj +72 506.8 Td +(\002le) 12.7327 Tj +[1 0 0 1 87.223 506.799] cm +0 g +0 G +[1 0 0 1 -87.223 -506.799] cm +[1 0 0 1 0 0] Tm +0 0 Td +87.223 506.799 Td +/F130_0 9.963 Tf +(bzip2.c) 41.8446 Tj +[1 0 0 1 129.066 506.799] cm +0 g +0 G +[1 0 0 1 -129.066 -506.799] cm +[1 0 0 1 0 0] Tm +0 0 Td +129.066 506.799 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(before) 25.4455 Tj +-250 TJm +(compiling.) 42.9007 Tj +-310 TJm +(Otherwi) 32.6488 Tj +1 TJm +(se) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(resulting) 34.8705 Tj +-250 TJm +(binary) 25.4555 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(on') 13.2807 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ork) 13.2807 Tj +-250 TJm +(correctly) 35.4085 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 504.643] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -494.68] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 484.882 Td +/F128_0 9.963 Tf +(I) 3.31768 Tj +-250 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(en') 12.7228 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(tried) 18.2622 Tj +-250 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(this) 14.3965 Tj +-250 TJm +(stuf) 14.9445 Tj +25 TJm +(f) 3.31768 Tj +-249 TJm +(myself,) 29.61 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(it) 5.53943 Tj +-250 TJm +(all) 9.963 Tj +-250 TJm +(looks) 21.5898 Tj +-250 TJm +(plausible.) 38.4671 Tj +[1 0 0 1 72 482.725] cm +0 g +0 G +0 g +0 G +[1 0 0 1 0 -431.873] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(30) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 34 34 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 140.398 0] cm +0 g +0 G +[1 0 0 1 -140.398 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -13.948] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -21.554] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -720] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 701.916 Td +/F121_0 24.79 Tf +(4.) 20.6749 Tj +-278 TJm +(Miscellanea) 139.171 Tj +[1 0 0 1 72 701.606] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.135] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -14.116] cm +0 g +0 G +[1 0 0 1 -72 -678.355] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 658.006 Td +/F121_0 17.215 Tf +(T) 10.5184 Tj +80 TJm +(ab) 20.0899 Tj +10 TJm +(le) 14.3573 Tj +-278 TJm +(of) 16.251 Tj +-278 TJm +(Contents) 74.5926 Tj +[1 0 0 1 72 649.183] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -11.74] cm +0 g +0 G +[1 0 0 1 -72 -637.443] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 637.443 Td +/F128_0 9.963 Tf +(4.1.) 14.9445 Tj +-310 TJm +(Limitations) 45.9494 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(comp) 22.1378 Tj +1 TJm +(ressed) 24.8975 Tj +-250 TJm +(\002le) 12.7327 Tj +-250 TJm +(format) 26.5614 Tj +[1 0 0 1 255.231 637.443] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -260.212 -637.443] cm +[1 0 0 1 0 0] Tm +0 0 Td +269.154 637.443 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 637.443] cm +0 g +0 G +[1 0 0 1 -506.127 -637.443] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 637.443 Td +/F128_0 9.963 Tf +(31) 9.963 Tj +[1 0 0 1 516.09 637.443] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -625.488] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 625.488 Td +/F128_0 9.963 Tf +(4.2.) 14.9445 Tj +-310 TJm +(Portability) 42.0737 Tj +-250 TJm +(issues) 23.8016 Tj +[1 0 0 1 158.395 625.488] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -163.376 -625.488] cm +[1 0 0 1 0 0] Tm +0 0 Td +172.03 625.488 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 625.488] cm +0 g +0 G +[1 0 0 1 -506.127 -625.488] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 625.488 Td +/F128_0 9.963 Tf +(32) 9.963 Tj +[1 0 0 1 516.09 625.488] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -613.533] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 613.533 Td +/F128_0 9.963 Tf +(4.3.) 14.9445 Tj +-310 TJm +(Reporting) 39.852 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ugs) 13.8386 Tj +[1 0 0 1 150.993 613.533] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 -155.975 -613.533] cm +[1 0 0 1 0 0] Tm +0 0 Td +166.115 613.533 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 613.533] cm +0 g +0 G +[1 0 0 1 -506.127 -613.533] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 613.533 Td +/F128_0 9.963 Tf +(32) 9.963 Tj +[1 0 0 1 516.09 613.533] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -601.578] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 601.578 Td +/F128_0 9.963 Tf +(4.4.) 14.9445 Tj +-310 TJm +(Did) 14.9445 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(get) 12.1748 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(right) 18.8201 Tj +-250 TJm +(packa) 23.2337 Tj +1 TJm +(ge?) 13.8286 Tj +[1 0 0 1 212.602 601.578] cm +0 g +0 G +[1 0 0 1 3.088 0] cm +0 g +0 G +[1 0 0 1 3.088 0] cm +0 g +0 G +[1 0 0 1 -218.778 -601.578] cm +[1 0 0 1 0 0] Tm +0 0 Td +229.109 601.578 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 601.578] cm +0 g +0 G +[1 0 0 1 -506.127 -601.578] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 601.578 Td +/F128_0 9.963 Tf +(33) 9.963 Tj +[1 0 0 1 516.09 601.578] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.798] cm +0 g +0 G +[1 0 0 1 -72 -589.623] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 589.623 Td +/F128_0 9.963 Tf +(4.5.) 14.9445 Tj +-310 TJm +(Further) 29.3311 Tj +-250 TJm +(Reading) 33.2067 Tj +[1 0 0 1 155.058 589.623] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 -160.039 -589.623] cm +[1 0 0 1 0 0] Tm +0 0 Td +170.361 589.623 Td +/F143_0 9.963 Tf +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +-166 TJm +(:) 2.76971 Tj +-167 TJm +(:) 2.76971 Tj +[1 0 0 1 506.127 589.623] cm +0 g +0 G +[1 0 0 1 -506.127 -589.623] cm +[1 0 0 1 0 0] Tm +0 0 Td +506.127 589.623 Td +/F128_0 9.963 Tf +(34) 9.963 Tj +[1 0 0 1 516.09 589.623] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -444.09 -2.157] cm +0 g +0 G +[1 0 0 1 0 -9.135] cm +0 g +0 G +[1 0 0 1 0 -9.631] cm +0 g +0 G +[1 0 0 1 -72 -568.7] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 558.901 Td +/F128_0 9.963 Tf +(These) 23.7916 Tj +-250 TJm +(are) 12.1648 Tj +-250 TJm +(just) 14.3965 Tj +-250 TJm +(some) 21.0319 Tj +-250 TJm +(random) 30.437 Tj +-249 TJm +(thoughts) 34.3225 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(mine.) 22.4168 Tj +-620 TJm +(Y) 7.19329 Tj +110 TJm +(our) 13.2807 Tj +-250 TJm +(mileage) 31.5429 Tj +-250 TJm +(may) 17.1563 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(ary) 12.7228 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 556.744] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.631] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -547.113] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 524.48 Td +/F121_0 20.659 Tf +(4.1.) 34.4592 Tj +-278 TJm +(Limitations) 110.195 Tj +-278 TJm +(of) 19.5021 Tj +-278 TJm +(the) 30.9885 Tj +-278 TJm +(compres) 86.1067 Tj +1 TJm +(sed) 35.5955 Tj +-278 TJm +(\002le) 29.8523 Tj +-278 TJm +(f) 6.87945 Tj +20 TJm +(ormat) 57.3907 Tj +[1 0 0 1 72 520.203] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.631] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -510.572] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 502.893 Td +/F130_0 9.963 Tf +(bzip2-1.0.X) 65.7558 Tj +[1 0 0 1 137.753 502.893] cm +0 g +0 G +[1 0 0 1 -137.753 -502.893] cm +[1 0 0 1 0 0] Tm +0 0 Td +137.753 502.893 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +[1 0 0 1 143.405 502.893] cm +0 g +0 G +[1 0 0 1 -143.405 -502.893] cm +[1 0 0 1 0 0] Tm +0 0 Td +143.405 502.893 Td +/F130_0 9.963 Tf +(0.9.5) 29.889 Tj +[1 0 0 1 173.293 502.893] cm +0 g +0 G +[1 0 0 1 -173.293 -502.893] cm +[1 0 0 1 0 0] Tm +0 0 Td +176.453 502.893 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 194 502.893] cm +0 g +0 G +[1 0 0 1 -194 -502.893] cm +[1 0 0 1 0 0] Tm +0 0 Td +194 502.893 Td +/F130_0 9.963 Tf +(0.9.0) 29.889 Tj +[1 0 0 1 223.888 502.893] cm +0 g +0 G +[1 0 0 1 -223.888 -502.893] cm +[1 0 0 1 0 0] Tm +0 0 Td +227.048 502.893 Td +/F128_0 9.963 Tf +(use) 13.2807 Tj +-317 TJm +(e) 4.42357 Tj +15 TJm +(xactly) 24.3496 Tj +-317 TJm +(the) 12.1748 Tj +-318 TJm +(s) 3.87561 Tj +1 TJm +(ame) 16.5984 Tj +-318 TJm +(\002le) 12.7327 Tj +-317 TJm +(format) 26.5614 Tj +-317 TJm +(as) 8.29918 Tj +-317 TJm +(the) 12.1748 Tj +-317 TJm +(original) 30.9949 Tj +-317 TJm +(v) 4.9815 Tj +15 TJm +(ersion,) 26.8403 Tj +[1 0 0 1 455.801 502.893] cm +0 g +0 G +[1 0 0 1 -455.801 -502.893] cm +[1 0 0 1 0 0] Tm +0 0 Td +455.801 502.893 Td +/F130_0 9.963 Tf +(bzip2-0.1) 53.8002 Tj +[1 0 0 1 509.599 502.893] cm +0 g +0 G +[1 0 0 1 -509.599 -502.893] cm +[1 0 0 1 0 0] Tm +0 0 Td +509.599 502.893 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-1023 TJm +(This) 17.7142 Tj +72 490.938 Td +(decision) 33.2067 Tj +-222 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-221 TJm +(made) 21.5799 Tj +-222 TJm +(in) 7.75121 Tj +-222 TJm +(the) 12.1748 Tj +-222 TJm +(interests) 33.2067 Tj +-221 TJm +(of) 8.29918 Tj +-222 TJm +(stability) 32.1107 Tj +65 TJm +(.) 2.49075 Tj +-601 TJm +(Creating) 34.3126 Tj +-222 TJm +(yet) 12.1748 Tj +-222 TJm +(another) 29.879 Tj +-222 TJm +(inc) 12.1748 Tj +1 TJm +(ompatible) 39.852 Tj +-222 TJm +(compressed) 47.0353 Tj +-222 TJm +(\002le) 12.7327 Tj +-222 TJm +(form) 19.3681 Tj +1 TJm +(at) 7.19329 Tj +-222 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-222 TJm +(create) 23.7817 Tj +72 478.983 Td +(further) 27.1093 Tj +-250 TJm +(confusion) 39.2941 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(disrupti) 30.4469 Tj +1 TJm +(on) 9.963 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(users.) 22.9647 Tj +[1 0 0 1 72 476.826] cm +0 g +0 G +[1 0 0 1 0 -9.632] cm +0 g +0 G +[1 0 0 1 -72 -467.194] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 457.396 Td +/F128_0 9.963 Tf +(Ne) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ertheless,) 37.3513 Tj +-233 TJm +(this) 14.3965 Tj +-230 TJm +(is) 6.64532 Tj +-229 TJm +(not) 12.7327 Tj +-230 TJm +(a) 4.42357 Tj +-229 TJm +(painless) 32.1008 Tj +-230 TJm +(decisio) 28.2252 Tj +1 TJm +(n.) 7.47225 Tj +-607 TJm +(De) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(elopment) 37.0823 Tj +-229 TJm +(w) 7.19329 Tj +10 TJm +(ork) 13.2807 Tj +-230 TJm +(si) 6.64532 Tj +1 TJm +(nce) 13.8286 Tj +-230 TJm +(the) 12.1748 Tj +-229 TJm +(release) 27.6573 Tj +-230 TJm +(of) 8.29918 Tj +[1 0 0 1 407.317 457.396] cm +0 g +0 G +[1 0 0 1 -407.317 -457.396] cm +[1 0 0 1 0 0] Tm +0 0 Td +407.317 457.396 Td +/F130_0 9.963 Tf +(bzip2-0.1) 53.8002 Tj +[1 0 0 1 461.115 457.396] cm +0 g +0 G +[1 0 0 1 -461.115 -457.396] cm +[1 0 0 1 0 0] Tm +0 0 Td +463.402 457.396 Td +/F128_0 9.963 Tf +(in) 7.75121 Tj +-229 TJm +(August) 28.7831 Tj +-230 TJm +(1997) 19.926 Tj +-229 TJm +(has) 13.2807 Tj +72 445.441 Td +(sho) 13.8386 Tj +25 TJm +(wn) 12.1748 Tj +-226 TJm +(comple) 29.3311 Tj +15 TJm +(xities) 21.5898 Tj +-225 TJm +(in) 7.75121 Tj +-226 TJm +(the) 12.1748 Tj +-226 TJm +(\002le) 12.7327 Tj +-226 TJm +(forma) 23.7916 Tj +1 TJm +(t) 2.76971 Tj +-226 TJm +(which) 24.3496 Tj +-226 TJm +(slo) 11.6268 Tj +25 TJm +(w) 7.19329 Tj +-226 TJm +(do) 9.963 Tj +25 TJm +(wn) 12.1748 Tj +-225 TJm +(decompression) 59.768 Tj +-226 TJm +(and,) 16.8773 Tj +-231 TJm +(in) 7.75121 Tj +-225 TJm +(retrospect,) 41.7749 Tj +-231 TJm +(are) 12.1648 Tj +-226 TJm +(unnecess) 35.9664 Tj +1 TJm +(ary) 12.7228 Tj +65 TJm +(.) 2.49075 Tj +-604 TJm +(These) 23.7916 Tj +-226 TJm +(are:) 14.9345 Tj +[1 0 0 1 72 443.284] cm +0 g +0 G +[1 0 0 1 0 -29.062] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -414.222] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 414.222 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 414.222] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -414.222] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 414.222 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-265 TJm +(run-length) 41.5059 Tj +-265 TJm +(encoder) 31.5329 Tj +40 TJm +(,) 2.49075 Tj +-269 TJm +(which) 24.3496 Tj +-266 TJm +(is) 6.64532 Tj +-265 TJm +(the) 12.1748 Tj +-265 TJm +(\002rst) 15.5024 Tj +-265 TJm +(of) 8.29918 Tj +-266 TJm +(the) 12.1748 Tj +-265 TJm +(compression) 50.363 Tj +-265 TJm +(transformations,) 65.0285 Tj +-269 TJm +(is) 6.64532 Tj +-265 TJm +(entirely) 30.437 Tj +-265 TJm +(irrele) 21.0219 Tj +25 TJm +(v) 4.9815 Tj +25 TJm +(ant.) 14.6655 Tj +-712 TJm +(The) 15.4925 Tj +-265 TJm +(original) 30.9949 Tj +86.944 402.267 Td +(purpose) 31.5429 Tj +-301 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-301 TJm +(to) 7.75121 Tj +-301 TJm +(protect) 27.6673 Tj +-301 TJm +(the) 12.1748 Tj +-301 TJm +(sorting) 27.6772 Tj +-301 TJm +(algorit) 26.0134 Tj +1 TJm +(hm) 12.7327 Tj +-301 TJm +(from) 19.3681 Tj +-301 TJm +(the) 12.1748 Tj +-301 TJm +(v) 4.9815 Tj +15 TJm +(ery) 12.7228 Tj +-301 TJm +(w) 7.19329 Tj +10 TJm +(orst) 14.9445 Tj +-301 TJm +(case) 17.1463 Tj +-301 TJm +(input:) 23.2536 Tj +-412 TJm +(a) 4.42357 Tj +-301 TJm +(string) 22.6957 Tj +-301 TJm +(of) 8.29918 Tj +-301 TJm +(repeated) 33.7447 Tj +-301 TJm +(symbols.) 35.7074 Tj +-926 TJm +(But) 14.3965 Tj +86.944 390.312 Td +(algorithm) 38.7461 Tj +-274 TJm +(steps) 19.926 Tj +-274 TJm +(Q6a) 16.5984 Tj +-275 TJm +(and) 14.3866 Tj +-274 TJm +(Q6b) 17.1563 Tj +-274 TJm +(in) 7.75121 Tj +-274 TJm +(the) 12.1748 Tj +-275 TJm +(original) 30.9949 Tj +-274 TJm +(Burro) 23.2437 Tj +25 TJm +(ws-Wheeler) 48.1313 Tj +-274 TJm +(technical) 35.9664 Tj +-274 TJm +(report) 23.7916 Tj +-274 TJm +(\(SRC-124\)) 43.7276 Tj +-274 TJm +(sho) 13.8386 Tj +25 TJm +(w) 7.19329 Tj +-275 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-274 TJm +(repeats) 28.2152 Tj +-274 TJm +(can) 13.8286 Tj +86.944 378.357 Td +(be) 9.40507 Tj +-250 TJm +(handled) 31.5429 Tj +-250 TJm +(without) 30.4469 Tj +-250 TJm +(dif) 11.0689 Tj +25 TJm +(\002culty) 25.4654 Tj +-249 TJm +(in) 7.75121 Tj +-250 TJm +(block) 22.1378 Tj +-250 TJm +(sorting.) 30.168 Tj +[1 0 0 1 269.617 378.357] cm +0 g +0 G +[1 0 0 1 -197.617 -21.587] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -356.77] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 356.77 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 356.77] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -356.77] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 356.77 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-293 TJm +(randomisation) 57.0083 Tj +-293 TJm +(mechanism) 45.3815 Tj +-293 TJm +(doesn') 26.5614 Tj +18 TJm +(t) 2.76971 Tj +-293 TJm +(really) 22.6858 Tj +-293 TJm +(need) 18.8101 Tj +-293 TJm +(to) 7.75121 Tj +-293 TJm +(be) 9.40507 Tj +-293 TJm +(there.) 22.4068 Tj +-879 TJm +(Udi) 14.9445 Tj +-294 TJm +(Man) 18.2622 Tj +1 TJm +(ber) 12.7228 Tj +-294 TJm +(and) 14.3866 Tj +-293 TJm +(Gene) 21.0219 Tj +-293 TJm +(Myers) 25.4555 Tj +-293 TJm +(published) 38.7461 Tj +-293 TJm +(a) 4.42357 Tj +-293 TJm +(suf) 12.1748 Tj +25 TJm +(\002x) 10.5209 Tj +86.944 344.815 Td +(array) 20.464 Tj +-238 TJm +(construction) 49.2571 Tj +-238 TJm +(algorithm) 38.7461 Tj +-239 TJm +(a) 4.42357 Tj +-238 TJm +(fe) 7.74125 Tj +25 TJm +(w) 7.19329 Tj +-238 TJm +(years) 21.0219 Tj +-238 TJm +(back,) 21.3009 Tj +-241 TJm +(which) 24.3496 Tj +-238 TJm +(can) 13.8286 Tj +-238 TJm +(be) 9.40507 Tj +-239 TJm +(emplo) 24.9075 Tj +10 TJm +(yed) 14.3866 Tj +-238 TJm +(to) 7.75121 Tj +-238 TJm +(sort) 14.9445 Tj +-239 TJm +(a) 4.42357 Tj +1 TJm +(n) 4.9815 Tj +15 TJm +(y) 4.9815 Tj +-239 TJm +(block,) 24.6285 Tj +-240 TJm +(no) 9.963 Tj +-239 TJm +(matter) 25.4555 Tj +-238 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-238 TJm +(repetiti) 28.2252 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e,) 6.91432 Tj +86.944 332.86 Td +(in) 7.75121 Tj +-229 TJm +(O\(N) 17.7043 Tj +-230 TJm +(log) 12.7327 Tj +-229 TJm +(N\)) 10.511 Tj +-230 TJm +(time.) 20.205 Tj +-606 TJm +(Subsequent) 45.9394 Tj +-229 TJm +(w) 7.19329 Tj +10 TJm +(ork) 13.2807 Tj +-229 TJm +(by) 9.963 Tj +-230 TJm +(K) 7.19329 Tj +15 TJm +(unihik) 25.4654 Tj +10 TJm +(o) 4.9815 Tj +-229 TJm +(Sadakane) 38.1782 Tj +-230 TJm +(ha) 9.40507 Tj +1 TJm +(s) 3.87561 Tj +-230 TJm +(produced) 37.0723 Tj +-229 TJm +(a) 4.42357 Tj +-230 TJm +(deri) 15.4925 Tj +25 TJm +(v) 4.9815 Tj +25 TJm +(ati) 9.963 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-229 TJm +(O\(N) 17.7043 Tj +-229 TJm +(\(log) 16.0504 Tj +-230 TJm +(N\)^2\)) 23.4828 Tj +-229 TJm +(algorithm) 38.7461 Tj +86.944 320.905 Td +(which) 24.3496 Tj +-250 TJm +(usually) 28.7831 Tj +-250 TJm +(outperforms) 48.6991 Tj +-250 TJm +(th) 7.75121 Tj +1 TJm +(e) 4.42357 Tj +-250 TJm +(Manber) 30.9849 Tj +20 TJm +(-Myers) 28.7731 Tj +-250 TJm +(algorithm.) 41.2369 Tj +[1 0 0 1 314.189 320.905] cm +0 g +0 G +[1 0 0 1 -242.189 -11.789] cm +0 g +0 G +[1 0 0 1 -72 -309.116] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 299.318 Td +/F128_0 9.963 Tf +(I) 3.31768 Tj +-248 TJm +(could) 22.1378 Tj +-248 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-248 TJm +(changed) 33.1967 Tj +-248 TJm +(to) 7.75121 Tj +-248 TJm +(Sadakane') 41.4959 Tj +55 TJm +(s) 3.87561 Tj +-248 TJm +(algor) 20.474 Tj +1 TJm +(ithm,) 20.7629 Tj +-249 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-248 TJm +(I) 3.31768 Tj +-248 TJm +(\002nd) 15.5024 Tj +-248 TJm +(it) 5.53943 Tj +-248 TJm +(to) 7.75121 Tj +-248 TJm +(be) 9.40507 Tj +-248 TJm +(slo) 11.6268 Tj +25 TJm +(wer) 14.9345 Tj +-248 TJm +(than) 17.1563 Tj +[1 0 0 1 392.444 299.318] cm +0 g +0 G +[1 0 0 1 -392.444 -299.318] cm +[1 0 0 1 0 0] Tm +0 0 Td +392.444 299.318 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 422.332 299.318] cm +0 g +0 G +[1 0 0 1 -422.332 -299.318] cm +[1 0 0 1 0 0] Tm +0 0 Td +422.332 299.318 Td +/F128_0 9.963 Tf +(') 3.31768 Tj +55 TJm +(s) 3.87561 Tj +-248 TJm +(e) 4.42357 Tj +15 TJm +(xisting) 27.1292 Tj +-248 TJm +(algorithm) 38.7461 Tj +-248 TJm +(for) 11.6169 Tj +-248 TJm +(most) 19.378 Tj +86.944 287.363 Td +(inputs,) 26.8503 Tj +-369 TJm +(and) 14.3866 Tj +-346 TJm +(the) 12.1748 Tj +-346 TJm +(randomis) 37.0823 Tj +1 TJm +(ation) 19.926 Tj +-346 TJm +(mechanism) 45.3815 Tj +-346 TJm +(p) 4.9815 Tj +1 TJm +(rotects) 26.5614 Tj +-346 TJm +(adequately) 43.1597 Tj +-345 TJm +(ag) 9.40507 Tj +5 TJm +(ainst) 18.8201 Tj +-346 TJm +(bad) 14.3866 Tj +-346 TJm +(cases) 21.0219 Tj +1 TJm +(.) 2.49075 Tj +-1194 TJm +(I) 3.31768 Tj +-346 TJm +(didn') 21.0319 Tj +18 TJm +(t) 2.76971 Tj +-346 TJm +(think) 20.4839 Tj +-345 TJm +(it) 5.53943 Tj +-346 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-345 TJm +(a) 4.42357 Tj +-346 TJm +(good) 19.926 Tj +86.944 275.408 Td +(tradeof) 28.2152 Tj +25 TJm +(f) 3.31768 Tj +-261 TJm +(to) 7.75121 Tj +-262 TJm +(mak) 17.1563 Tj +10 TJm +(e.) 6.91432 Tj +-690 TJm +(P) 5.53943 Tj +15 TJm +(artly) 18.2622 Tj +-261 TJm +(this) 14.3965 Tj +-262 TJm +(is) 6.64532 Tj +-261 TJm +(due) 14.3866 Tj +-262 TJm +(to) 7.75121 Tj +-261 TJm +(the) 12.1748 Tj +-262 TJm +(f) 3.31768 Tj +10 TJm +(act) 11.6169 Tj +-261 TJm +(that) 14.9445 Tj +-262 TJm +(I) 3.31768 Tj +-262 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-261 TJm +(not) 12.7327 Tj +-262 TJm +(\003ooded) 29.889 Tj +-261 TJm +(with) 17.7142 Tj +-262 TJm +(email) 22.1378 Tj +-261 TJm +(complaints) 43.7276 Tj +-262 TJm +(about) 22.1378 Tj +[1 0 0 1 479.557 275.408] cm +0 g +0 G +[1 0 0 1 -479.557 -275.408] cm +[1 0 0 1 0 0] Tm +0 0 Td +479.557 275.408 Td +/F130_0 9.963 Tf +(bzip2-0.1) 53.8002 Tj +[1 0 0 1 533.355 275.408] cm +0 g +0 G +[1 0 0 1 -533.355 -275.408] cm +[1 0 0 1 0 0] Tm +0 0 Td +533.355 275.408 Td +/F128_0 9.963 Tf +(') 3.31768 Tj +55 TJm +(s) 3.87561 Tj +86.944 263.453 Td +(performance) 50.343 Tj +-250 TJm +(on) 9.963 Tj +-250 TJm +(repetiti) 28.2252 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(dat) 12.1748 Tj +1 TJm +(a,) 6.91432 Tj +-250 TJm +(so) 8.85711 Tj +-250 TJm +(perhaps) 30.9849 Tj +-250 TJm +(it) 5.53943 Tj +-250 TJm +(isn') 14.9445 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(problem) 33.2067 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(real) 14.9345 Tj +-250 TJm +(inputs.) 26.8503 Tj +[1 0 0 1 72 261.296] cm +0 g +0 G +[1 0 0 1 0 -9.632] cm +0 g +0 G +[1 0 0 1 -72 -251.664] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 241.866 Td +/F128_0 9.963 Tf +(Probably) 35.9764 Tj +-289 TJm +(the) 12.1748 Tj +-288 TJm +(best) 16.0504 Tj +-289 TJm +(long-term) 39.2941 Tj +-288 TJm +(solution,) 34.6015 Tj +-299 TJm +(and) 14.3866 Tj +-288 TJm +(the) 12.1748 Tj +-289 TJm +(one) 14.3866 Tj +-289 TJm +(I) 3.31768 Tj +-288 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-289 TJm +(incorporated) 50.353 Tj +-288 TJm +(into) 15.5024 Tj +-289 TJm +(0.9.5) 19.926 Tj +-289 TJm +(and) 14.3866 Tj +-288 TJm +(abo) 14.3866 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e,) 6.91432 Tj +-298 TJm +(is) 6.64532 Tj +-289 TJm +(to) 7.75121 Tj +-289 TJm +(use) 13.2807 Tj +-288 TJm +(the) 12.1748 Tj +-289 TJm +(e) 4.42357 Tj +15 TJm +(xisting) 27.1292 Tj +86.944 229.911 Td +(sorting) 27.6772 Tj +-451 TJm +(algorithm) 38.7461 Tj +-451 TJm +(initially) 31.0049 Tj +65 TJm +(,) 2.49075 Tj +-502 TJm +(and) 14.3866 Tj +-451 TJm +(f) 3.31768 Tj +10 TJm +(all) 9.963 Tj +-452 TJm +(back) 18.8101 Tj +-451 TJm +(to) 7.75121 Tj +-451 TJm +(a) 4.42357 Tj +-452 TJm +(O\(N) 17.7043 Tj +-451 TJm +(\(log) 16.0504 Tj +-451 TJm +(N\)^2\)) 23.4828 Tj +-451 TJm +(algorithm) 38.7461 Tj +-452 TJm +(if) 6.08739 Tj +-451 TJm +(the) 12.1748 Tj +-451 TJm +(standard) 33.7546 Tj +-452 TJm +(al) 7.19329 Tj +1 TJm +(gorithm) 31.5528 Tj +-452 TJm +(gets) 16.0504 Tj +-451 TJm +(into) 15.5024 Tj +86.944 217.956 Td +(dif) 11.0689 Tj +25 TJm +(\002culties.) 34.0436 Tj +[1 0 0 1 72 217.856] cm +0 g +0 G +[1 0 0 1 0 -21.487] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -196.369] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 196.369 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 196.369] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -196.369] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 196.369 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-299 TJm +(compressed) 47.0353 Tj +-299 TJm +(\002le) 12.7327 Tj +-299 TJm +(format) 26.5614 Tj +-299 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-299 TJm +(ne) 9.40507 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-299 TJm +(designed) 35.4185 Tj +-299 TJm +(to) 7.75121 Tj +-299 TJm +(be) 9.40507 Tj +-299 TJm +(handled) 31.5429 Tj +-299 TJm +(by) 9.963 Tj +-299 TJm +(a) 4.42357 Tj +-299 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-312 TJm +(and) 14.3866 Tj +-299 TJm +(I) 3.31768 Tj +-299 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-299 TJm +(had) 14.3866 Tj +-299 TJm +(to) 7.75121 Tj +-299 TJm +(jump) 20.4839 Tj +-299 TJm +(though) 27.6772 Tj +-299 TJm +(some) 21.0319 Tj +86.944 184.414 Td +(hoops) 23.8016 Tj +-278 TJm +(to) 7.75121 Tj +-277 TJm +(produce) 32.0908 Tj +-278 TJm +(an) 9.40507 Tj +-277 TJm +(ef) 7.74125 Tj +25 TJm +(\002cient) 24.9075 Tj +-278 TJm +(implementation) 62.5477 Tj +-277 TJm +(of) 8.29918 Tj +-278 TJm +(decompression.) 62.2588 Tj +-786 TJm +(It') 9.40507 Tj +55 TJm +(s) 3.87561 Tj +-278 TJm +(a) 4.42357 Tj +-277 TJm +(bit) 10.5209 Tj +-278 TJm +(hairy) 20.474 Tj +65 TJm +(.) 2.49075 Tj +-786 TJm +(T) 6.08739 Tj +35 TJm +(ry) 8.29918 Tj +-278 TJm +(passing) 29.889 Tj +[1 0 0 1 468.269 184.414] cm +0 g +0 G +[1 0 0 1 -468.269 -184.414] cm +[1 0 0 1 0 0] Tm +0 0 Td +468.269 184.414 Td +/F130_0 9.963 Tf +(decompress.c) 71.7336 Tj +[1 0 0 1 540 184.414] cm +0 g +0 G +[1 0 0 1 -540 -184.414] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 172.459 Td +/F128_0 9.963 Tf +(through) 30.9949 Tj +-268 TJm +(the) 12.1748 Tj +-268 TJm +(C) 6.64532 Tj +-268 TJm +(preprocessor) 50.901 Tj +-268 TJm +(and) 14.3866 Tj +-268 TJm +(you') 18.2622 Tj +10 TJm +(ll) 5.53943 Tj +-268 TJm +(see) 12.7228 Tj +-268 TJm +(what) 19.3681 Tj +-268 TJm +(I) 3.31768 Tj +-269 TJm +(mea) 16.5984 Tj +1 TJm +(n.) 7.47225 Tj +-729 TJm +(Much) 23.2437 Tj +-268 TJm +(of) 8.29918 Tj +-269 TJm +(this) 14.3965 Tj +-268 TJm +(comple) 29.3311 Tj +15 TJm +(xit) 10.5209 Tj +1 TJm +(y) 4.9815 Tj +-269 TJm +(could) 22.1378 Tj +-268 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-268 TJm +(been) 18.8101 Tj +-268 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +20 TJm +(oided) 22.1378 Tj +-268 TJm +(if) 6.08739 Tj +-268 TJm +(the) 12.1748 Tj +86.944 160.503 Td +(compressed) 47.0353 Tj +-250 TJm +(size) 15.4925 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(each) 18.2522 Tj +-250 TJm +(bloc) 17.1563 Tj +1 TJm +(k) 4.9815 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-250 TJm +(recorded) 34.8506 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(data) 16.5984 Tj +-250 TJm +(stream.) 29.0521 Tj +[1 0 0 1 368.754 160.503] cm +0 g +0 G +[1 0 0 1 -296.754 -21.586] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -138.917] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 138.917 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 138.917] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -138.917] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 138.917 Td +/F128_0 9.963 Tf +(An) 12.1748 Tj +-250 TJm +(Adler) 22.6858 Tj +20 TJm +(-32) 13.2807 Tj +-250 TJm +(checksum,) 42.3328 Tj +-250 TJm +(rather) 23.2337 Tj +-249 TJm +(than) 17.1563 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(CRC32) 29.899 Tj +-250 TJm +(checksum,) 42.3328 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(f) 3.31768 Tj +10 TJm +(aster) 18.8101 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(compute.) 36.8033 Tj +[1 0 0 1 424.934 138.917] cm +0 g +0 G +[1 0 0 1 -352.934 -11.789] cm +0 g +0 G +[1 0 0 1 -72 -127.128] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 117.33 Td +/F128_0 9.963 Tf +(It) 6.08739 Tj +-349 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-349 TJm +(be) 9.40507 Tj +-348 TJm +(f) 3.31768 Tj +10 TJm +(air) 10.511 Tj +-349 TJm +(to) 7.75121 Tj +-349 TJm +(say) 13.2807 Tj +-349 TJm +(that) 14.9445 Tj +-348 TJm +(the) 12.1748 Tj +[1 0 0 1 201.979 117.33] cm +0 g +0 G +[1 0 0 1 -201.979 -117.33] cm +[1 0 0 1 0 0] Tm +0 0 Td +201.979 117.33 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 231.867 117.33] cm +0 g +0 G +[1 0 0 1 -231.867 -117.33] cm +[1 0 0 1 0 0] Tm +0 0 Td +235.342 117.33 Td +/F128_0 9.963 Tf +(format) 26.5614 Tj +-349 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-348 TJm +(frozen) 25.4455 Tj +-349 TJm +(before) 25.4455 Tj +-349 TJm +(I) 3.31768 Tj +-349 TJm +(properl) 28.7731 Tj +1 TJm +(y) 4.9815 Tj +-349 TJm +(and) 14.3866 Tj +-349 TJm +(fully) 18.8201 Tj +-349 TJm +(understood) 44.2756 Tj +-348 TJm +(the) 12.1748 Tj +-349 TJm +(performance) 50.343 Tj +72 105.375 Td +(consequences) 54.7766 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(doing) 22.6957 Tj +-250 TJm +(so.) 11.3479 Tj +[1 0 0 1 72 103.218] cm +0 g +0 G +[1 0 0 1 0 -9.631] cm +0 g +0 G +[1 0 0 1 -72 -93.587] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 83.788 Td +/F128_0 9.963 Tf +(Impro) 24.3496 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(ements) 28.2252 Tj +-250 TJm +(which) 24.3496 Tj +-250 TJm +(I) 3.31768 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(as) 8.29918 Tj +-250 TJm +(abl) 12.1748 Tj +1 TJm +(e) 4.42357 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(incorporate) 45.3715 Tj +-250 TJm +(into) 15.5024 Tj +-250 TJm +(0.9.0,) 22.4168 Tj +-250 TJm +(despite) 28.2252 Tj +-250 TJm +(using) 21.5898 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(same) 20.474 Tj +-250 TJm +(\002le) 12.7327 Tj +-250 TJm +(for) 11.6169 Tj +1 TJm +(mat,) 17.4353 Tj +-250 TJm +(are:) 14.9345 Tj +[1 0 0 1 72 81.631] cm +0 g +0 G +[1 0 0 1 0 -30.779] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(31) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 35 35 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -6.854] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 116.329 -6.755] cm +0 g +0 G +[1 0 0 1 -382.4 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F128_0 9.963 Tf +(Miscellanea) 48.1412 Tj +[1 0 0 1 266.071 749.146] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -7.094] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -31.517] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 710.037 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 710.037] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 710.037 Td +/F128_0 9.963 Tf +(Single) 25.4654 Tj +-202 TJm +(ar) 7.74125 Tj +1 TJm +(ray) 12.7228 Tj +-202 TJm +(implementation) 62.5477 Tj +-201 TJm +(of) 8.29918 Tj +-202 TJm +(the) 12.1748 Tj +-202 TJm +(in) 7.75121 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(erse) 16.0404 Tj +-201 TJm +(BWT) 22.1378 Tj +74 TJm +(.) 2.49075 Tj +-403 TJm +(This) 17.7142 Tj +-202 TJm +(signi\002cantly) 49.267 Tj +-201 TJm +(speeds) 26.5614 Tj +-202 TJm +(up) 9.963 Tj +-202 TJm +(decom) 26.5614 Tj +1 TJm +(pression,) 35.6974 Tj +-212 TJm +(presuma) 33.7546 Tj +1 TJm +(bly) 12.7327 Tj +-202 TJm +(because) 31.5329 Tj +86.944 698.082 Td +(it) 5.53943 Tj +-250 TJm +(reduces) 30.427 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(number) 30.437 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(cach) 18.2522 Tj +1 TJm +(e) 4.42357 Tj +-250 TJm +(misses.) 29.0621 Tj +[1 0 0 1 240.496 698.082] cm +0 g +0 G +[1 0 0 1 -168.496 -21.918] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 676.164 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 676.164] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -676.164] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 676.164 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(aster) 18.8101 Tj +-314 TJm +(in) 7.75121 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(erse) 16.0404 Tj +-315 TJm +(MTF) 20.4839 Tj +-314 TJm +(transform) 38.7361 Tj +-314 TJm +(for) 11.6169 Tj +-315 TJm +(lar) 10.511 Tj +18 TJm +(ge) 9.40507 Tj +-314 TJm +(MTF) 20.4839 Tj +-314 TJm +(v) 4.9815 Tj +25 TJm +(alues.) 22.9647 Tj +-504 TJm +(The) 15.4925 Tj +-314 TJm +(ne) 9.40507 Tj +25 TJm +(w) 7.19329 Tj +-315 TJm +(i) 2.76971 Tj +1 TJm +(mplementation) 59.778 Tj +-315 TJm +(is) 6.64532 Tj +-314 TJm +(based) 22.6858 Tj +-314 TJm +(on) 9.963 Tj +-315 TJm +(the) 12.1748 Tj +-314 TJm +(notion) 25.4654 Tj +-315 TJm +(of) 8.29918 Tj +-314 TJm +(sliding) 27.1292 Tj +86.944 664.209 Td +(blocks) 26.0134 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(v) 4.9815 Tj +25 TJm +(alues.) 22.9647 Tj +[1 0 0 1 153.932 664.209] cm +0 g +0 G +[1 0 0 1 -81.932 -21.918] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 642.291 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 642.291] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -86.944 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 642.291 Td +/F130_0 9.963 Tf +(bzip2-0.9.0) 65.7558 Tj +[1 0 0 1 152.697 642.291] cm +0 g +0 G +[1 0 0 1 -152.697 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +155.412 642.291 Td +/F128_0 9.963 Tf +(no) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-272 TJm +(reads) 21.0219 Tj +-273 TJm +(and) 14.3866 Tj +-272 TJm +(writes) 24.3496 Tj +-272 TJm +(\002les) 16.6083 Tj +-273 TJm +(with) 17.7142 Tj +[1 0 0 1 282.68 642.291] cm +0 g +0 G +[1 0 0 1 -282.68 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +282.68 642.291 Td +/F130_0 9.963 Tf +(fread) 29.889 Tj +[1 0 0 1 312.568 642.291] cm +0 g +0 G +[1 0 0 1 -312.568 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +315.282 642.291 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 332.383 642.291] cm +0 g +0 G +[1 0 0 1 -332.383 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +332.383 642.291 Td +/F130_0 9.963 Tf +(fwrite) 35.8668 Tj +[1 0 0 1 368.248 642.291] cm +0 g +0 G +[1 0 0 1 -368.248 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +368.248 642.291 Td +/F128_0 9.963 Tf +(;) 2.76971 Tj +-284 TJm +(v) 4.9815 Tj +15 TJm +(ersion) 24.3496 Tj +-272 TJm +(0.1) 12.4538 Tj +-272 TJm +(used) 18.2622 Tj +[1 0 0 1 441.882 642.291] cm +0 g +0 G +[1 0 0 1 -441.882 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +441.882 642.291 Td +/F130_0 9.963 Tf +(putc) 23.9112 Tj +[1 0 0 1 465.792 642.291] cm +0 g +0 G +[1 0 0 1 -465.792 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +468.507 642.291 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 485.607 642.291] cm +0 g +0 G +[1 0 0 1 -485.607 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +485.607 642.291 Td +/F130_0 9.963 Tf +(getc) 23.9112 Tj +[1 0 0 1 509.517 642.291] cm +0 g +0 G +[1 0 0 1 -509.517 -642.291] cm +[1 0 0 1 0 0] Tm +0 0 Td +509.517 642.291 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-755 TJm +(Duh!) 20.474 Tj +86.944 630.336 Td +(W) 9.40507 Tj +80 TJm +(ell,) 12.4538 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(li) 5.53943 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(learn.) 22.4068 Tj +[1 0 0 1 184.248 630.336] cm +0 g +0 G +[1 0 0 1 -112.248 -12.119] cm +0 g +0 G +[1 0 0 1 -72 -618.217] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 608.418 Td +/F128_0 9.963 Tf +(Further) 29.3311 Tj +-304 TJm +(ahead,) 25.7245 Tj +-318 TJm +(it) 5.53943 Tj +-305 TJm +(w) 7.19329 Tj +10 TJm +(ould) 17.7142 Tj +-304 TJm +(be) 9.40507 Tj +-304 TJm +(nice) 16.5984 Tj +-305 TJm +(to) 7.75121 Tj +-304 TJm +(be) 9.40507 Tj +-304 TJm +(able) 16.5984 Tj +-305 TJm +(to) 7.75121 Tj +-304 TJm +(do) 9.963 Tj +-305 TJm +(random) 30.437 Tj +-304 TJm +(access) 25.4455 Tj +-304 TJm +(into) 15.5024 Tj +-305 TJm +(\002l) 8.30914 Tj +1 TJm +(es.) 10.7899 Tj +-947 TJm +(This) 17.7142 Tj +-304 TJm +(will) 15.5024 Tj +-305 TJm +(require) 28.2152 Tj +-304 TJm +(some) 21.0319 Tj +-304 TJm +(careful) 27.6573 Tj +-305 TJm +(design) 26.0134 Tj +-304 TJm +(of) 8.29918 Tj +72 596.463 Td +(compressed) 47.0353 Tj +-250 TJm +(\002le) 12.7327 Tj +-250 TJm +(formats.) 32.9277 Tj +[1 0 0 1 72 594.306] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -584.344] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 561.71 Td +/F121_0 20.659 Tf +(4.2.) 34.4592 Tj +-278 TJm +(P) 13.7796 Tj +40 TJm +(or) 20.659 Tj +-20 TJm +(tability) 66.584 Tj +-278 TJm +(issues) 64.3115 Tj +[1 0 0 1 72 557.434] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -547.472] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 539.793 Td +/F128_0 9.963 Tf +(After) 21.0219 Tj +-250 TJm +(some) 21.0319 Tj +-250 TJm +(consideration,) 56.1714 Tj +-250 TJm +(I) 3.31768 Tj +-250 TJm +(h) 4.9815 Tj +1 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(decided) 30.9849 Tj +-250 TJm +(not) 12.7327 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(use) 13.2807 Tj +-250 TJm +(GNU) 21.5799 Tj +[1 0 0 1 303.231 539.793] cm +0 g +0 G +[1 0 0 1 -303.231 -539.793] cm +[1 0 0 1 0 0] Tm +0 0 Td +303.231 539.793 Td +/F130_0 9.963 Tf +(autoconf) 47.8224 Tj +[1 0 0 1 351.052 539.793] cm +0 g +0 G +[1 0 0 1 -351.052 -539.793] cm +[1 0 0 1 0 0] Tm +0 0 Td +353.542 539.793 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-250 TJm +(con\002gure) 37.6303 Tj +-250 TJm +(0.9.5) 19.926 Tj +-250 TJm +(or) 8.29918 Tj +-250 TJm +(1.0.) 14.9445 Tj +[1 0 0 1 72 537.636] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -527.673] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 517.875 Td +/F130_0 9.963 Tf +(autoconf) 47.8224 Tj +[1 0 0 1 119.821 517.875] cm +0 g +0 G +[1 0 0 1 -119.821 -517.875] cm +[1 0 0 1 0 0] Tm +0 0 Td +119.821 517.875 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-502 TJm +(admirable) 39.842 Tj +-452 TJm +(and) 14.3866 Tj +-452 TJm +(w) 7.19329 Tj +10 TJm +(onderful) 33.7546 Tj +-452 TJm +(though) 27.6772 Tj +-451 TJm +(it) 5.53943 Tj +-452 TJm +(is,) 9.13607 Tj +-503 TJm +(mainly) 27.6772 Tj +-451 TJm +(assists) 25.4654 Tj +-452 TJm +(with) 17.7142 Tj +-452 TJm +(portability) 41.5158 Tj +-452 TJm +(problems) 37.0823 Tj +-451 TJm +(between) 33.1967 Tj +-452 TJm +(Unix-lik) 33.7646 Tj +10 TJm +(e) 4.42357 Tj +72 505.92 Td +(platforms.) 40.6789 Tj +-1398 TJm +(But) 14.3965 Tj +[1 0 0 1 144.784 505.92] cm +0 g +0 G +[1 0 0 1 -144.784 -505.92] cm +[1 0 0 1 0 0] Tm +0 0 Td +144.784 505.92 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 174.672 505.92] cm +0 g +0 G +[1 0 0 1 -174.672 -505.92] cm +[1 0 0 1 0 0] Tm +0 0 Td +178.455 505.92 Td +/F128_0 9.963 Tf +(doesn') 26.5614 Tj +18 TJm +(t) 2.76971 Tj +-380 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +16 TJm +(e) 4.42357 Tj +-380 TJm +(much) 22.1378 Tj +-380 TJm +(in) 7.75121 Tj +-379 TJm +(the) 12.1748 Tj +-380 TJm +(w) 7.19329 Tj +10 TJm +(ay) 9.40507 Tj +-380 TJm +(of) 8.29918 Tj +-379 TJm +(portability) 41.5158 Tj +-380 TJm +(problems) 37.0823 Tj +-379 TJm +(on) 9.963 Tj +-380 TJm +(Unix;) 22.6957 Tj +-444 TJm +(most) 19.378 Tj +-380 TJm +(of) 8.29918 Tj +-379 TJm +(the) 12.1748 Tj +-380 TJm +(dif) 11.0689 Tj +25 TJm +(\002culties) 31.5528 Tj +72 493.964 Td +(appear) 26.5514 Tj +-297 TJm +(when) 21.5799 Tj +-296 TJm +(porting) 28.7831 Tj +-297 TJm +(to) 7.75121 Tj +-297 TJm +(the) 12.1748 Tj +-296 TJm +(Mac,) 20.195 Tj +-309 TJm +(or) 8.29918 Tj +-296 TJm +(to) 7.75121 Tj +-297 TJm +(Microsoft') 42.6118 Tj +55 TJm +(s) 3.87561 Tj +-297 TJm +(oper) 17.7043 Tj +1 TJm +(ating) 19.926 Tj +-297 TJm +(systems.) 34.0436 Tj +[1 0 0 1 361.339 493.964] cm +0 g +0 G +[1 0 0 1 -361.339 -493.964] cm +[1 0 0 1 0 0] Tm +0 0 Td +361.339 493.964 Td +/F130_0 9.963 Tf +(autoconf) 47.8224 Tj +[1 0 0 1 409.16 493.964] cm +0 g +0 G +[1 0 0 1 -409.16 -493.964] cm +[1 0 0 1 0 0] Tm +0 0 Td +412.116 493.964 Td +/F128_0 9.963 Tf +(doesn') 26.5614 Tj +18 TJm +(t) 2.76971 Tj +-297 TJm +(help) 17.1563 Tj +-296 TJm +(in) 7.75121 Tj +-297 TJm +(those) 21.0319 Tj +-297 TJm +(cases,) 23.5127 Tj +-308 TJm +(and) 14.3866 Tj +72 482.009 Td +(brings) 24.9075 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(whole) 24.3496 Tj +-250 TJm +(load) 17.1563 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(ne) 9.40507 Tj +25 TJm +(w) 7.19329 Tj +-250 TJm +(c) 4.42357 Tj +1 TJm +(omple) 24.9075 Tj +15 TJm +(xity) 15.5024 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 479.852] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -469.89] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 460.091 Td +/F128_0 9.963 Tf +(Most) 20.4839 Tj +-392 TJm +(people) 26.5614 Tj +-392 TJm +(should) 26.5713 Tj +-392 TJm +(be) 9.40507 Tj +-393 TJm +(able) 16.5984 Tj +-392 TJm +(to) 7.75121 Tj +-392 TJm +(compile) 32.1008 Tj +-392 TJm +(the) 12.1748 Tj +-392 TJm +(library) 26.5614 Tj +-392 TJm +(and) 14.3866 Tj +-393 TJm +(prog) 18.2622 Tj +1 TJm +(ram) 15.4925 Tj +-393 TJm +(under) 22.6858 Tj +-392 TJm +(Unix) 19.926 Tj +-392 TJm +(straight) 29.889 Tj +-392 TJm +(out-of-the-box,) 60.595 Tj +-428 TJm +(so) 8.85711 Tj +-392 TJm +(to) 7.75121 Tj +-392 TJm +(speak,) 25.1765 Tj +72 448.136 Td +(especially) 39.842 Tj +-250 TJm +(if) 6.08739 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(v) 4.9815 Tj +15 TJm +(ersio) 19.3681 Tj +1 TJm +(n) 4.9815 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(GNU) 21.5799 Tj +-250 TJm +(C) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailable.) 29.0521 Tj +[1 0 0 1 72 445.979] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -436.017] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 426.218 Td +/F128_0 9.963 Tf +(There) 23.2337 Tj +-258 TJm +(are) 12.1648 Tj +-259 TJm +(a) 4.42357 Tj +-259 TJm +(coupl) 22.1378 Tj +1 TJm +(e) 4.42357 Tj +-259 TJm +(of) 8.29918 Tj +[1 0 0 1 159.561 426.218] cm +0 g +0 G +[1 0 0 1 -159.561 -426.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +159.561 426.218 Td +/F130_0 9.963 Tf +(__inline__) 59.778 Tj +[1 0 0 1 219.337 426.218] cm +0 g +0 G +[1 0 0 1 -219.337 -426.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +221.913 426.218 Td +/F128_0 9.963 Tf +(directi) 25.4555 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-258 TJm +(in) 7.75121 Tj +-259 TJm +(the) 12.1748 Tj +-258 TJm +(code.) 21.3009 Tj +-672 TJm +(GNU) 21.5799 Tj +-258 TJm +(C) 6.64532 Tj +-259 TJm +(\() 3.31768 Tj +[1 0 0 1 352.587 426.218] cm +0 g +0 G +[1 0 0 1 -352.587 -426.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +352.587 426.218 Td +/F130_0 9.963 Tf +(gcc) 17.9334 Tj +[1 0 0 1 370.52 426.218] cm +0 g +0 G +[1 0 0 1 -370.52 -426.218] cm +[1 0 0 1 0 0] Tm +0 0 Td +370.52 426.218 Td +/F128_0 9.963 Tf +(\)) 3.31768 Tj +-259 TJm +(sho) 13.8386 Tj +1 TJm +(uld) 12.7327 Tj +-259 TJm +(be) 9.40507 Tj +-259 TJm +(able) 16.5984 Tj +-258 TJm +(to) 7.75121 Tj +-259 TJm +(handle) 26.5614 Tj +-258 TJm +(them.) 22.4168 Tj +-672 TJm +(If) 6.63536 Tj +-258 TJm +(you') 18.2622 Tj +50 TJm +(re) 7.74125 Tj +72 414.263 Td +(not) 12.7327 Tj +-279 TJm +(using) 21.5898 Tj +-279 TJm +(GNU) 21.5799 Tj +-279 TJm +(C,) 9.13607 Tj +-279 TJm +(your) 18.2622 Tj +-279 TJm +(C) 6.64532 Tj +-279 TJm +(compile) 32.1008 Tj +1 TJm +(r) 3.31768 Tj +-279 TJm +(shouldn') 34.8705 Tj +18 TJm +(t) 2.76971 Tj +-279 TJm +(see) 12.7228 Tj +-279 TJm +(them) 19.926 Tj +-279 TJm +(at) 7.19329 Tj +-279 TJm +(all.) 12.4538 Tj +-794 TJm +(If) 6.63536 Tj +-279 TJm +(your) 18.2622 Tj +-279 TJm +(compiler) 35.4185 Tj +-279 TJm +(does,) 20.7529 Tj +-286 TJm +(for) 11.6169 Tj +-279 TJm +(some) 21.0319 Tj +-279 TJm +(reason,) 28.4942 Tj +-286 TJm +(see) 12.7228 Tj +-279 TJm +(them) 19.926 Tj +-279 TJm +(and) 14.3866 Tj +72 402.308 Td +(doesn') 26.5614 Tj +18 TJm +(t) 2.76971 Tj +-283 TJm +(lik) 10.5209 Tj +10 TJm +(e) 4.42357 Tj +-283 TJm +(them,) 22.4168 Tj +-291 TJm +(just) 14.3965 Tj +[1 0 0 1 164.167 402.308] cm +0 g +0 G +[1 0 0 1 -164.167 -402.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +164.167 402.308 Td +/F130_0 9.963 Tf +(#define) 41.8446 Tj +[1 0 0 1 206.01 402.308] cm +0 g +0 G +[1 0 0 1 2.819 0] cm +0 g +0 G +[1 0 0 1 -208.829 -402.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +208.829 402.308 Td +/F130_0 9.963 Tf +(__inline__) 59.778 Tj +[1 0 0 1 268.605 402.308] cm +0 g +0 G +[1 0 0 1 -268.605 -402.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +271.425 402.308 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-283 TJm +(be) 9.40507 Tj +[1 0 0 1 294.22 402.308] cm +0 g +0 G +[1 0 0 1 -294.22 -402.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +294.22 402.308 Td +/F130_0 9.963 Tf +(/*) 11.9556 Tj +-600 TJm +(*/) 11.9556 Tj +[1 0 0 1 324.108 402.308] cm +0 g +0 G +[1 0 0 1 -324.108 -402.308] cm +[1 0 0 1 0 0] Tm +0 0 Td +324.108 402.308 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-818 TJm +(One) 16.5984 Tj +-283 TJm +(easy) 17.7043 Tj +-283 TJm +(w) 7.19329 Tj +10 TJm +(ay) 9.40507 Tj +-283 TJm +(to) 7.75121 Tj +-283 TJm +(do) 9.963 Tj +-283 TJm +(this) 14.3965 Tj +-283 TJm +(is) 6.64532 Tj +-283 TJm +(to) 7.75121 Tj +-283 TJm +(compile) 32.1008 Tj +-283 TJm +(with) 17.7142 Tj +-283 TJm +(th) 7.75121 Tj +1 TJm +(e) 4.42357 Tj +-283 TJm +(\003ag) 14.9445 Tj +[1 0 0 1 72 390.353] cm +0 g +0 G +[1 0 0 1 -72 -390.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 390.353 Td +/F130_0 9.963 Tf +(-D__inline__=) 77.7114 Tj +[1 0 0 1 149.709 390.353] cm +0 g +0 G +[1 0 0 1 -149.709 -390.353] cm +[1 0 0 1 0 0] Tm +0 0 Td +149.709 390.353 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-250 TJm +(which) 24.3496 Tj +-250 TJm +(should) 26.5713 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(understood) 44.2756 Tj +-249 TJm +(by) 9.963 Tj +-250 TJm +(most) 19.378 Tj +-250 TJm +(Unix) 19.926 Tj +-250 TJm +(compilers.) 41.7848 Tj +[1 0 0 1 72 388.196] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -378.234] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 368.435 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-321 TJm +(you) 14.9445 Tj +-321 TJm +(still) 14.9545 Tj +-321 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-322 TJm +(dif) 11.0689 Tj +25 TJm +(\002cul) 17.7142 Tj +1 TJm +(ties,) 16.3294 Tj +-339 TJm +(try) 11.0689 Tj +-322 TJm +(compi) 24.9075 Tj +1 TJm +(ling) 15.5024 Tj +-322 TJm +(with) 17.7142 Tj +-321 TJm +(the) 12.1748 Tj +-321 TJm +(macro) 24.8975 Tj +[1 0 0 1 310.295 368.435] cm +0 g +0 G +[1 0 0 1 -310.295 -368.435] cm +[1 0 0 1 0 0] Tm +0 0 Td +310.295 368.435 Td +/F130_0 9.963 Tf +(BZ_STRICT_ANSI) 83.6892 Tj +[1 0 0 1 393.981 368.435] cm +0 g +0 G +[1 0 0 1 -393.981 -368.435] cm +[1 0 0 1 0 0] Tm +0 0 Td +397.18 368.435 Td +/F128_0 9.963 Tf +(de\002ned.) 31.8218 Tj +-524 TJm +(This) 17.7142 Tj +-321 TJm +(should) 26.5713 Tj +-321 TJm +(enable) 26.0034 Tj +-321 TJm +(you) 14.9445 Tj +-321 TJm +(to) 7.75121 Tj +72 356.48 Td +(b) 4.9815 Tj +20 TJm +(uild) 15.5024 Tj +-321 TJm +(the) 12.1748 Tj +-321 TJm +(library) 26.5614 Tj +-321 TJm +(in) 7.75121 Tj +-322 TJm +(a) 4.42357 Tj +-321 TJm +(strictly) 27.6772 Tj +-321 TJm +(ANSI) 23.2437 Tj +-321 TJm +(compliant) 39.852 Tj +-321 TJm +(en) 9.40507 Tj +40 TJm +(vironment.) 43.4486 Tj +-1047 TJm +(Building) 34.8805 Tj +-321 TJm +(the) 12.1748 Tj +-321 TJm +(program) 33.7546 Tj +-321 TJm +(itself) 19.926 Tj +-321 TJm +(lik) 10.5209 Tj +10 TJm +(e) 4.42357 Tj +-322 TJm +(this) 14.3965 Tj +-321 TJm +(is) 6.64532 Tj +-321 TJm +(dangerous) 40.9479 Tj +-321 TJm +(and) 14.3866 Tj +72 344.525 Td +(not) 12.7327 Tj +-260 TJm +(supported,) 41.7848 Tj +-263 TJm +(since) 20.474 Tj +-260 TJm +(you) 14.9445 Tj +-260 TJm +(remo) 20.474 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +[1 0 0 1 204.498 344.525] cm +0 g +0 G +[1 0 0 1 -204.498 -344.525] cm +[1 0 0 1 0 0] Tm +0 0 Td +204.498 344.525 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 234.385 344.525] cm +0 g +0 G +[1 0 0 1 -234.385 -344.525] cm +[1 0 0 1 0 0] Tm +0 0 Td +234.385 344.525 Td +/F128_0 9.963 Tf +(') 3.31768 Tj +55 TJm +(s) 3.87561 Tj +-260 TJm +(checks) 27.1093 Tj +-260 TJm +(ag) 9.40507 Tj +5 TJm +(ainst) 18.8201 Tj +-260 TJm +(compressing) 50.363 Tj +-260 TJm +(directories,) 44.5446 Tj +-263 TJm +(symbolic) 36.5343 Tj +-260 TJm +(links,) 21.8688 Tj +-262 TJm +(de) 9.40507 Tj +25 TJm +(vices,) 22.9647 Tj +-263 TJm +(and) 14.3866 Tj +-260 TJm +(other) 20.474 Tj +72 332.57 Td +(not-really-a-\002le) 62.5278 Tj +-250 TJm +(entities.) 31.2739 Tj +-619 TJm +(This) 17.7142 Tj +-250 TJm +(could) 22.1378 Tj +-250 TJm +(cause) 22.1278 Tj +-250 TJm +(\002lesystem) 40.4099 Tj +-250 TJm +(corruption!) 44.8235 Tj +[1 0 0 1 72 330.413] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -320.45] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 310.652 Td +/F128_0 9.963 Tf +(One) 16.5984 Tj +-392 TJm +(othe) 17.1563 Tj +1 TJm +(r) 3.31768 Tj +-392 TJm +(thing:) 23.2536 Tj +-593 TJm +(if) 6.08739 Tj +-392 TJm +(you) 14.9445 Tj +-391 TJm +(create) 23.7817 Tj +-392 TJm +(a) 4.42357 Tj +[1 0 0 1 210.879 310.652] cm +0 g +0 G +[1 0 0 1 -210.879 -310.652] cm +[1 0 0 1 0 0] Tm +0 0 Td +210.879 310.652 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 240.767 310.652] cm +0 g +0 G +[1 0 0 1 -240.767 -310.652] cm +[1 0 0 1 0 0] Tm +0 0 Td +244.669 310.652 Td +/F128_0 9.963 Tf +(binary) 25.4555 Tj +-392 TJm +(fo) 8.29918 Tj +1 TJm +(r) 3.31768 Tj +-392 TJm +(public) 24.9075 Tj +-392 TJm +(distrib) 25.4654 Tj +20 TJm +(u) 4.9815 Tj +1 TJm +(tion,) 17.9932 Tj +-427 TJm +(please) 24.8975 Tj +-392 TJm +(consider) 33.7546 Tj +-391 TJm +(linking) 28.2351 Tj +-392 TJm +(it) 5.53943 Tj +-392 TJm +(s) 3.87561 Tj +1 TJm +(tatically) 32.1008 Tj +-392 TJm +(\() 3.31768 Tj +[1 0 0 1 522.067 310.652] cm +0 g +0 G +[1 0 0 1 -522.067 -310.652] cm +[1 0 0 1 0 0] Tm +0 0 Td +522.067 310.652 Td +/F130_0 9.963 Tf +(gcc) 17.9334 Tj +72 298.697 Td +(-static) 41.8446 Tj +[1 0 0 1 113.843 298.697] cm +0 g +0 G +[1 0 0 1 -113.843 -298.697] cm +[1 0 0 1 0 0] Tm +0 0 Td +113.843 298.697 Td +/F128_0 9.963 Tf +(\).) 5.80843 Tj +-620 TJm +(This) 17.7142 Tj +-250 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +20 TJm +(oids) 16.6083 Tj +-250 TJm +(all) 9.963 Tj +-250 TJm +(sorts) 18.8201 Tj +-250 TJm +(of) 8.29918 Tj +-250 TJm +(lib) 10.5209 Tj +1 TJm +(rary-v) 24.3396 Tj +15 TJm +(ersion) 24.3496 Tj +-250 TJm +(issues) 23.8016 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(others) 24.3496 Tj +-250 TJm +(may) 17.1563 Tj +-250 TJm +(encounter) 39.2841 Tj +-250 TJm +(later) 17.7043 Tj +-250 TJm +(on.) 12.4538 Tj +[1 0 0 1 72 296.54] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -286.577] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 276.779 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-296 TJm +(you) 14.9445 Tj +-296 TJm +(b) 4.9815 Tj +20 TJm +(uild) 15.5024 Tj +[1 0 0 1 122.708 276.779] cm +0 g +0 G +[1 0 0 1 -122.708 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +122.708 276.779 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 152.596 276.779] cm +0 g +0 G +[1 0 0 1 -152.596 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +155.545 276.779 Td +/F128_0 9.963 Tf +(on) 9.963 Tj +-296 TJm +(W) 9.40507 Tj +40 TJm +(in32,) 20.205 Tj +-307 TJm +(you) 14.9445 Tj +-296 TJm +(must) 19.378 Tj +-296 TJm +(set) 11.0689 Tj +[1 0 0 1 254.965 276.779] cm +0 g +0 G +[1 0 0 1 -254.965 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +254.965 276.779 Td +/F130_0 9.963 Tf +(BZ_UNIX) 41.8446 Tj +[1 0 0 1 296.808 276.779] cm +0 g +0 G +[1 0 0 1 -296.808 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +299.756 276.779 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-296 TJm +(0) 4.9815 Tj +-296 TJm +(and) 14.3866 Tj +[1 0 0 1 335.72 276.779] cm +0 g +0 G +[1 0 0 1 -335.72 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +335.72 276.779 Td +/F130_0 9.963 Tf +(BZ_LCCWIN32) 65.7558 Tj +[1 0 0 1 401.473 276.779] cm +0 g +0 G +[1 0 0 1 -401.473 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +404.422 276.779 Td +/F128_0 9.963 Tf +(to) 7.75121 Tj +-296 TJm +(1,) 7.47225 Tj +-307 TJm +(in) 7.75121 Tj +-296 TJm +(the) 12.1748 Tj +-296 TJm +(\002le) 12.7327 Tj +[1 0 0 1 467.159 276.779] cm +0 g +0 G +[1 0 0 1 -467.159 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +467.159 276.779 Td +/F130_0 9.963 Tf +(bzip2.c) 41.8446 Tj +[1 0 0 1 509.002 276.779] cm +0 g +0 G +[1 0 0 1 -509.002 -276.779] cm +[1 0 0 1 0 0] Tm +0 0 Td +509.002 276.779 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-307 TJm +(before) 25.4455 Tj +72 264.824 Td +(compiling.) 42.9007 Tj +-310 TJm +(Otherwise) 40.9479 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(re) 7.74125 Tj +1 TJm +(sulting) 27.1292 Tj +-250 TJm +(binary) 25.4555 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(on') 13.2807 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ork) 13.2807 Tj +-250 TJm +(correctly) 35.4085 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 262.667] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -252.704] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 230.071 Td +/F121_0 20.659 Tf +(4.3.) 34.4592 Tj +-278 TJm +(Repor) 59.6839 Tj +-20 TJm +(ting) 37.8679 Tj +-278 TJm +(b) 12.6226 Tj +20 TJm +(ugs) 36.7317 Tj +[1 0 0 1 72 225.475] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -215.512] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 208.153 Td +/F128_0 9.963 Tf +(I) 3.31768 Tj +-228 TJm +(tried) 18.2622 Tj +-228 TJm +(pretty) 23.2437 Tj +-228 TJm +(hard) 17.7043 Tj +-228 TJm +(t) 2.76971 Tj +1 TJm +(o) 4.9815 Tj +-228 TJm +(mak) 17.1563 Tj +10 TJm +(e) 4.42357 Tj +-228 TJm +(sure) 16.5984 Tj +[1 0 0 1 196.25 208.153] cm +0 g +0 G +[1 0 0 1 -196.25 -208.153] cm +[1 0 0 1 0 0] Tm +0 0 Td +196.25 208.153 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 226.138 208.153] cm +0 g +0 G +[1 0 0 1 -226.138 -208.153] cm +[1 0 0 1 0 0] Tm +0 0 Td +228.409 208.153 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-228 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-228 TJm +(free,) 17.9733 Tj +-232 TJm +(both) 17.7142 Tj +-228 TJm +(by) 9.963 Tj +-228 TJm +(design) 26.0134 Tj +-228 TJm +(and) 14.3866 Tj +-228 TJm +(by) 9.963 Tj +-228 TJm +(te) 7.19329 Tj +1 TJm +(sting.) 21.8688 Tj +-606 TJm +(Hopefully) 40.4 Tj +-227 TJm +(you') 18.2622 Tj +10 TJm +(ll) 5.53943 Tj +-228 TJm +(ne) 9.40507 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +-228 TJm +(need) 18.8101 Tj +-228 TJm +(to) 7.75121 Tj +-228 TJm +(read) 17.1463 Tj +72 196.198 Td +(this) 14.3965 Tj +-250 TJm +(section) 28.2252 Tj +-250 TJm +(for) 11.6169 Tj +-250 TJm +(real.) 17.4253 Tj +[1 0 0 1 72 196.098] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -186.136] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 174.28 Td +/F128_0 9.963 Tf +(Ne) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ertheless,) 37.3513 Tj +-313 TJm +(if) 6.08739 Tj +[1 0 0 1 137.751 174.28] cm +0 g +0 G +[1 0 0 1 -137.751 -174.28] cm +[1 0 0 1 0 0] Tm +0 0 Td +137.751 174.28 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 167.639 174.28] cm +0 g +0 G +[1 0 0 1 -167.639 -174.28] cm +[1 0 0 1 0 0] Tm +0 0 Td +170.634 174.28 Td +/F128_0 9.963 Tf +(dies) 16.0504 Tj +-301 TJm +(w) 7.19329 Tj +1 TJm +(ith) 10.5209 Tj +-301 TJm +(a) 4.42357 Tj +-301 TJm +(se) 8.29918 Tj +15 TJm +(gm) 12.7327 Tj +1 TJm +(entation) 32.1008 Tj +-301 TJm +(f) 3.31768 Tj +10 TJm +(ault,) 17.4353 Tj +-313 TJm +(a) 4.42357 Tj +-301 TJm +(b) 4.9815 Tj +20 TJm +(us) 8.85711 Tj +-300 TJm +(error) 19.3581 Tj +-301 TJm +(or) 8.29918 Tj +-300 TJm +(an) 9.40507 Tj +-301 TJm +(internal) 30.437 Tj +-300 TJm +(assertion) 35.4185 Tj +-301 TJm +(f) 3.31768 Tj +10 TJm +(ailure,) 25.1765 Tj +-313 TJm +(it) 5.53943 Tj +-300 TJm +(will) 15.5024 Tj +-301 TJm +(ask) 13.2807 Tj +-300 TJm +(you) 14.9445 Tj +-301 TJm +(to) 7.75121 Tj +72 162.325 Td +(email) 22.1378 Tj +-242 TJm +(me) 12.1748 Tj +-243 TJm +(a) 4.42357 Tj +-242 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-243 TJm +(r) 3.31768 Tj +1 TJm +(eport.) 22.9647 Tj +-615 TJm +(Experience) 44.8136 Tj +-243 TJm +(from) 19.3681 Tj +-242 TJm +(years) 21.0219 Tj +-242 TJm +(of) 8.29918 Tj +-243 TJm +(feedback) 35.9565 Tj +-242 TJm +(of) 8.29918 Tj +-242 TJm +(bzip2) 22.1378 Tj +-243 TJm +(users) 20.474 Tj +-242 TJm +(indicates) 35.4185 Tj +-242 TJm +(that) 14.9445 Tj +-243 TJm +(almost) 26.5713 Tj +-242 TJm +(all) 9.963 Tj +-242 TJm +(these) 20.474 Tj +-243 TJm +(problems) 37.0823 Tj +-242 TJm +(can) 13.8286 Tj +72 150.37 Td +(be) 9.40507 Tj +-250 TJm +(traced) 24.3396 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(either) 22.6858 Tj +-250 TJm +(compiler) 35.4185 Tj +-249 TJm +(b) 4.9815 Tj +20 TJm +(ugs) 13.8386 Tj +-250 TJm +(or) 8.29918 Tj +-250 TJm +(hardw) 24.8975 Tj +10 TJm +(are) 12.1648 Tj +-250 TJm +(problems.) 39.573 Tj +[1 0 0 1 72 148.213] cm +0 g +0 G +[1 0 0 1 0 -97.361] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(32) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 36 36 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -6.854] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 116.329 -6.755] cm +0 g +0 G +[1 0 0 1 -382.4 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F128_0 9.963 Tf +(Miscellanea) 48.1412 Tj +[1 0 0 1 266.071 749.146] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -7.094] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -468 -31.517] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 710.037 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 710.037] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -710.037] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 710.037 Td +/F128_0 9.963 Tf +(Recompile) 43.1697 Tj +-306 TJm +(the) 12.1748 Tj +-306 TJm +(program) 33.7546 Tj +-306 TJm +(with) 17.7142 Tj +-305 TJm +(no) 9.963 Tj +-306 TJm +(optimisation,) 52.3157 Tj +-320 TJm +(and) 14.3866 Tj +-306 TJm +(see) 12.7228 Tj +-306 TJm +(if) 6.08739 Tj +-306 TJm +(it) 5.53943 Tj +-306 TJm +(w) 7.19329 Tj +10 TJm +(orks.) 19.647 Tj +-956 TJm +(And/or) 28.2252 Tj +-306 TJm +(try) 11.0689 Tj +-306 TJm +(a) 4.42357 Tj +-306 TJm +(dif) 11.0689 Tj +25 TJm +(fe) 7.74125 Tj +1 TJm +(rent) 15.4925 Tj +-306 TJm +(compiler) 35.4185 Tj +55 TJm +(.) 2.49075 Tj +-956 TJm +(I) 3.31768 Tj +-306 TJm +(heard) 22.1278 Tj +-306 TJm +(all) 9.963 Tj +86.944 698.082 Td +(sorts) 18.8201 Tj +-282 TJm +(of) 8.29918 Tj +-282 TJm +(stories) 26.0134 Tj +-282 TJm +(about) 22.1378 Tj +-282 TJm +(v) 4.9815 Tj +25 TJm +(arious) 24.3496 Tj +-282 TJm +(\003a) 9.963 Tj +20 TJm +(v) 4.9815 Tj +20 TJm +(ours) 17.1563 Tj +-282 TJm +(of) 8.29918 Tj +-282 TJm +(GNU) 21.5799 Tj +-282 TJm +(C) 6.64532 Tj +-283 TJm +(\(a) 7.74125 Tj +1 TJm +(nd) 9.963 Tj +-283 TJm +(other) 20.474 Tj +-282 TJm +(compiler) 35.4185 Tj +1 TJm +(s\)) 7.19329 Tj +-283 TJm +(genera) 26.5514 Tj +1 TJm +(ting) 15.5024 Tj +-283 TJm +(bad) 14.3866 Tj +-282 TJm +(code) 18.8101 Tj +-282 TJm +(for) 11.6169 Tj +[1 0 0 1 472.141 698.082] cm +0 g +0 G +[1 0 0 1 -472.141 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +472.141 698.082 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 502.029 698.082] cm +0 g +0 G +[1 0 0 1 -502.029 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +502.029 698.082 Td +/F128_0 9.963 Tf +(,) 2.49075 Tj +-290 TJm +(and) 14.3866 Tj +-282 TJm +(I') 6.63536 Tj +50 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +86.944 686.127 Td +(run) 13.2807 Tj +-250 TJm +(across) 24.8975 Tj +-250 TJm +(tw) 9.963 Tj +10 TJm +(o) 4.9815 Tj +-250 TJm +(such) 18.2622 Tj +-250 TJm +(e) 4.42357 Tj +15 TJm +(xamples) 33.2067 Tj +-249 TJm +(myself.) 29.61 Tj +[1 0 0 1 237.767 686.127] cm +0 g +0 G +[1 0 0 1 -165.767 -12.119] cm +0 g +0 G +[1 0 0 1 -72 -674.008] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 664.209 Td +/F128_0 9.963 Tf +(2.7.X) 22.1378 Tj +-279 TJm +(v) 4.9815 Tj +15 TJm +(ersions) 28.2252 Tj +-280 TJm +(of) 8.29918 Tj +-279 TJm +(GNU) 21.5799 Tj +-280 TJm +(C) 6.64532 Tj +-279 TJm +(are) 12.1648 Tj +-280 TJm +(kno) 14.9445 Tj +25 TJm +(wn) 12.1748 Tj +-279 TJm +(to) 7.75121 Tj +-280 TJm +(generate) 33.7447 Tj +-279 TJm +(bad) 14.3866 Tj +-280 TJm +(code) 18.8101 Tj +-279 TJm +(from) 19.3681 Tj +-280 TJm +(time) 17.7142 Tj +-279 TJm +(to) 7.75121 Tj +-280 TJm +(time,) 20.205 Tj +-287 TJm +(at) 7.19329 Tj +-279 TJm +(high) 17.7142 Tj +-280 TJm +(optimisation) 49.825 Tj +-279 TJm +(le) 7.19329 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(els.) 13.5596 Tj +-797 TJm +(If) 6.63536 Tj +-280 TJm +(you) 14.9445 Tj +86.944 652.254 Td +(get) 12.1748 Tj +-295 TJm +(problems,) 39.573 Tj +-307 TJm +(try) 11.0689 Tj +-296 TJm +(u) 4.9815 Tj +1 TJm +(sing) 16.6083 Tj +-296 TJm +(the) 12.1748 Tj +-295 TJm +(\003ags) 18.8201 Tj +[1 0 0 1 220.116 652.254] cm +0 g +0 G +[1 0 0 1 -220.116 -652.254] cm +[1 0 0 1 0 0] Tm +0 0 Td +220.116 652.254 Td +/F130_0 9.963 Tf +(-O2) 17.9334 Tj +[1 0 0 1 238.049 652.254] cm +0 g +0 G +[1 0 0 1 2.944 0] cm +0 g +0 G +[1 0 0 1 -240.993 -652.254] cm +[1 0 0 1 0 0] Tm +0 0 Td +240.993 652.254 Td +/F130_0 9.963 Tf +(-fomit-frame-pointer) 119.556 Tj +[1 0 0 1 360.544 652.254] cm +0 g +0 G +[1 0 0 1 2.944 0] cm +0 g +0 G +[1 0 0 1 -363.488 -652.254] cm +[1 0 0 1 0 0] Tm +0 0 Td +363.488 652.254 Td +/F130_0 9.963 Tf +(-fno-strength-reduce) 119.556 Tj +[1 0 0 1 483.04 652.254] cm +0 g +0 G +[1 0 0 1 -483.04 -652.254] cm +[1 0 0 1 0 0] Tm +0 0 Td +483.04 652.254 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-893 TJm +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-295 TJm +(should) 26.5713 Tj +86.944 640.299 Td +(speci\002cally) 45.3815 Tj +[1 0 0 1 134.814 640.299] cm +0 g +0 G +[1 0 0 1 -134.814 -640.299] cm +[1 0 0 1 0 0] Tm +0 0 Td +134.814 640.299 Td +/F631_0 9.963 Tf +(not) 12.7327 Tj +[1 0 0 1 147.546 640.299] cm +0 g +0 G +[1 0 0 1 -147.546 -640.299] cm +[1 0 0 1 0 0] Tm +0 0 Td +150.037 640.299 Td +/F128_0 9.963 Tf +(use) 13.2807 Tj +[1 0 0 1 165.807 640.299] cm +0 g +0 G +[1 0 0 1 -165.807 -640.299] cm +[1 0 0 1 0 0] Tm +0 0 Td +165.807 640.299 Td +/F130_0 9.963 Tf +(-funroll-loops) 83.6892 Tj +[1 0 0 1 249.493 640.299] cm +0 g +0 G +[1 0 0 1 -249.493 -640.299] cm +[1 0 0 1 0 0] Tm +0 0 Td +249.493 640.299 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +[1 0 0 1 72 638.142] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -628.179] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 618.381 Td +/F128_0 9.963 Tf +(Y) 7.19329 Tj +110 TJm +(ou) 9.963 Tj +-249 TJm +(may) 17.1563 Tj +-248 TJm +(notice) 24.3496 Tj +-249 TJm +(that) 14.9445 Tj +-249 TJm +(the) 12.1748 Tj +-249 TJm +(M) 8.85711 Tj +1 TJm +(ak) 9.40507 Tj +10 TJm +(e\002le) 17.1563 Tj +-249 TJm +(runs) 17.1563 Tj +-249 TJm +(six) 11.6268 Tj +-249 TJm +(test) 13.8386 Tj +1 TJm +(s) 3.87561 Tj +-249 TJm +(as) 8.29918 Tj +-249 TJm +(part) 15.4925 Tj +-249 TJm +(of) 8.29918 Tj +-248 TJm +(the) 12.1748 Tj +-249 TJm +(b) 4.9815 Tj +20 TJm +(uild) 15.5024 Tj +-249 TJm +(process.) 32.3698 Tj +-619 TJm +(If) 6.63536 Tj +-249 TJm +(the) 12.1748 Tj +-248 TJm +(program) 33.7546 Tj +-249 TJm +(passes) 25.4555 Tj +-249 TJm +(all) 9.963 Tj +-248 TJm +(of) 8.29918 Tj +-249 TJm +(these,) 22.9647 Tj +-249 TJm +(it') 8.85711 Tj +55 TJm +(s) 3.87561 Tj +86.944 606.426 Td +(a) 4.42357 Tj +-250 TJm +(pretty) 23.2437 Tj +-250 TJm +(good) 19.926 Tj +-250 TJm +(\(b) 8.29918 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(not) 12.7327 Tj +-250 TJm +(100%\)) 26.5614 Tj +-250 TJm +(in) 7.75121 Tj +1 TJm +(dication) 32.1008 Tj +-250 TJm +(that) 14.9445 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(compiler) 35.4185 Tj +-250 TJm +(has) 13.2807 Tj +-250 TJm +(done) 19.3681 Tj +-250 TJm +(its) 9.41504 Tj +-250 TJm +(job) 12.7327 Tj +-250 TJm +(correctly) 35.4085 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 604.269] cm +0 g +0 G +[1 0 0 1 0 -19.761] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 584.508 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 584.508] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 584.508 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +[1 0 0 1 95.956 584.508] cm +0 g +0 G +[1 0 0 1 -95.956 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +95.956 584.508 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 125.844 584.508] cm +0 g +0 G +[1 0 0 1 -125.844 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +128.22 584.508 Td +/F128_0 9.963 Tf +(crashes) 29.3211 Tj +-238 TJm +(randomly) 38.1882 Tj +65 TJm +(,) 2.49075 Tj +-241 TJm +(and) 14.3866 Tj +-239 TJm +(the) 12.1748 Tj +-238 TJm +(crashes) 29.3211 Tj +-239 TJm +(are) 12.1648 Tj +-238 TJm +(not) 12.7327 Tj +-239 TJm +(repea) 21.5699 Tj +1 TJm +(table,) 21.8588 Tj +-241 TJm +(you) 14.9445 Tj +-239 TJm +(may) 17.1563 Tj +-238 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-239 TJm +(a) 4.42357 Tj +-238 TJm +(\003ak) 14.9445 Tj +15 TJm +(y) 4.9815 Tj +-239 TJm +(memory) 33.2067 Tj +-238 TJm +(subsystem.) 44.0066 Tj +[1 0 0 1 510.112 584.508] cm +0 g +0 G +[1 0 0 1 -510.112 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +510.112 584.508 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 540 584.508] cm +0 g +0 G +[1 0 0 1 -540 -584.508] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 572.553 Td +/F128_0 9.963 Tf +(really) 22.6858 Tj +-253 TJm +(hammers) 36.5244 Tj +-254 TJm +(your) 18.2622 Tj +-253 TJm +(memory) 33.2067 Tj +-254 TJm +(hierarch) 32.6388 Tj +5 TJm +(y) 4.9815 Tj +65 TJm +(,) 2.49075 Tj +-254 TJm +(and) 14.3866 Tj +-254 TJm +(if) 6.08739 Tj +-253 TJm +(it') 8.85711 Tj +55 TJm +(s) 3.87561 Tj +-254 TJm +(a) 4.42357 Tj +-253 TJm +(bit) 10.5209 Tj +-254 TJm +(mar) 15.4925 Tj +18 TJm +(ginal,) 22.4168 Tj +-254 TJm +(you) 14.9445 Tj +-254 TJm +(may) 17.1563 Tj +-253 TJm +(get) 12.1748 Tj +-254 TJm +(these) 20.474 Tj +-253 TJm +(problems.) 39.573 Tj +-642 TJm +(D) 7.19329 Tj +1 TJm +(itto) 13.2906 Tj +-254 TJm +(if) 6.08739 Tj +-254 TJm +(you) 14.9445 Tj +1 TJm +(r) 3.31768 Tj +-254 TJm +(disk) 16.6083 Tj +86.944 560.598 Td +(or) 8.29918 Tj +-250 TJm +(I/O) 13.2807 Tj +-250 TJm +(subsystem) 41.5158 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(slo) 11.6268 Tj +25 TJm +(wly) 14.9445 Tj +-249 TJm +(f) 3.31768 Tj +10 TJm +(ailing.) 25.1865 Tj +-620 TJm +(Y) 7.19329 Tj +111 TJm +(up,) 12.4538 Tj +-250 TJm +(this) 14.3965 Tj +-250 TJm +(really) 22.6858 Tj +-250 TJm +(does) 18.2622 Tj +-250 TJm +(happen.) 31.2639 Tj +[1 0 0 1 345.143 560.598] cm +0 g +0 G +[1 0 0 1 -273.143 -12.12] cm +0 g +0 G +[1 0 0 1 -72 -548.478] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 538.68 Td +/F128_0 9.963 Tf +(T) 6.08739 Tj +35 TJm +(ry) 8.29918 Tj +-250 TJm +(using) 21.5898 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(dif) 11.0689 Tj +25 TJm +(ferent) 23.2337 Tj +-250 TJm +(machine) 33.7546 Tj +-249 TJm +(of) 8.29918 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(same) 20.474 Tj +-250 TJm +(type,) 19.647 Tj +-250 TJm +(and) 14.3866 Tj +-250 TJm +(see) 12.7228 Tj +-250 TJm +(if) 6.08739 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(can) 13.8286 Tj +-250 TJm +(repeat) 24.3396 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(problem.) 35.6974 Tj +[1 0 0 1 72 536.523] cm +0 g +0 G +[1 0 0 1 0 -19.761] cm +0 g +0 G +[1 0 0 1 6.974 0] cm +0 g +0 G +[1 0 0 1 -78.974 -516.762] cm +[1 0 0 1 0 0] Tm +0 0 Td +78.974 516.762 Td +/F128_0 9.963 Tf +(\225) 3.48705 Tj +[1 0 0 1 82.461 516.762] cm +0 g +0 G +[1 0 0 1 2.49 0] cm +0 g +0 G +[1 0 0 1 1.993 0] cm +0 g +0 G +[1 0 0 1 -86.944 -516.762] cm +[1 0 0 1 0 0] Tm +0 0 Td +86.944 516.762 Td +/F128_0 9.963 Tf +(This) 17.7142 Tj +-229 TJm +(isn') 14.9445 Tj +18 TJm +(t) 2.76971 Tj +-230 TJm +(real) 14.9345 Tj +1 TJm +(ly) 7.75121 Tj +-230 TJm +(a) 4.42357 Tj +-229 TJm +(b) 4.9815 Tj +20 TJm +(ug,) 12.4538 Tj +-234 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-229 TJm +(...) 7.47225 Tj +-303 TJm +(If) 6.63536 Tj +[1 0 0 1 212.232 516.762] cm +0 g +0 G +[1 0 0 1 -212.232 -516.762] cm +[1 0 0 1 0 0] Tm +0 0 Td +212.232 516.762 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 242.12 516.762] cm +0 g +0 G +[1 0 0 1 -242.12 -516.762] cm +[1 0 0 1 0 0] Tm +0 0 Td +244.405 516.762 Td +/F128_0 9.963 Tf +(tells) 16.6083 Tj +-229 TJm +(you) 14.9445 Tj +-230 TJm +(your) 18.2622 Tj +-229 TJm +(\002le) 12.7327 Tj +-229 TJm +(is) 6.64532 Tj +-229 TJm +(corrupted) 38.1782 Tj +-230 TJm +(on) 9.963 Tj +-229 TJm +(decompression,) 62.2588 Tj +-233 TJm +(and) 14.3866 Tj +-230 TJm +(you) 14.9445 Tj +-229 TJm +(obtained) 34.3126 Tj +-229 TJm +(the) 12.1748 Tj +-229 TJm +(\002le) 12.7327 Tj +86.944 504.807 Td +(via) 12.1748 Tj +-262 TJm +(FTP) 17.1662 Tj +111 TJm +(,) 2.49075 Tj +-262 TJm +(there) 19.916 Tj +-263 TJm +(is) 6.64532 Tj +-262 TJm +(a) 4.42357 Tj +-262 TJm +(possibility) 41.5258 Tj +-262 TJm +(that) 14.9445 Tj +-263 TJm +(y) 4.9815 Tj +1 TJm +(ou) 9.963 Tj +-263 TJm +(for) 11.6169 Tj +18 TJm +(got) 12.7327 Tj +-262 TJm +(to) 7.75121 Tj +-262 TJm +(tell) 12.7327 Tj +-262 TJm +(FTP) 17.1662 Tj +-263 TJm +(to) 7.75121 Tj +-262 TJm +(do) 9.963 Tj +-262 TJm +(a) 4.42357 Tj +-262 TJm +(binary) 25.4555 Tj +-263 TJm +(mode) 22.1378 Tj +-262 TJm +(transfer) 30.427 Tj +55 TJm +(.) 2.49075 Tj +-694 TJm +(Th) 11.0689 Tj +1 TJm +(at) 7.19329 Tj +-263 TJm +(absolutely) 40.9579 Tj +-262 TJm +(will) 15.5024 Tj +-262 TJm +(cause) 22.1278 Tj +86.944 492.852 Td +(the) 12.1748 Tj +-250 TJm +(\002le) 12.7327 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(be) 9.40507 Tj +-250 TJm +(non-decompress) 65.2975 Tj +1 TJm +(ible.) 17.4353 Tj +-620 TJm +(Y) 7.19329 Tj +110 TJm +(ou') 13.2807 Tj +10 TJm +(ll) 5.53943 Tj +-250 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(transfer) 30.427 Tj +-250 TJm +(it) 5.53943 Tj +-250 TJm +(ag) 9.40507 Tj +5 TJm +(ain.) 14.6655 Tj +[1 0 0 1 351.34 492.852] cm +0 g +0 G +[1 0 0 1 -279.34 -12.12] cm +0 g +0 G +[1 0 0 1 -72 -480.732] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 470.934 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-235 TJm +(you') 18.2622 Tj +50 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-235 TJm +(incorporated) 50.353 Tj +[1 0 0 1 163.036 470.934] cm +0 g +0 G +[1 0 0 1 -163.036 -470.934] cm +[1 0 0 1 0 0] Tm +0 0 Td +163.036 470.934 Td +/F130_0 9.963 Tf +(libbzip2) 47.8224 Tj +[1 0 0 1 210.856 470.934] cm +0 g +0 G +[1 0 0 1 -210.856 -470.934] cm +[1 0 0 1 0 0] Tm +0 0 Td +213.2 470.934 Td +/F128_0 9.963 Tf +(into) 15.5024 Tj +-235 TJm +(your) 18.2622 Tj +-235 TJm +(o) 4.9815 Tj +25 TJm +(wn) 12.1748 Tj +-236 TJm +(prog) 18.2622 Tj +1 TJm +(ram) 15.4925 Tj +-236 TJm +(and) 14.3866 Tj +-235 TJm +(are) 12.1648 Tj +-235 TJm +(getting) 27.6772 Tj +-235 TJm +(problems,) 39.573 Tj +-238 TJm +(please,) 27.3883 Tj +-238 TJm +(please,) 27.3883 Tj +-238 TJm +(please,) 27.3883 Tj +-238 TJm +(check) 23.2337 Tj +-236 TJm +(t) 2.76971 Tj +1 TJm +(hat) 12.1748 Tj +72 458.979 Td +(the) 12.1748 Tj +-242 TJm +(parameters) 43.7077 Tj +-242 TJm +(you) 14.9445 Tj +-243 TJm +(are) 12.1648 Tj +-242 TJm +(passing) 29.889 Tj +-242 TJm +(in) 7.75121 Tj +-243 TJm +(calls) 18.2622 Tj +-242 TJm +(to) 7.75121 Tj +-242 TJm +(the) 12.1748 Tj +-242 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-244 TJm +(are) 12.1648 Tj +-243 TJm +(co) 9.40507 Tj +1 TJm +(rrect,) 20.743 Tj +-244 TJm +(and) 14.3866 Tj +-243 TJm +(in) 7.75121 Tj +-242 TJm +(accordance) 44.8036 Tj +-242 TJm +(with) 17.7142 Tj +-242 TJm +(what) 19.3681 Tj +-243 TJm +(the) 12.1748 Tj +-242 TJm +(documentation) 59.2201 Tj +-242 TJm +(says) 17.1563 Tj +72 447.024 Td +(is) 6.64532 Tj +-250 TJm +(allo) 14.9445 Tj +25 TJm +(w) 7.19329 Tj +10 TJm +(able.) 19.0891 Tj +-310 TJm +(I) 3.31768 Tj +-250 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(tried) 18.2622 Tj +-250 TJm +(to) 7.75121 Tj +-250 TJm +(m) 7.75121 Tj +1 TJm +(ak) 9.40507 Tj +10 TJm +(e) 4.42357 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(library) 26.5614 Tj +-250 TJm +(rob) 13.2807 Tj +20 TJm +(ust) 11.6268 Tj +-250 TJm +(ag) 9.40507 Tj +5 TJm +(ainst) 18.8201 Tj +-250 TJm +(such) 18.2622 Tj +-250 TJm +(problems,) 39.573 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-250 TJm +(I'm) 14.3866 Tj +-250 TJm +(sur) 12.1748 Tj +1 TJm +(e) 4.42357 Tj +-250 TJm +(I) 3.31768 Tj +-250 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(en') 12.7228 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(succeeded.) 43.4287 Tj +[1 0 0 1 72 444.867] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -434.904] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 425.106 Td +/F128_0 9.963 Tf +(Finally) 28.2351 Tj +65 TJm +(,) 2.49075 Tj +-324 TJm +(if) 6.08739 Tj +-309 TJm +(the) 12.1748 Tj +-310 TJm +(abo) 14.3866 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-309 TJm +(comments) 40.9579 Tj +-309 TJm +(don') 18.2622 Tj +18 TJm +(t) 2.76971 Tj +-309 TJm +(help,) 19.647 Tj +-325 TJm +(you') 18.2622 Tj +11 TJm +(ll) 5.53943 Tj +-310 TJm +(ha) 9.40507 Tj +20 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-309 TJm +(to) 7.75121 Tj +-309 TJm +(send) 18.2622 Tj +-310 TJm +(me) 12.1748 Tj +-309 TJm +(a) 4.42357 Tj +-309 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-310 TJm +(report.) 26.2824 Tj +-976 TJm +(No) 12.1748 Tj +25 TJm +(w) 7.19329 Tj +65 TJm +(,) 2.49075 Tj +-324 TJm +(it') 8.85711 Tj +55 TJm +(s) 3.87561 Tj +-309 TJm +(just) 14.3965 Tj +-309 TJm +(amazing) 33.7546 Tj +-310 TJm +(ho) 9.963 Tj +25 TJm +(w) 7.19329 Tj +-309 TJm +(man) 17.1563 Tj +15 TJm +(y) 4.9815 Tj +72 413.151 Td +(people) 26.5614 Tj +-250 TJm +(will) 15.5024 Tj +-250 TJm +(send) 18.2622 Tj +-250 TJm +(me) 12.1748 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(b) 4.9815 Tj +20 TJm +(ug) 9.963 Tj +-250 TJm +(rep) 12.7228 Tj +1 TJm +(ort) 11.0689 Tj +-250 TJm +(saying) 26.0134 Tj +-250 TJm +(something) 41.5158 Tj +-250 TJm +(lik) 10.5209 Tj +10 TJm +(e:) 7.19329 Tj +[1 0 0 1 72 410.994] cm +0 g +0 G +[1 0 0 1 0 -24.907] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 23.91 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 20.324] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -401.629] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 401.629 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +-426 TJm +(crashed) 41.8446 Tj +-426 TJm +(with) 23.9112 Tj +-426 TJm +(segmen) 35.8668 Tj +1 TJm +(tation) 35.8668 Tj +-426 TJm +(fault) 29.889 Tj +-426 TJm +(on) 11.9556 Tj +-426 TJm +(my) 11.9556 Tj +-426 TJm +(machine) 41.8446 Tj +[1 0 0 1 72 386.087] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -376.125] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 364.169 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +-241 TJm +(absolutely) 40.9579 Tj +-240 TJm +(nothing) 30.4469 Tj +-241 TJm +(else.) 17.9832 Tj +-614 TJm +(Needless) 35.9664 Tj +-241 TJm +(to) 7.75121 Tj +-240 TJm +(say) 13.2807 Tj +65 TJm +(,) 2.49075 Tj +-243 TJm +(a) 4.42357 Tj +-241 TJm +(such) 18.2622 Tj +-241 TJm +(a) 4.42357 Tj +-240 TJm +(report) 23.7916 Tj +-241 TJm +(is) 6.64532 Tj +[1 0 0 1 324.681 364.169] cm +0 g +0 G +[1 0 0 1 -324.681 -364.169] cm +[1 0 0 1 0 0] Tm +0 0 Td +324.681 364.169 Td +/F631_0 9.963 Tf +(totally) 25.4654 Tj +55 TJm +(,) 2.49075 Tj +-243 TJm +(u) 4.9815 Tj +1 TJm +(tterly) 21.0319 Tj +55 TJm +(,) 2.49075 Tj +-243 TJm +(completely) 43.1597 Tj +-241 TJm +(and) 14.9445 Tj +-240 TJm +(compr) 25.4555 Tj +37 TJm +(ehensively) 41.4959 Tj +-241 TJm +(100%) 23.2437 Tj +72 352.214 Td +(useless;) 31.5429 Tj +-257 TJm +(a) 4.9815 Tj +-255 TJm +(waste) 22.6957 Tj +-255 TJm +(of) 7.75121 Tj +-255 TJm +(your) 18.2622 Tj +-255 TJm +(time) 17.1563 Tj +10 TJm +(,) 2.49075 Tj +-256 TJm +(my) 11.6169 Tj +-255 TJm +(t) 2.76971 Tj +1 TJm +(ime) 14.3866 Tj +10 TJm +(,) 2.49075 Tj +-257 TJm +(and) 14.9445 Tj +-254 TJm +(net) 12.1748 Tj +-255 TJm +(bandwidth) 42.0737 Tj +[1 0 0 1 302.574 352.214] cm +0 g +0 G +[1 0 0 1 -302.574 -352.214] cm +[1 0 0 1 0 0] Tm +0 0 Td +302.574 352.214 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-649 TJm +(W) 9.40507 Tj +40 TJm +(ith) 10.5209 Tj +-255 TJm +(no) 9.963 Tj +-255 TJm +(details) 26.0134 Tj +-255 TJm +(at) 7.19329 Tj +-255 TJm +(all,) 12.4538 Tj +-256 TJm +(there') 23.2337 Tj +55 TJm +(s) 3.87561 Tj +-255 TJm +(no) 9.963 Tj +-255 TJm +(w) 7.19329 Tj +10 TJm +(ay) 9.40507 Tj +-254 TJm +(I) 3.31768 Tj +-255 TJm +(can) 13.8286 Tj +-255 TJm +(possibly) 33.2166 Tj +-255 TJm +(be) 9.40507 Tj +15 TJm +(gin) 12.7327 Tj +72 340.259 Td +(to) 7.75121 Tj +-250 TJm +(\002gure) 23.2437 Tj +-250 TJm +(out) 12.7327 Tj +-250 TJm +(what) 19.3681 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(problem) 33.2067 Tj +-249 TJm +(is.) 9.13607 Tj +[1 0 0 1 72 338.102] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -328.14] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 318.341 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-309 TJm +(rules) 19.3681 Tj +-309 TJm +(of) 8.29918 Tj +-309 TJm +(the) 12.1748 Tj +-309 TJm +(g) 4.9815 Tj +5 TJm +(ame) 16.5984 Tj +-309 TJm +(are:) 14.9345 Tj +-429 TJm +(f) 3.31768 Tj +10 TJm +(ac) 8.84714 Tj +1 TJm +(ts,) 9.13607 Tj +-324 TJm +(f) 3.31768 Tj +10 TJm +(acts,) 17.9832 Tj +-324 TJm +(f) 3.31768 Tj +10 TJm +(acts.) 17.9832 Tj +-975 TJm +(Don') 20.474 Tj +18 TJm +(t) 2.76971 Tj +-309 TJm +(omit) 18.2721 Tj +-309 TJm +(them) 19.926 Tj +-309 TJm +(because) 31.5329 Tj +-309 TJm +("oh,) 16.5187 Tj +-324 TJm +(the) 12.1748 Tj +15 TJm +(y) 4.9815 Tj +-309 TJm +(w) 7.19329 Tj +10 TJm +(on') 13.2807 Tj +18 TJm +(t) 2.76971 Tj +-309 TJm +(be) 9.40507 Tj +-309 TJm +(rele) 14.9345 Tj +25 TJm +(v) 4.9815 Tj +25 TJm +(ant".) 18.7304 Tj +-975 TJm +(At) 9.963 Tj +-309 TJm +(the) 12.1748 Tj +-309 TJm +(bare) 17.1463 Tj +72 306.386 Td +(minimum:) 41.5258 Tj +[1 0 0 1 72 306.287] cm +0 g +0 G +[1 0 0 1 0 -60.772] cm +0.949 0.949 0.97646 rg +0.949 0.949 0.97646 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 59.776 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 56.189] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -296.922] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 296.922 Td +/F130_0 9.963 Tf +(Machine) 41.8446 Tj +-426 TJm +(type.) 29.889 Tj +-852 TJm +(Operating) 53.8002 Tj +-425 TJm +(system) 35.8668 Tj +-426 TJm +(version.) 47.8224 Tj +90 284.967 Td +(Exact) 29.889 Tj +-426 TJm +(version) 41.8446 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(bzip2) 29.889 Tj +-426 TJm +(\() 5.9778 Tj +1 TJm +(do) 11.9556 Tj +-426 TJm +(bzip2) 29.889 Tj +-426 TJm +(-V\).) 23.9112 Tj +90 273.011 Td +(Exact) 29.889 Tj +-426 TJm +(version) 41.8446 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(com) 17.9334 Tj +1 TJm +(piler) 29.889 Tj +-426 TJm +(used.) 29.889 Tj +90 261.056 Td +(Flags) 29.889 Tj +-426 TJm +(passed) 35.8668 Tj +-426 TJm +(to) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(comp) 23.9112 Tj +1 TJm +(iler.) 29.889 Tj +[1 0 0 1 72 245.514] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -235.552] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 223.597 Td +/F128_0 9.963 Tf +(Ho) 12.1748 Tj +25 TJm +(we) 11.6169 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(er) 7.74125 Tj +40 TJm +(,) 2.49075 Tj +-253 TJm +(the) 12.1748 Tj +-253 TJm +(most) 19.378 Tj +-253 TJm +(important) 38.7461 Tj +-252 TJm +(single) 23.8016 Tj +-253 TJm +(thing) 20.4839 Tj +-253 TJm +(that) 14.9445 Tj +-253 TJm +(will) 15.5024 Tj +-252 TJm +(help) 17.1563 Tj +-253 TJm +(me) 12.1748 Tj +-253 TJm +(is) 6.64532 Tj +-253 TJm +(the) 12.1748 Tj +-252 TJm +(\002le) 12.7327 Tj +-253 TJm +(that) 14.9445 Tj +-253 TJm +(you) 14.9445 Tj +-253 TJm +(we) 11.6169 Tj +1 TJm +(re) 7.74125 Tj +-253 TJm +(trying) 23.8016 Tj +-253 TJm +(to) 7.75121 Tj +-253 TJm +(compress) 37.6303 Tj +-252 TJm +(or) 8.29918 Tj +-253 TJm +(decompress) 47.0353 Tj +72 211.642 Td +(at) 7.19329 Tj +-304 TJm +(the) 12.1748 Tj +-305 TJm +(time) 17.7142 Tj +-304 TJm +(the) 12.1748 Tj +-304 TJm +(problem) 33.2067 Tj +-304 TJm +(happened.) 40.669 Tj +-946 TJm +(W) 9.40507 Tj +40 TJm +(ithout) 23.2536 Tj +-305 TJm +(that,) 17.4353 Tj +-317 TJm +(my) 12.7327 Tj +-305 TJm +(ability) 25.4654 Tj +-304 TJm +(to) 7.75121 Tj +-304 TJm +(do) 9.963 Tj +-305 TJm +(an) 9.40507 Tj +15 TJm +(ythin) 20.4839 Tj +1 TJm +(g) 4.9815 Tj +-305 TJm +(more) 20.474 Tj +-304 TJm +(than) 17.1563 Tj +-304 TJm +(speculate) 37.0723 Tj +-305 TJm +(abou) 19.3681 Tj +1 TJm +(t) 2.76971 Tj +-305 TJm +(the) 12.1748 Tj +-304 TJm +(cause,) 24.6186 Tj +-318 TJm +(is) 6.64532 Tj +72 199.686 Td +(limited.) 30.7259 Tj +[1 0 0 1 72 199.587] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -189.624] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 164.933 Td +/F121_0 20.659 Tf +(4.4.) 34.4592 Tj +-278 TJm +(Did) 33.2816 Tj +-278 TJm +(y) 11.4864 Tj +25 TJm +(ou) 25.2453 Tj +-278 TJm +(g) 12.6226 Tj +-10 TJm +(et) 18.3659 Tj +-278 TJm +(the) 30.9885 Tj +-278 TJm +(right) 45.9043 Tj +-278 TJm +(pac) 35.5955 Tj +20 TJm +(ka) 22.9728 Tj +11 TJm +(g) 12.6226 Tj +-10 TJm +(e?) 24.1091 Tj +[1 0 0 1 72 160.337] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -150.374] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 143.016 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 101.888 143.016] cm +0 g +0 G +[1 0 0 1 -101.888 -143.016] cm +[1 0 0 1 0 0] Tm +0 0 Td +104.603 143.016 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-272 TJm +(a) 4.42357 Tj +-273 TJm +(resource) 33.7447 Tj +-272 TJm +(hog.) 17.4353 Tj +-378 TJm +(It) 6.08739 Tj +-272 TJm +(soaks) 22.1378 Tj +-272 TJm +(up) 9.963 Tj +-273 TJm +(lar) 10.511 Tj +18 TJm +(ge) 9.40507 Tj +-272 TJm +(amounts) 33.7646 Tj +-273 TJm +(of) 8.29918 Tj +-272 TJm +(CPU) 19.378 Tj +-272 TJm +(c) 4.42357 Tj +15 TJm +(ycles) 20.474 Tj +-273 TJm +(and) 14.3866 Tj +-272 TJm +(memory) 33.2067 Tj +65 TJm +(.) 2.49075 Tj +-755 TJm +(Also,) 21.3109 Tj +-278 TJm +(it) 5.53943 Tj +-272 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-273 TJm +(v) 4.9815 Tj +15 TJm +(ery) 12.7228 Tj +-272 TJm +(lar) 10.511 Tj +18 TJm +(ge) 9.40507 Tj +-273 TJm +(latencies.) 37.3513 Tj +72 131.061 Td +(In) 8.29918 Tj +-251 TJm +(the) 12.1748 Tj +-251 TJm +(w) 7.19329 Tj +10 TJm +(orst) 14.9445 Tj +-251 TJm +(case,) 19.6371 Tj +-251 TJm +(you) 14.9445 Tj +-251 TJm +(can) 13.8286 Tj +-251 TJm +(feed) 17.1463 Tj +-251 TJm +(man) 17.1563 Tj +15 TJm +(y) 4.9815 Tj +-251 TJm +(me) 12.1748 Tj +15 TJm +(g) 4.9815 Tj +5 TJm +(abytes) 25.4555 Tj +-251 TJm +(of) 8.29918 Tj +-251 TJm +(uncompressed) 56.9983 Tj +-251 TJm +(dat) 12.1748 Tj +1 TJm +(a) 4.42357 Tj +-251 TJm +(into) 15.5024 Tj +-251 TJm +(the) 12.1748 Tj +-251 TJm +(library) 26.5614 Tj +-251 TJm +(before) 25.4455 Tj +-251 TJm +(getting) 27.6772 Tj +-251 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-251 TJm +(compressed) 47.0353 Tj +72 119.105 Td +(output,) 27.9562 Tj +-250 TJm +(so) 8.85711 Tj +-250 TJm +(this) 14.3965 Tj +-250 TJm +(probably) 35.4185 Tj +-250 TJm +(rules) 19.3681 Tj +-249 TJm +(out) 12.7327 Tj +-250 TJm +(applications) 48.1512 Tj +-250 TJm +(requiring) 36.5244 Tj +-250 TJm +(interacti) 32.6488 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +-250 TJm +(beha) 18.8101 Tj +20 TJm +(viour) 21.0319 Tj +55 TJm +(.) 2.49075 Tj +[1 0 0 1 72 116.949] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 -72 -106.986] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 97.188 Td +/F128_0 9.963 Tf +(These) 23.7916 Tj +-304 TJm +(aren') 20.464 Tj +18 TJm +(t) 2.76971 Tj +-304 TJm +(f) 3.31768 Tj +10 TJm +(aults) 18.8201 Tj +-304 TJm +(of) 8.29918 Tj +-304 TJm +(my) 12.7327 Tj +-304 TJm +(im) 10.5209 Tj +1 TJm +(plementation,) 54.5175 Tj +-318 TJm +(I) 3.31768 Tj +-304 TJm +(hope,) 21.8588 Tj +-317 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-304 TJm +(more) 20.474 Tj +-304 TJm +(an) 9.40507 Tj +-304 TJm +(intrinsic) 32.6587 Tj +-304 TJm +(property) 33.7546 Tj +-304 TJm +(of) 8.29918 Tj +-303 TJm +(the) 12.1748 Tj +-304 TJm +(Burro) 23.2437 Tj +25 TJm +(ws-Wheeler) 48.1313 Tj +-304 TJm +(transform) 38.7361 Tj +72 85.232 Td +(\(unfortunately\).) 62.8068 Tj +-620 TJm +(Maybe) 27.6673 Tj +-250 TJm +(this) 14.3965 Tj +-249 TJm +(isn') 14.9445 Tj +18 TJm +(t) 2.76971 Tj +-250 TJm +(what) 19.3681 Tj +-250 TJm +(you) 14.9445 Tj +-250 TJm +(w) 7.19329 Tj +10 TJm +(ant.) 14.6655 Tj +[1 0 0 1 72 83.076] cm +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +[1 0 0 1 0 -22.261] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(33) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 37 37 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -6.854] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 116.329 -6.755] cm +0 g +0 G +[1 0 0 1 -382.4 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F128_0 9.963 Tf +(Miscellanea) 48.1412 Tj +[1 0 0 1 266.071 749.146] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -7.094] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -540 -741.554] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(If) 6.63536 Tj +-275 TJm +(you) 14.9445 Tj +-274 TJm +(w) 7.19329 Tj +10 TJm +(ant) 12.1748 Tj +-275 TJm +(a) 4.42357 Tj +-274 TJm +(compressor) 45.9294 Tj +-275 TJm +(and/or) 25.4555 Tj +-274 TJm +(library) 26.5614 Tj +-275 TJm +(which) 24.3496 Tj +-274 TJm +(is) 6.64532 Tj +-275 TJm +(f) 3.31768 Tj +10 TJm +(aster) 18.8101 Tj +40 TJm +(,) 2.49075 Tj +-280 TJm +(uses) 17.1563 Tj +-275 TJm +(less) 14.9445 Tj +-274 TJm +(memory) 33.2067 Tj +-275 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-274 TJm +(gets) 16.0504 Tj +-275 TJm +(pretty) 23.2437 Tj +-274 TJm +(good) 19.926 Tj +-275 TJm +(compression,) 52.8537 Tj +-280 TJm +(and) 14.3866 Tj +-275 TJm +(has) 13.2807 Tj +72 698.082 Td +(minimal) 33.2166 Tj +-288 TJm +(latenc) 23.7916 Tj +15 TJm +(y) 4.9815 Tj +65 TJm +(,) 2.49075 Tj +-297 TJm +(consider) 33.7546 Tj +-288 TJm +(Jean-lou) 33.7546 Tj +1 TJm +(p) 4.9815 Tj +-288 TJm +(Gailly') 28.2252 Tj +55 TJm +(s) 3.87561 Tj +-288 TJm +(and) 14.3866 Tj +-288 TJm +(Mark) 21.5799 Tj +-288 TJm +(Adler') 26.0034 Tj +55 TJm +(s) 3.87561 Tj +-287 TJm +(w) 7.19329 Tj +10 TJm +(ork,) 15.7714 Tj +[1 0 0 1 353.879 698.082] cm +0 g +0 G +[1 0 0 1 -353.879 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +353.879 698.082 Td +/F130_0 9.963 Tf +(zlib-1.2.1) 59.778 Tj +[1 0 0 1 413.655 698.082] cm +0 g +0 G +[1 0 0 1 -413.655 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +416.523 698.082 Td +/F128_0 9.963 Tf +(and) 14.3866 Tj +[1 0 0 1 433.777 698.082] cm +0 g +0 G +[1 0 0 1 -433.777 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +433.777 698.082 Td +/F130_0 9.963 Tf +(gzip-1.2.4) 59.778 Tj +[1 0 0 1 493.553 698.082] cm +0 g +0 G +[1 0 0 1 -493.553 -698.082] cm +[1 0 0 1 0 0] Tm +0 0 Td +493.553 698.082 Td +/F128_0 9.963 Tf +(.) 2.49075 Tj +-847 TJm +(Look) 21.0319 Tj +-288 TJm +(for) 11.6169 Tj +72 686.127 Td +(them) 19.926 Tj +-250 TJm +(at) 7.19329 Tj +-250 TJm +(http://www) 45.3914 Tj +65 TJm +(.zlib) 17.4353 Tj +40 TJm +(.or) 10.7899 Tj +18 TJm +(g) 4.9815 Tj +-250 TJm +(a) 4.42357 Tj +1 TJm +(nd) 9.963 Tj +-250 TJm +(http://www) 45.3914 Tj +65 TJm +(.gzip.or) 30.437 Tj +18 TJm +(g) 4.9815 Tj +-250 TJm +(respecti) 30.9849 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(ely) 12.1748 Tj +65 TJm +(.) 2.49075 Tj +[1 0 0 1 72 683.97] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -674.008] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 664.209 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(or) 8.29918 Tj +-582 TJm +(something) 41.5158 Tj +-582 TJm +(f) 3.31768 Tj +10 TJm +(aster) 18.8101 Tj +-583 TJm +(and) 14.3866 Tj +-582 TJm +(lighter) 26.0134 Tj +-582 TJm +(still,) 17.4452 Tj +-665 TJm +(you) 14.9445 Tj +-583 TJm +(m) 7.75121 Tj +1 TJm +(ight) 15.5024 Tj +-583 TJm +(try) 11.0689 Tj +-582 TJm +(Markus) 30.437 Tj +-582 TJm +(F) 5.53943 Tj +-582 TJm +(X) 7.19329 Tj +-582 TJm +(J) 3.87561 Tj +-582 TJm +(Oberhumer') 48.6892 Tj +55 TJm +(s) 3.87561 Tj +[1 0 0 1 437.433 664.209] cm +0 g +0 G +[1 0 0 1 -437.433 -664.209] cm +[1 0 0 1 0 0] Tm +0 0 Td +437.433 664.209 Td +/F130_0 9.963 Tf +(LZO) 17.9334 Tj +[1 0 0 1 455.365 664.209] cm +0 g +0 G +[1 0 0 1 -455.365 -664.209] cm +[1 0 0 1 0 0] Tm +0 0 Td +461.164 664.209 Td +/F128_0 9.963 Tf +(real-time) 35.9664 Tj +-582 TJm +(compres-) 37.0723 Tj +72 652.254 Td +(sion/decompression) 79.1461 Tj +-250 TJm +(library) 26.5614 Tj +65 TJm +(,) 2.49075 Tj +-250 TJm +(a) 4.42357 Tj +1 TJm +(t) 2.76971 Tj +-250 TJm +(http://www) 45.3914 Tj +65 TJm +(.oberhumer) 45.6505 Tj +55 TJm +(.com/opensource.) 70.279 Tj +[1 0 0 1 72 650.097] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -640.135] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 617.501 Td +/F121_0 20.659 Tf +(4.5.) 34.4592 Tj +-278 TJm +(Fur) 33.2816 Tj +-20 TJm +(ther) 39.0249 Tj +-278 TJm +(Reading) 81.4998 Tj +[1 0 0 1 72 612.905] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 0 -9.963] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -72 -602.942] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 595.583 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 101.888 595.583] cm +0 g +0 G +[1 0 0 1 -101.888 -595.583] cm +[1 0 0 1 0 0] Tm +0 0 Td +104.923 595.583 Td +/F128_0 9.963 Tf +(is) 6.64532 Tj +-305 TJm +(n) 4.9815 Tj +1 TJm +(ot) 7.75121 Tj +-305 TJm +(research) 33.1868 Tj +-304 TJm +(w) 7.19329 Tj +10 TJm +(ork,) 15.7714 Tj +-319 TJm +(in) 7.75121 Tj +-304 TJm +(the) 12.1748 Tj +-305 TJm +(sense) 21.5799 Tj +-304 TJm +(that) 14.9445 Tj +-305 TJm +(it) 5.53943 Tj +-304 TJm +(doesn') 26.5614 Tj +18 TJm +(t) 2.76971 Tj +-305 TJm +(present) 28.7731 Tj +-304 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-305 TJm +(ne) 9.40507 Tj +25 TJm +(w) 7.19329 Tj +-304 TJm +(ideas.) 22.9647 Tj +-474 TJm +(Rather) 26.5614 Tj +40 TJm +(,) 2.49075 Tj +-318 TJm +(it') 8.85711 Tj +55 TJm +(s) 3.87561 Tj +-305 TJm +(an) 9.40507 Tj +-304 TJm +(engineering) 47.0353 Tj +-305 TJm +(e) 4.42357 Tj +15 TJm +(x) 4.9815 Tj +15 TJm +(e) 4.42357 Tj +1 TJm +(rcise) 18.8101 Tj +72 583.628 Td +(based) 22.6858 Tj +-250 TJm +(on) 9.963 Tj +-250 TJm +(e) 4.42357 Tj +15 TJm +(xisting) 27.1292 Tj +-250 TJm +(ideas.) 22.9647 Tj +[1 0 0 1 72 581.471] cm +0 g +0 G +[1 0 0 1 0 -9.962] cm +0 g +0 G +[1 0 0 1 -72 -571.509] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 561.71 Td +/F128_0 9.963 Tf +(F) 5.53943 Tj +15 TJm +(our) 13.2807 Tj +-250 TJm +(documents) 43.1697 Tj +-250 TJm +(describe) 33.1967 Tj +-250 TJm +(esse) 16.5984 Tj +1 TJm +(ntially) 25.4654 Tj +-250 TJm +(all) 9.963 Tj +-250 TJm +(the) 12.1748 Tj +-250 TJm +(ideas) 20.474 Tj +-250 TJm +(behind) 27.1193 Tj +[1 0 0 1 298.747 561.71] cm +0 g +0 G +[1 0 0 1 -298.747 -561.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +298.747 561.71 Td +/F130_0 9.963 Tf +(bzip2) 29.889 Tj +[1 0 0 1 328.635 561.71] cm +0 g +0 G +[1 0 0 1 -328.635 -561.71] cm +[1 0 0 1 0 0] Tm +0 0 Td +328.635 561.71 Td +/F128_0 9.963 Tf +(:) 2.76971 Tj +[1 0 0 1 72 559.554] cm +0 g +0 G +[1 0 0 1 0 -299.876] cm +0.9294 0.96861 0.95685 rg +0.9294 0.96861 0.95685 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 298.879 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 295.292] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -550.189] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 550.189 Td +/F130_0 9.963 Tf +(Michael) 41.8446 Tj +-426 TJm +(Burrows) 41.8446 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(D.) 11.9556 Tj +-426 TJm +(J) 5.9778 Tj +1 TJm +(.) 5.9778 Tj +-426 TJm +(Wheeler:) 47.8224 Tj +98.488 538.234 Td +("A) 11.9556 Tj +-426 TJm +(block-sorting) 77.7114 Tj +-426 TJm +(lossless) 47.8224 Tj +-425 TJm +(data) 23.9112 Tj +-426 TJm +(compression) 65.7558 Tj +-426 TJm +(algorithm") 59.778 Tj +102.732 526.278 Td +(10th) 23.9112 Tj +-426 TJm +(May) 17.9334 Tj +-426 TJm +(1994.) 29.889 Tj +102.732 514.323 Td +(Digital) 41.8446 Tj +-426 TJm +(SRC) 17.9334 Tj +-426 TJm +(Research) 47.8224 Tj +-426 TJm +(Rep) 17.9334 Tj +1 TJm +(ort) 17.9334 Tj +-426 TJm +(124.) 23.9112 Tj +102.732 502.368 Td +(ftp://ftp.digital.com/pub) 149.445 Tj +1 TJm +(/DEC/SRC/research-reports/SRC-124.ps.gz) 233.134 Tj +102.732 490.413 Td +(If) 11.9556 Tj +-426 TJm +(you) 17.9334 Tj +-426 TJm +(have) 23.9112 Tj +-426 TJm +(trouble) 41.8446 Tj +-426 TJm +(find) 23.9112 Tj +1 TJm +(ing) 17.9334 Tj +-426 TJm +(it,) 17.9334 Tj +-426 TJm +(try) 17.9334 Tj +-426 TJm +(searching) 53.8002 Tj +-426 TJm +(at) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +102.732 478.458 Td +(New) 17.9334 Tj +-426 TJm +(Zealand) 41.8446 Tj +-426 TJm +(Digital) 41.8446 Tj +-426 TJm +(Libr) 23.9112 Tj +1 TJm +(ary,) 23.9112 Tj +-426 TJm +(http://www.nzdl.org.) 119.556 Tj +90 454.547 Td +(Daniel) 35.8668 Tj +-426 TJm +(S.) 11.9556 Tj +-426 TJm +(Hirschberg) 59.778 Tj +-426 TJm +(and) 17.9334 Tj +-425 TJm +(Debra) 29.889 Tj +-426 TJm +(A.) 11.9556 Tj +-426 TJm +(LeLewer) 41.8446 Tj +98.488 442.592 Td +("Efficient) 59.778 Tj +-426 TJm +(Decoding) 47.8224 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(Pr) 11.9556 Tj +1 TJm +(efix) 23.9112 Tj +-426 TJm +(Codes") 35.8668 Tj +102.732 430.637 Td +(Communications) 83.6892 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(ACM) 17.9334 Tj +1 TJm +(,) 5.9778 Tj +-426 TJm +(April) 29.889 Tj +-426 TJm +(1990,) 29.889 Tj +-426 TJm +(Vol) 17.9334 Tj +-426 TJm +(33,) 17.9334 Tj +-426 TJm +(Number) 35.8668 Tj +-426 TJm +(4.) 11.9556 Tj +102.732 418.682 Td +(You) 17.9334 Tj +-426 TJm +(might) 29.889 Tj +-426 TJm +(be) 11.9556 Tj +-426 TJm +(able) 23.9112 Tj +-426 TJm +(to) 11.9556 Tj +-426 TJm +(get) 17.9334 Tj +-425 TJm +(an) 11.9556 Tj +-426 TJm +(electronic) 59.778 Tj +-426 TJm +(copy) 23.9112 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(this) 23.9112 Tj +102.732 406.727 Td +(from) 23.9112 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(ACM) 17.9334 Tj +-426 TJm +(Digital) 41.8446 Tj +-426 TJm +(Lib) 17.9334 Tj +1 TJm +(rary.) 29.889 Tj +90 382.816 Td +(David) 29.889 Tj +-426 TJm +(J.) 11.9556 Tj +-426 TJm +(Wheeler) 41.8446 Tj +102.732 370.861 Td +(Program) 41.8446 Tj +-426 TJm +(bred3.c) 41.8446 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(accom) 29.889 Tj +1 TJm +(panying) 41.8446 Tj +-426 TJm +(document) 47.8224 Tj +-426 TJm +(bred3.ps.) 53.8002 Tj +102.732 358.906 Td +(This) 23.9112 Tj +-426 TJm +(contains) 47.8224 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(idea) 23.9112 Tj +-426 TJm +(b) 5.9778 Tj +1 TJm +(ehind) 29.889 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(multi-table) 65.7558 Tj +-426 TJm +(Huffman) 41.8446 Tj +-426 TJm +(coding) 35.8668 Tj +-426 TJm +(scheme.) 41.8446 Tj +102.732 346.951 Td +(ftp://ftp.cl.cam.ac.uk/us) 149.445 Tj +1 TJm +(ers/djw3/) 53.8002 Tj +90 323.04 Td +(Jon) 17.9334 Tj +-426 TJm +(L.) 11.9556 Tj +-426 TJm +(Bentley) 41.8446 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(Robert) 35.8668 Tj +-425 TJm +(Sedgewick) 53.8002 Tj +98.488 311.085 Td +("Fast) 29.889 Tj +-426 TJm +(Algorithms) 59.778 Tj +-426 TJm +(for) 17.9334 Tj +-426 TJm +(Sort) 23.9112 Tj +1 TJm +(ing) 17.9334 Tj +-426 TJm +(and) 17.9334 Tj +-426 TJm +(Searching) 53.8002 Tj +-426 TJm +(Strings") 47.8224 Tj +102.732 299.13 Td +(Available) 53.8002 Tj +-426 TJm +(from) 23.9112 Tj +-426 TJm +(Sedgewick') 59.778 Tj +1 TJm +(s) 5.9778 Tj +-426 TJm +(web) 17.9334 Tj +-426 TJm +(page,) 29.889 Tj +102.732 287.175 Td +(www.cs.princeton.edu/~rs) 143.467 Tj +[1 0 0 1 72 259.678] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -249.715] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 237.76 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-239 TJm +(follo) 18.8201 Tj +26 TJm +(wing) 19.926 Tj +-239 TJm +(paper) 22.1278 Tj +-239 TJm +(gi) 7.75121 Tj +25 TJm +(v) 4.9815 Tj +15 TJm +(es) 8.29918 Tj +-238 TJm +(v) 4.9815 Tj +25 TJm +(aluable) 28.7731 Tj +-239 TJm +(additiona) 37.0823 Tj +1 TJm +(l) 2.76971 Tj +-239 TJm +(insights) 31.0049 Tj +-239 TJm +(into) 15.5024 Tj +-238 TJm +(the) 12.1748 Tj +-239 TJm +(algorithm,) 41.2369 Tj +-240 TJm +(b) 4.9815 Tj +20 TJm +(ut) 7.75121 Tj +-239 TJm +(is) 6.64532 Tj +-239 TJm +(not) 12.7327 Tj +-238 TJm +(immediately) 49.815 Tj +-239 TJm +(the) 12.1748 Tj +-238 TJm +(basis) 19.926 Tj +-239 TJm +(of) 8.29918 Tj +-238 TJm +(an) 9.40507 Tj +15 TJm +(y) 4.9815 Tj +-239 TJm +(code) 18.8101 Tj +72 225.805 Td +(used) 18.2622 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(bzip2.) 24.6285 Tj +[1 0 0 1 72 223.648] cm +0 g +0 G +[1 0 0 1 0 -72.727] cm +0.9294 0.96861 0.95685 rg +0.9294 0.96861 0.95685 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 71.731 re +f +Q +0 g +0 G +[1 0 0 1 0 3.587] cm +0 g +0 G +[1 0 0 1 0 68.144] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -214.283] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 214.283 Td +/F130_0 9.963 Tf +(Peter) 29.889 Tj +-426 TJm +(Fenwick:) 47.8224 Tj +102.732 202.328 Td +(Block) 29.889 Tj +-426 TJm +(Sorting) 41.8446 Tj +-426 TJm +(Text) 23.9112 Tj +-426 TJm +(Compr) 29.889 Tj +1 TJm +(ession) 35.8668 Tj +102.732 190.373 Td +(Proceedings) 65.7558 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(19th) 23.9112 Tj +-425 TJm +(Australasian) 71.7336 Tj +-426 TJm +(Computer) 47.8224 Tj +-426 TJm +(Science) 41.8446 Tj +-426 TJm +(Conference,) 65.7558 Tj +111.22 178.418 Td +(Melbourne,) 59.778 Tj +-426 TJm +(Australia.) 59.778 Tj +-852 TJm +(J) 5.9778 Tj +1 TJm +(an) 11.9556 Tj +-426 TJm +(31) 11.9556 Tj +-426 TJm +(-) 5.9778 Tj +-426 TJm +(Feb) 17.9334 Tj +-426 TJm +(2,) 11.9556 Tj +-426 TJm +(1996.) 29.889 Tj +102.732 166.463 Td +(ftp://ftp.cs.auckland.ac.) 149.445 Tj +1 TJm +(nz/pub/peter-f/ACSC96paper.ps) 173.356 Tj +[1 0 0 1 72 150.921] cm +0 g +0 G +[1 0 0 1 468 3.587] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.55] cm +0 g +0 G +[1 0 0 1 -72 -140.958] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 129.003 Td +/F128_0 9.963 Tf +(K) 7.19329 Tj +15 TJm +(unihik) 25.4654 Tj +10 TJm +(o) 4.9815 Tj +-250 TJm +(Sadakane') 41.4959 Tj +55 TJm +(s) 3.87561 Tj +-250 TJm +(sorting) 27.6772 Tj +-250 TJm +(al) 7.19329 Tj +1 TJm +(gorithm,) 34.0436 Tj +-250 TJm +(mentioned) 42.0638 Tj +-250 TJm +(abo) 14.3866 Tj +15 TJm +(v) 4.9815 Tj +15 TJm +(e,) 6.91432 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailable) 26.5614 Tj +-250 TJm +(from:) 22.1378 Tj +[1 0 0 1 72 126.846] cm +0 g +0 G +[1 0 0 1 0 -36.861] cm +0.9294 0.96861 0.95685 rg +0.9294 0.96861 0.95685 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -117.481] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 117.481 Td +/F130_0 9.963 Tf +(http://naomi.is.s.u-tokyo.) 155.423 Tj +1 TJm +(ac.jp/~sada/papers/Sada98b.ps.gz) 191.29 Tj +[1 0 0 1 72 89.985] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 0 -29.17] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(34) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 38 38 +%%BeginPageSetup +%%PageOrientation: Portrait +pdfStartPage +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +0 g +0 G +q +[1 0 0 1 72 741.554] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 14.446] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 187.197 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.49 -6.854] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 116.329 -6.755] cm +0 g +0 G +[1 0 0 1 -382.4 -749.245] cm +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F128_0 9.963 Tf +(Miscellanea) 48.1412 Tj +[1 0 0 1 266.071 749.146] cm +0 g +0 G +0 g +0 G +[1 0 0 1 280.796 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -472.974 -7.094] cm +0 g +0 G +[1 0 0 1 0 -0.498] cm +q +[] 0 d +0 J +0.498 w +0 0.249 m +475.465 0.249 l +S +Q +0 g +0 G +[1 0 0 1 479.251 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +[1 0 0 1 -540 -741.554] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F128_0 9.963 Tf +(The) 15.4925 Tj +-250 TJm +(Manber) 30.9849 Tj +20 TJm +(-Myers) 28.7731 Tj +-250 TJm +(suf) 12.1748 Tj +25 TJm +(\002x) 10.5209 Tj +-250 TJm +(arra) 15.4825 Tj +1 TJm +(y) 4.9815 Tj +-250 TJm +(construction) 49.2571 Tj +-250 TJm +(algorithm) 38.7461 Tj +-250 TJm +(is) 6.64532 Tj +-250 TJm +(described) 38.1782 Tj +-250 TJm +(in) 7.75121 Tj +-250 TJm +(a) 4.42357 Tj +-250 TJm +(paper) 22.1278 Tj +-250 TJm +(a) 4.42357 Tj +20 TJm +(v) 4.9815 Tj +25 TJm +(ailabl) 22.1378 Tj +1 TJm +(e) 4.42357 Tj +-250 TJm +(from:) 22.1378 Tj +[1 0 0 1 72 707.881] cm +0 g +0 G +[1 0 0 1 0 -36.862] cm +0.9294 0.96861 0.95685 rg +0.9294 0.96861 0.95685 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 35.866 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 32.279] cm +0 g +0 G +[1 0 0 1 18 -8.368] cm +0 g +0 G +[1 0 0 1 -90 -698.516] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 698.516 Td +/F130_0 9.963 Tf +(http://www.cs.arizona.edu/) 155.423 Tj +1 TJm +(people/gene/PAPERS/suffix.ps) 167.378 Tj +[1 0 0 1 72 671.019] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -13.549] cm +0 g +0 G +[1 0 0 1 -72 -661.056] cm +[1 0 0 1 0 0] Tm +0 0 Td +72 649.101 Td +/F128_0 9.963 Tf +(Finally) 28.2351 Tj +65 TJm +(,) 2.49075 Tj +-227 TJm +(the) 12.1748 Tj +-221 TJm +(follo) 18.8201 Tj +25 TJm +(wing) 19.926 Tj +-221 TJm +(papers) 26.0034 Tj +-222 TJm +(docume) 31.5429 Tj +1 TJm +(nt) 7.75121 Tj +-222 TJm +(some) 21.0319 Tj +-221 TJm +(in) 7.75121 Tj +40 TJm +(v) 4.9815 Tj +15 TJm +(estig) 18.8201 Tj +5 TJm +(ations) 23.8016 Tj +-221 TJm +(I) 3.31768 Tj +-221 TJm +(made) 21.5799 Tj +-222 TJm +(into) 15.5024 Tj +-221 TJm +(the) 12.1748 Tj +-221 TJm +(performance) 50.343 Tj +-221 TJm +(of) 8.29918 Tj +-222 TJm +(sorting) 27.6772 Tj +-221 TJm +(and) 14.3866 Tj +-221 TJm +(decompression) 59.768 Tj +72 637.146 Td +(algorithms:) 45.3914 Tj +[1 0 0 1 72 634.989] cm +0 g +0 G +[1 0 0 1 0 -132.503] cm +0.9294 0.96861 0.95685 rg +0.9294 0.96861 0.95685 RG +q +[] 0 d +0 J +0 j +0 w +0 0 468 131.507 re +f +Q +0 g +0 G +[1 0 0 1 0 3.586] cm +0 g +0 G +[1 0 0 1 0 127.921] cm +0 g +0 G +[1 0 0 1 18 -8.369] cm +0 g +0 G +[1 0 0 1 -90 -625.624] cm +[1 0 0 1 0 0] Tm +0 0 Td +90 625.624 Td +/F130_0 9.963 Tf +(Julian) 35.8668 Tj +-426 TJm +(Seward) 35.8668 Tj +102.732 613.669 Td +(On) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(Performance) 65.7558 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(BW) 11.9556 Tj +1 TJm +(T) 5.9778 Tj +-426 TJm +(Sorting) 41.8446 Tj +-426 TJm +(Algorithms) 59.778 Tj +102.732 601.714 Td +(Proceedings) 65.7558 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(IEEE) 23.9112 Tj +-425 TJm +(Data) 23.9112 Tj +-426 TJm +(Compression) 65.7558 Tj +-426 TJm +(Conference) 59.778 Tj +-426 TJm +(2000) 23.9112 Tj +111.22 589.759 Td +(Snowbird,) 53.8002 Tj +-426 TJm +(Utah.) 29.889 Tj +-852 TJm +(28-30) 29.889 Tj +-426 TJm +(M) 5.9778 Tj +1 TJm +(arch) 23.9112 Tj +-426 TJm +(2000.) 29.889 Tj +90 565.848 Td +(Julian) 35.8668 Tj +-426 TJm +(Seward) 35.8668 Tj +102.732 553.893 Td +(Space-time) 59.778 Tj +-426 TJm +(Tradeoffs) 53.8002 Tj +-426 TJm +(in) 11.9556 Tj +-425 TJm +(the) 17.9334 Tj +-426 TJm +(Inverse) 41.8446 Tj +-426 TJm +(B-W) 17.9334 Tj +-426 TJm +(Transform) 53.8002 Tj +102.732 541.938 Td +(Proceedings) 65.7558 Tj +-426 TJm +(of) 11.9556 Tj +-426 TJm +(the) 17.9334 Tj +-426 TJm +(IEEE) 23.9112 Tj +-425 TJm +(Data) 23.9112 Tj +-426 TJm +(Compression) 65.7558 Tj +-426 TJm +(Conference) 59.778 Tj +-426 TJm +(2001) 23.9112 Tj +111.22 529.983 Td +(Snowbird,) 53.8002 Tj +-426 TJm +(Utah.) 29.889 Tj +-852 TJm +(27-29) 29.889 Tj +-426 TJm +(M) 5.9778 Tj +1 TJm +(arch) 23.9112 Tj +-426 TJm +(2001.) 29.889 Tj +[1 0 0 1 72 502.486] cm +0 g +0 G +[1 0 0 1 468 3.586] cm +0 g +0 G +0 g +0 G +[1 0 0 1 -468 -3.586] cm +0 g +0 G +[1 0 0 1 0 -451.634] cm +0 g +0 G +[1 0 0 1 1.893 0] cm +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +0 g +0 G +[1 0 0 1 374.394 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 2.491 0] cm +0 g +0 G +[1 0 0 1 0 6.854] cm +0 g +0 G +0 g +0 G +[1 0 0 1 40.572 -6.755] cm +0 g +0 G +[1 0 0 1 -493.841 -50.951] cm +[1 0 0 1 0 0] Tm +0 0 Td +534.414 50.951 Td +/F128_0 9.963 Tf +(35) 9.963 Tj +[1 0 0 1 453.269 50.852] cm +0 g +0 G +0 g +0 G +[1 0 0 1 93.598 0] cm +0 g +0 G +0 g +0 G +[1 0 0 1 6.277 0] cm +0 g +0 G +[1 0 0 1 -13.144 0] cm +0 g +0 G +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font CJBHNS+CMMI10 +%%+ font RBGKEI+CMSY10 +%%EOF diff --git a/commands/bzip2-1.0.3/manual.xml b/commands/bzip2-1.0.3/manual.xml new file mode 100644 index 000000000..1ab5bd71d --- /dev/null +++ b/commands/bzip2-1.0.3/manual.xml @@ -0,0 +1,2966 @@ + + + %common-ents; +]> + + + + + bzip2 and libbzip2, version 1.0.3 + A program and library for data compression + + &bz-lifespan; + Julian Seward + + Version &bz-version; of &bz-date; + + + + Julian + Seward + + &bz-url; + + + + + + + This program, bzip2, the + associated library libbzip2, and + all documentation, are copyright © &bz-lifespan; Julian Seward. + All rights reserved. + + Redistribution and use in source and binary forms, with + or without modification, are permitted provided that the + following conditions are met: + + + + Redistributions of source code must retain the + above copyright notice, this list of conditions and the + following disclaimer. + + 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. + + Altered source versions must be plainly marked + as such, and must not be misrepresented as being the original + software. + + The name of the author may not be used to + endorse or promote products derived from this software without + specific prior written permission. + + + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE. + + PATENTS: To the best of my knowledge, + bzip2 and + libbzip2 do not use any patented + algorithms. However, I do not have the resources to carry + out a patent search. Therefore I cannot give any guarantee of + the above statement. + + + + + + + + + +Introduction + +bzip2 compresses files +using the Burrows-Wheeler block-sorting text compression +algorithm, and Huffman coding. Compression is generally +considerably better than that achieved by more conventional +LZ77/LZ78-based compressors, and approaches the performance of +the PPM family of statistical compressors. + +bzip2 is built on top of +libbzip2, a flexible library for +handling compressed data in the +bzip2 format. This manual +describes both how to use the program and how to work with the +library interface. Most of the manual is devoted to this +library, not the program, which is good news if your interest is +only in the program. + + + + describes how to use + bzip2; this is the only part + you need to read if you just want to know how to operate the + program. + + describes the + programming interfaces in detail, and + + records some + miscellaneous notes which I thought ought to be recorded + somewhere. + + + + + + + +How to use bzip2 + +This chapter contains a copy of the +bzip2 man page, and nothing +else. + + +NAME + + + + bzip2, + bunzip2 - a block-sorting file + compressor, v1.0.3 + + bzcat - + decompresses files to stdout + + bzip2recover - + recovers data from damaged bzip2 files + + + + + + + +SYNOPSIS + + + + bzip2 [ + -cdfkqstvzVL123456789 ] [ filenames ... ] + + bunzip2 [ + -fkvsVL ] [ filenames ... ] + + bzcat [ -s ] [ + filenames ... ] + + bzip2recover + filename + + + + + + + +DESCRIPTION + +bzip2 compresses files +using the Burrows-Wheeler block sorting text compression +algorithm, and Huffman coding. Compression is generally +considerably better than that achieved by more conventional +LZ77/LZ78-based compressors, and approaches the performance of +the PPM family of statistical compressors. + +The command-line options are deliberately very similar to +those of GNU gzip, but they are +not identical. + +bzip2 expects a list of +file names to accompany the command-line flags. Each file is +replaced by a compressed version of itself, with the name +original_name.bz2. Each +compressed file has the same modification date, permissions, and, +when possible, ownership as the corresponding original, so that +these properties can be correctly restored at decompression time. +File name handling is naive in the sense that there is no +mechanism for preserving original file names, permissions, +ownerships or dates in filesystems which lack these concepts, or +have serious file name length restrictions, such as +MS-DOS. + +bzip2 and +bunzip2 will by default not +overwrite existing files. If you want this to happen, specify +the -f flag. + +If no file names are specified, +bzip2 compresses from standard +input to standard output. In this case, +bzip2 will decline to write +compressed output to a terminal, as this would be entirely +incomprehensible and therefore pointless. + +bunzip2 (or +bzip2 -d) decompresses all +specified files. Files which were not created by +bzip2 will be detected and +ignored, and a warning issued. +bzip2 attempts to guess the +filename for the decompressed file from that of the compressed +file as follows: + + + + filename.bz2 + becomes + filename + + filename.bz + becomes + filename + + filename.tbz2 + becomes + filename.tar + + filename.tbz + becomes + filename.tar + + anyothername + becomes + anyothername.out + + + +If the file does not end in one of the recognised endings, +.bz2, +.bz, +.tbz2 or +.tbz, +bzip2 complains that it cannot +guess the name of the original file, and uses the original name +with .out appended. + +As with compression, supplying no filenames causes +decompression from standard input to standard output. + +bunzip2 will correctly +decompress a file which is the concatenation of two or more +compressed files. The result is the concatenation of the +corresponding uncompressed files. Integrity testing +(-t) of concatenated compressed +files is also supported. + +You can also compress or decompress files to the standard +output by giving the -c flag. +Multiple files may be compressed and decompressed like this. The +resulting outputs are fed sequentially to stdout. Compression of +multiple files in this manner generates a stream containing +multiple compressed file representations. Such a stream can be +decompressed correctly only by +bzip2 version 0.9.0 or later. +Earlier versions of bzip2 will +stop after decompressing the first file in the stream. + +bzcat (or +bzip2 -dc) decompresses all +specified files to the standard output. + +bzip2 will read arguments +from the environment variables +BZIP2 and +BZIP, in that order, and will +process them before any arguments read from the command line. +This gives a convenient way to supply default arguments. + +Compression is always performed, even if the compressed +file is slightly larger than the original. Files of less than +about one hundred bytes tend to get larger, since the compression +mechanism has a constant overhead in the region of 50 bytes. +Random data (including the output of most file compressors) is +coded at about 8.05 bits per byte, giving an expansion of around +0.5%. + +As a self-check for your protection, +bzip2 uses 32-bit CRCs to make +sure that the decompressed version of a file is identical to the +original. This guards against corruption of the compressed data, +and against undetected bugs in +bzip2 (hopefully very unlikely). +The chances of data corruption going undetected is microscopic, +about one chance in four billion for each file processed. Be +aware, though, that the check occurs upon decompression, so it +can only tell you that something is wrong. It can't help you +recover the original uncompressed data. You can use +bzip2recover to try to recover +data from damaged files. + +Return values: 0 for a normal exit, 1 for environmental +problems (file not found, invalid flags, I/O errors, etc.), 2 +to indicate a corrupt compressed file, 3 for an internal +consistency error (eg, bug) which caused +bzip2 to panic. + + + + + +OPTIONS + + + + + -c --stdout + Compress or decompress to standard + output. + + + + -d --decompress + Force decompression. + bzip2, + bunzip2 and + bzcat are really the same + program, and the decision about what actions to take is done on + the basis of which name is used. This flag overrides that + mechanism, and forces bzip2 to decompress. + + + + -z --compress + The complement to + -d: forces compression, + regardless of the invokation name. + + + + -t --test + Check integrity of the specified file(s), but + don't decompress them. This really performs a trial + decompression and throws away the result. + + + + -f --force + Force overwrite of output files. Normally, + bzip2 will not overwrite + existing output files. Also forces + bzip2 to break hard links to + files, which it otherwise wouldn't do. + bzip2 normally declines + to decompress files which don't have the correct magic header + bytes. If forced (-f), + however, it will pass such files through unmodified. This is + how GNU gzip behaves. + + + + + -k --keep + Keep (don't delete) input files during + compression or decompression. + + + + -s --small + Reduce memory usage, for compression, + decompression and testing. Files are decompressed and tested + using a modified algorithm which only requires 2.5 bytes per + block byte. This means any file can be decompressed in 2300k + of memory, albeit at about half the normal speed. + During compression, -s + selects a block size of 200k, which limits memory use to around + the same figure, at the expense of your compression ratio. In + short, if your machine is low on memory (8 megabytes or less), + use -s for everything. See + below. + + + + -q --quiet + Suppress non-essential warning messages. + Messages pertaining to I/O errors and other critical events + will not be suppressed. + + + + -v --verbose + Verbose mode -- show the compression ratio for + each file processed. Further + -v's increase the verbosity + level, spewing out lots of information which is primarily of + interest for diagnostic purposes. + + + + -L --license -V --version + Display the software version, license terms and + conditions. + + + + -1 (or + --fast) to + -9 (or + -best) + Set the block size to 100 k, 200 k ... 900 k + when compressing. Has no effect when decompressing. See below. The + --fast and + --best aliases are primarily + for GNU gzip compatibility. + In particular, --fast doesn't + make things significantly faster. And + --best merely selects the + default behaviour. + + + + -- + Treats all subsequent arguments as file names, + even if they start with a dash. This is so you can handle + files with names beginning with a dash, for example: + bzip2 -- + -myfilename. + + + + --repetitive-fast + --repetitive-best + These flags are redundant in versions 0.9.5 and + above. They provided some coarse control over the behaviour of + the sorting algorithm in earlier versions, which was sometimes + useful. 0.9.5 and above have an improved algorithm which + renders these flags irrelevant. + + + + + + + + +MEMORY MANAGEMENT + +bzip2 compresses large +files in blocks. The block size affects both the compression +ratio achieved, and the amount of memory needed for compression +and decompression. The flags -1 +through -9 specify the block +size to be 100,000 bytes through 900,000 bytes (the default) +respectively. At decompression time, the block size used for +compression is read from the header of the compressed file, and +bunzip2 then allocates itself +just enough memory to decompress the file. Since block sizes are +stored in compressed files, it follows that the flags +-1 to +-9 are irrelevant to and so +ignored during decompression. + +Compression and decompression requirements, in bytes, can be +estimated as: + +Compression: 400k + ( 8 x block size ) + +Decompression: 100k + ( 4 x block size ), or + 100k + ( 2.5 x block size ) + + +Larger block sizes give rapidly diminishing marginal +returns. Most of the compression comes from the first two or +three hundred k of block size, a fact worth bearing in mind when +using bzip2 on small machines. +It is also important to appreciate that the decompression memory +requirement is set at compression time by the choice of block +size. + +For files compressed with the default 900k block size, +bunzip2 will require about 3700 +kbytes to decompress. To support decompression of any file on a +4 megabyte machine, bunzip2 has +an option to decompress using approximately half this amount of +memory, about 2300 kbytes. Decompression speed is also halved, +so you should use this option only where necessary. The relevant +flag is -s. + +In general, try and use the largest block size memory +constraints allow, since that maximises the compression achieved. +Compression and decompression speed are virtually unaffected by +block size. + +Another significant point applies to files which fit in a +single block -- that means most files you'd encounter using a +large block size. The amount of real memory touched is +proportional to the size of the file, since the file is smaller +than a block. For example, compressing a file 20,000 bytes long +with the flag -9 will cause the +compressor to allocate around 7600k of memory, but only touch +400k + 20000 * 8 = 560 kbytes of it. Similarly, the decompressor +will allocate 3700k but only touch 100k + 20000 * 4 = 180 +kbytes. + +Here is a table which summarises the maximum memory usage +for different block sizes. Also recorded is the total compressed +size for 14 files of the Calgary Text Compression Corpus +totalling 3,141,622 bytes. This column gives some feel for how +compression varies with block size. These figures tend to +understate the advantage of larger block sizes for larger files, +since the Corpus is dominated by smaller files. + + + Compress Decompress Decompress Corpus +Flag usage usage -s usage Size + + -1 1200k 500k 350k 914704 + -2 2000k 900k 600k 877703 + -3 2800k 1300k 850k 860338 + -4 3600k 1700k 1100k 846899 + -5 4400k 2100k 1350k 845160 + -6 5200k 2500k 1600k 838626 + -7 6100k 2900k 1850k 834096 + -8 6800k 3300k 2100k 828642 + -9 7600k 3700k 2350k 828642 + + + + + + +RECOVERING DATA FROM DAMAGED FILES + +bzip2 compresses files in +blocks, usually 900kbytes long. Each block is handled +independently. If a media or transmission error causes a +multi-block .bz2 file to become +damaged, it may be possible to recover data from the undamaged +blocks in the file. + +The compressed representation of each block is delimited by +a 48-bit pattern, which makes it possible to find the block +boundaries with reasonable certainty. Each block also carries +its own 32-bit CRC, so damaged blocks can be distinguished from +undamaged ones. + +bzip2recover is a simple +program whose purpose is to search for blocks in +.bz2 files, and write each block +out into its own .bz2 file. You +can then use bzip2 -t to test +the integrity of the resulting files, and decompress those which +are undamaged. + +bzip2recover takes a +single argument, the name of the damaged file, and writes a +number of files rec0001file.bz2, +rec0002file.bz2, etc, containing +the extracted blocks. The output filenames are designed so that +the use of wildcards in subsequent processing -- for example, +bzip2 -dc rec*file.bz2 > +recovered_data -- lists the files in the correct +order. + +bzip2recover should be of +most use dealing with large .bz2 +files, as these will contain many blocks. It is clearly futile +to use it on damaged single-block files, since a damaged block +cannot be recovered. If you wish to minimise any potential data +loss through media or transmission errors, you might consider +compressing with a smaller block size. + + + + + +PERFORMANCE NOTES + +The sorting phase of compression gathers together similar +strings in the file. Because of this, files containing very long +runs of repeated symbols, like "aabaabaabaab ..." (repeated +several hundred times) may compress more slowly than normal. +Versions 0.9.5 and above fare much better than previous versions +in this respect. The ratio between worst-case and average-case +compression time is in the region of 10:1. For previous +versions, this figure was more like 100:1. You can use the +-vvvv option to monitor progress +in great detail, if you want. + +Decompression speed is unaffected by these +phenomena. + +bzip2 usually allocates +several megabytes of memory to operate in, and then charges all +over it in a fairly random fashion. This means that performance, +both for compressing and decompressing, is largely determined by +the speed at which your machine can service cache misses. +Because of this, small changes to the code to reduce the miss +rate have been observed to give disproportionately large +performance improvements. I imagine +bzip2 will perform best on +machines with very large caches. + + + + + + +CAVEATS + +I/O error messages are not as helpful as they could be. +bzip2 tries hard to detect I/O +errors and exit cleanly, but the details of what the problem is +sometimes seem rather misleading. + +This manual page pertains to version &bz-version; of +bzip2. Compressed data created +by this version is entirely forwards and backwards compatible +with the previous public releases, versions 0.1pl2, 0.9.0 and +0.9.5, 1.0.0, 1.0.1 and 1.0.2, but with the following exception: 0.9.0 +and above can correctly decompress multiple concatenated +compressed files. 0.1pl2 cannot do this; it will stop after +decompressing just the first file in the stream. + +bzip2recover versions +prior to 1.0.2 used 32-bit integers to represent bit positions in +compressed files, so it could not handle compressed files more +than 512 megabytes long. Versions 1.0.2 and above use 64-bit ints +on some platforms which support them (GNU supported targets, and +Windows). To establish whether or not +bzip2recover was built with such +a limitation, run it without arguments. In any event you can +build yourself an unlimited version if you can recompile it with +MaybeUInt64 set to be an +unsigned 64-bit integer. + + + + + + +AUTHOR + +Julian Seward, +&bz-email; + +The ideas embodied in +bzip2 are due to (at least) the +following people: Michael Burrows and David Wheeler (for the +block sorting transformation), David Wheeler (again, for the +Huffman coder), Peter Fenwick (for the structured coding model in +the original bzip, and many +refinements), and Alistair Moffat, Radford Neal and Ian Witten +(for the arithmetic coder in the original +bzip). I am much indebted for +their help, support and advice. See the manual in the source +distribution for pointers to sources of documentation. Christian +von Roques encouraged me to look for faster sorting algorithms, +so as to speed up compression. Bela Lubkin encouraged me to +improve the worst-case compression performance. +Donna Robinson XMLised the documentation. +Many people sent +patches, helped with portability problems, lent machines, gave +advice and were generally helpful. + + + + + + + + + +Programming with <computeroutput>libbzip2</computeroutput> + + +This chapter describes the programming interface to +libbzip2. + +For general background information, particularly about +memory use and performance aspects, you'd be well advised to read + as well. + + + +Top-level structure + +libbzip2 is a flexible +library for compressing and decompressing data in the +bzip2 data format. Although +packaged as a single entity, it helps to regard the library as +three separate parts: the low level interface, and the high level +interface, and some utility functions. + +The structure of +libbzip2's interfaces is similar +to that of Jean-loup Gailly's and Mark Adler's excellent +zlib library. + +All externally visible symbols have names beginning +BZ2_. This is new in version +1.0. The intention is to minimise pollution of the namespaces of +library clients. + +To use any part of the library, you need to +#include <bzlib.h> +into your sources. + + + + +Low-level summary + +This interface provides services for compressing and +decompressing data in memory. There's no provision for dealing +with files, streams or any other I/O mechanisms, just straight +memory-to-memory work. In fact, this part of the library can be +compiled without inclusion of +stdio.h, which may be helpful +for embedded applications. + +The low-level part of the library has no global variables +and is therefore thread-safe. + +Six routines make up the low level interface: +BZ2_bzCompressInit, +BZ2_bzCompress, and +BZ2_bzCompressEnd for +compression, and a corresponding trio +BZ2_bzDecompressInit, +BZ2_bzDecompress and +BZ2_bzDecompressEnd for +decompression. The *Init +functions allocate memory for compression/decompression and do +other initialisations, whilst the +*End functions close down +operations and release memory. + +The real work is done by +BZ2_bzCompress and +BZ2_bzDecompress. These +compress and decompress data from a user-supplied input buffer to +a user-supplied output buffer. These buffers can be any size; +arbitrary quantities of data are handled by making repeated calls +to these functions. This is a flexible mechanism allowing a +consumer-pull style of activity, or producer-push, or a mixture +of both. + + + + + +High-level summary + +This interface provides some handy wrappers around the +low-level interface to facilitate reading and writing +bzip2 format files +(.bz2 files). The routines +provide hooks to facilitate reading files in which the +bzip2 data stream is embedded +within some larger-scale file structure, or where there are +multiple bzip2 data streams +concatenated end-to-end. + +For reading files, +BZ2_bzReadOpen, +BZ2_bzRead, +BZ2_bzReadClose and +BZ2_bzReadGetUnused are +supplied. For writing files, +BZ2_bzWriteOpen, +BZ2_bzWrite and +BZ2_bzWriteFinish are +available. + +As with the low-level library, no global variables are used +so the library is per se thread-safe. However, if I/O errors +occur whilst reading or writing the underlying compressed files, +you may have to consult errno to +determine the cause of the error. In that case, you'd need a C +library which correctly supports +errno in a multithreaded +environment. + +To make the library a little simpler and more portable, +BZ2_bzReadOpen and +BZ2_bzWriteOpen require you to +pass them file handles (FILE*s) +which have previously been opened for reading or writing +respectively. That avoids portability problems associated with +file operations and file attributes, whilst not being much of an +imposition on the programmer. + + + + + +Utility functions summary + +For very simple needs, +BZ2_bzBuffToBuffCompress and +BZ2_bzBuffToBuffDecompress are +provided. These compress data in memory from one buffer to +another buffer in a single function call. You should assess +whether these functions fulfill your memory-to-memory +compression/decompression requirements before investing effort in +understanding the more general but more complex low-level +interface. + +Yoshioka Tsuneo +(QWF00133@niftyserve.or.jp / +tsuneo-y@is.aist-nara.ac.jp) has +contributed some functions to give better +zlib compatibility. These +functions are BZ2_bzopen, +BZ2_bzread, +BZ2_bzwrite, +BZ2_bzflush, +BZ2_bzclose, +BZ2_bzerror and +BZ2_bzlibVersion. You may find +these functions more convenient for simple file reading and +writing, than those in the high-level interface. These functions +are not (yet) officially part of the library, and are minimally +documented here. If they break, you get to keep all the pieces. +I hope to document them properly when time permits. + +Yoshioka also contributed modifications to allow the +library to be built as a Windows DLL. + + + + + + + +Error handling + +The library is designed to recover cleanly in all +situations, including the worst-case situation of decompressing +random data. I'm not 100% sure that it can always do this, so +you might want to add a signal handler to catch segmentation +violations during decompression if you are feeling especially +paranoid. I would be interested in hearing more about the +robustness of the library to corrupted compressed data. + +Version 1.0.3 more robust in this respect than any +previous version. Investigations with Valgrind (a tool for detecting +problems with memory management) indicate +that, at least for the few files I tested, all single-bit errors +in the decompressed data are caught properly, with no +segmentation faults, no uses of uninitialised data, no out of +range reads or writes, and no infinite looping in the decompressor. +So it's certainly pretty robust, although +I wouldn't claim it to be totally bombproof. + +The file bzlib.h contains +all definitions needed to use the library. In particular, you +should definitely not include +bzlib_private.h. + +In bzlib.h, the various +return values are defined. The following list is not intended as +an exhaustive description of the circumstances in which a given +value may be returned -- those descriptions are given later. +Rather, it is intended to convey the rough meaning of each return +value. The first five actions are normal and not intended to +denote an error situation. + + + + + BZ_OK + The requested action was completed + successfully. + + + + BZ_RUN_OK, BZ_FLUSH_OK, + BZ_FINISH_OK + In + BZ2_bzCompress, the requested + flush/finish/nothing-special action was completed + successfully. + + + + BZ_STREAM_END + Compression of data was completed, or the + logical stream end was detected during + decompression. + + + + +The following return values indicate an error of some +kind. + + + + + BZ_CONFIG_ERROR + Indicates that the library has been improperly + compiled on your platform -- a major configuration error. + Specifically, it means that + sizeof(char), + sizeof(short) and + sizeof(int) are not 1, 2 and + 4 respectively, as they should be. Note that the library + should still work properly on 64-bit platforms which follow + the LP64 programming model -- that is, where + sizeof(long) and + sizeof(void*) are 8. Under + LP64, sizeof(int) is still 4, + so libbzip2, which doesn't + use the long type, is + OK. + + + + BZ_SEQUENCE_ERROR + When using the library, it is important to call + the functions in the correct sequence and with data structures + (buffers etc) in the correct states. + libbzip2 checks as much as it + can to ensure this is happening, and returns + BZ_SEQUENCE_ERROR if not. + Code which complies precisely with the function semantics, as + detailed below, should never receive this value; such an event + denotes buggy code which you should + investigate. + + + + BZ_PARAM_ERROR + Returned when a parameter to a function call is + out of range or otherwise manifestly incorrect. As with + BZ_SEQUENCE_ERROR, this + denotes a bug in the client code. The distinction between + BZ_PARAM_ERROR and + BZ_SEQUENCE_ERROR is a bit + hazy, but still worth making. + + + + BZ_MEM_ERROR + Returned when a request to allocate memory + failed. Note that the quantity of memory needed to decompress + a stream cannot be determined until the stream's header has + been read. So + BZ2_bzDecompress and + BZ2_bzRead may return + BZ_MEM_ERROR even though some + of the compressed data has been read. The same is not true + for compression; once + BZ2_bzCompressInit or + BZ2_bzWriteOpen have + successfully completed, + BZ_MEM_ERROR cannot + occur. + + + + BZ_DATA_ERROR + Returned when a data integrity error is + detected during decompression. Most importantly, this means + when stored and computed CRCs for the data do not match. This + value is also returned upon detection of any other anomaly in + the compressed data. + + + + BZ_DATA_ERROR_MAGIC + As a special case of + BZ_DATA_ERROR, it is + sometimes useful to know when the compressed stream does not + start with the correct magic bytes ('B' 'Z' + 'h'). + + + + BZ_IO_ERROR + Returned by + BZ2_bzRead and + BZ2_bzWrite when there is an + error reading or writing in the compressed file, and by + BZ2_bzReadOpen and + BZ2_bzWriteOpen for attempts + to use a file for which the error indicator (viz, + ferror(f)) is set. On + receipt of BZ_IO_ERROR, the + caller should consult errno + and/or perror to acquire + operating-system specific information about the + problem. + + + + BZ_UNEXPECTED_EOF + Returned by + BZ2_bzRead when the + compressed file finishes before the logical end of stream is + detected. + + + + BZ_OUTBUFF_FULL + Returned by + BZ2_bzBuffToBuffCompress and + BZ2_bzBuffToBuffDecompress to + indicate that the output data will not fit into the output + buffer provided. + + + + + + + + + +Low-level interface + + + +<computeroutput>BZ2_bzCompressInit</computeroutput> + + +typedef struct { + char *next_in; + unsigned int avail_in; + unsigned int total_in_lo32; + unsigned int total_in_hi32; + + char *next_out; + unsigned int avail_out; + unsigned int total_out_lo32; + unsigned int total_out_hi32; + + void *state; + + void *(*bzalloc)(void *,int,int); + void (*bzfree)(void *,void *); + void *opaque; +} bz_stream; + +int BZ2_bzCompressInit ( bz_stream *strm, + int blockSize100k, + int verbosity, + int workFactor ); + + +Prepares for compression. The +bz_stream structure holds all +data pertaining to the compression activity. A +bz_stream structure should be +allocated and initialised prior to the call. The fields of +bz_stream comprise the entirety +of the user-visible data. state +is a pointer to the private data structures required for +compression. + +Custom memory allocators are supported, via fields +bzalloc, +bzfree, and +opaque. The value +opaque is passed to as the first +argument to all calls to bzalloc +and bzfree, but is otherwise +ignored by the library. The call bzalloc ( +opaque, n, m ) is expected to return a pointer +p to n * +m bytes of memory, and bzfree ( +opaque, p ) should free that memory. + +If you don't want to use a custom memory allocator, set +bzalloc, +bzfree and +opaque to +NULL, and the library will then +use the standard malloc / +free routines. + +Before calling +BZ2_bzCompressInit, fields +bzalloc, +bzfree and +opaque should be filled +appropriately, as just described. Upon return, the internal +state will have been allocated and initialised, and +total_in_lo32, +total_in_hi32, +total_out_lo32 and +total_out_hi32 will have been +set to zero. These four fields are used by the library to inform +the caller of the total amount of data passed into and out of the +library, respectively. You should not try to change them. As of +version 1.0, 64-bit counts are maintained, even on 32-bit +platforms, using the _hi32 +fields to store the upper 32 bits of the count. So, for example, +the total amount of data in is (total_in_hi32 +<< 32) + total_in_lo32. + +Parameter blockSize100k +specifies the block size to be used for compression. It should +be a value between 1 and 9 inclusive, and the actual block size +used is 100000 x this figure. 9 gives the best compression but +takes most memory. + +Parameter verbosity should +be set to a number between 0 and 4 inclusive. 0 is silent, and +greater numbers give increasingly verbose monitoring/debugging +output. If the library has been compiled with +-DBZ_NO_STDIO, no such output +will appear for any verbosity setting. + +Parameter workFactor +controls how the compression phase behaves when presented with +worst case, highly repetitive, input data. If compression runs +into difficulties caused by repetitive data, the library switches +from the standard sorting algorithm to a fallback algorithm. The +fallback is slower than the standard algorithm by perhaps a +factor of three, but always behaves reasonably, no matter how bad +the input. + +Lower values of workFactor +reduce the amount of effort the standard algorithm will expend +before resorting to the fallback. You should set this parameter +carefully; too low, and many inputs will be handled by the +fallback algorithm and so compress rather slowly, too high, and +your average-to-worst case compression times can become very +large. The default value of 30 gives reasonable behaviour over a +wide range of circumstances. + +Allowable values range from 0 to 250 inclusive. 0 is a +special case, equivalent to using the default value of 30. + +Note that the compressed output generated is the same +regardless of whether or not the fallback algorithm is +used. + +Be aware also that this parameter may disappear entirely in +future versions of the library. In principle it should be +possible to devise a good way to automatically choose which +algorithm to use. Such a mechanism would render the parameter +obsolete. + +Possible return values: + + +BZ_CONFIG_ERROR + if the library has been mis-compiled +BZ_PARAM_ERROR + if strm is NULL + or blockSize < 1 or blockSize > 9 + or verbosity < 0 or verbosity > 4 + or workFactor < 0 or workFactor > 250 +BZ_MEM_ERROR + if not enough memory is available +BZ_OK + otherwise + + +Allowable next actions: + + +BZ2_bzCompress + if BZ_OK is returned + no specific action needed in case of error + + + + + + +<computeroutput>BZ2_bzCompress</computeroutput> + + +int BZ2_bzCompress ( bz_stream *strm, int action ); + + +Provides more input and/or output buffer space for the +library. The caller maintains input and output buffers, and +calls BZ2_bzCompress to transfer +data between them. + +Before each call to +BZ2_bzCompress, +next_in should point at the data +to be compressed, and avail_in +should indicate how many bytes the library may read. +BZ2_bzCompress updates +next_in, +avail_in and +total_in to reflect the number +of bytes it has read. + +Similarly, next_out should +point to a buffer in which the compressed data is to be placed, +with avail_out indicating how +much output space is available. +BZ2_bzCompress updates +next_out, +avail_out and +total_out to reflect the number +of bytes output. + +You may provide and remove as little or as much data as you +like on each call of +BZ2_bzCompress. In the limit, +it is acceptable to supply and remove data one byte at a time, +although this would be terribly inefficient. You should always +ensure that at least one byte of output space is available at +each call. + +A second purpose of +BZ2_bzCompress is to request a +change of mode of the compressed stream. + +Conceptually, a compressed stream can be in one of four +states: IDLE, RUNNING, FLUSHING and FINISHING. Before +initialisation +(BZ2_bzCompressInit) and after +termination (BZ2_bzCompressEnd), +a stream is regarded as IDLE. + +Upon initialisation +(BZ2_bzCompressInit), the stream +is placed in the RUNNING state. Subsequent calls to +BZ2_bzCompress should pass +BZ_RUN as the requested action; +other actions are illegal and will result in +BZ_SEQUENCE_ERROR. + +At some point, the calling program will have provided all +the input data it wants to. It will then want to finish up -- in +effect, asking the library to process any data it might have +buffered internally. In this state, +BZ2_bzCompress will no longer +attempt to read data from +next_in, but it will want to +write data to next_out. Because +the output buffer supplied by the user can be arbitrarily small, +the finishing-up operation cannot necessarily be done with a +single call of +BZ2_bzCompress. + +Instead, the calling program passes +BZ_FINISH as an action to +BZ2_bzCompress. This changes +the stream's state to FINISHING. Any remaining input (ie, +next_in[0 .. avail_in-1]) is +compressed and transferred to the output buffer. To do this, +BZ2_bzCompress must be called +repeatedly until all the output has been consumed. At that +point, BZ2_bzCompress returns +BZ_STREAM_END, and the stream's +state is set back to IDLE. +BZ2_bzCompressEnd should then be +called. + +Just to make sure the calling program does not cheat, the +library makes a note of avail_in +at the time of the first call to +BZ2_bzCompress which has +BZ_FINISH as an action (ie, at +the time the program has announced its intention to not supply +any more input). By comparing this value with that of +avail_in over subsequent calls +to BZ2_bzCompress, the library +can detect any attempts to slip in more data to compress. Any +calls for which this is detected will return +BZ_SEQUENCE_ERROR. This +indicates a programming mistake which should be corrected. + +Instead of asking to finish, the calling program may ask +BZ2_bzCompress to take all the +remaining input, compress it and terminate the current +(Burrows-Wheeler) compression block. This could be useful for +error control purposes. The mechanism is analogous to that for +finishing: call BZ2_bzCompress +with an action of BZ_FLUSH, +remove output data, and persist with the +BZ_FLUSH action until the value +BZ_RUN is returned. As with +finishing, BZ2_bzCompress +detects any attempt to provide more input data once the flush has +begun. + +Once the flush is complete, the stream returns to the +normal RUNNING state. + +This all sounds pretty complex, but isn't really. Here's a +table which shows which actions are allowable in each state, what +action will be taken, what the next state is, and what the +non-error return values are. Note that you can't explicitly ask +what state the stream is in, but nor do you need to -- it can be +inferred from the values returned by +BZ2_bzCompress. + + +IDLE/any + Illegal. IDLE state only exists after BZ2_bzCompressEnd or + before BZ2_bzCompressInit. + Return value = BZ_SEQUENCE_ERROR + +RUNNING/BZ_RUN + Compress from next_in to next_out as much as possible. + Next state = RUNNING + Return value = BZ_RUN_OK + +RUNNING/BZ_FLUSH + Remember current value of next_in. Compress from next_in + to next_out as much as possible, but do not accept any more input. + Next state = FLUSHING + Return value = BZ_FLUSH_OK + +RUNNING/BZ_FINISH + Remember current value of next_in. Compress from next_in + to next_out as much as possible, but do not accept any more input. + Next state = FINISHING + Return value = BZ_FINISH_OK + +FLUSHING/BZ_FLUSH + Compress from next_in to next_out as much as possible, + but do not accept any more input. + If all the existing input has been used up and all compressed + output has been removed + Next state = RUNNING; Return value = BZ_RUN_OK + else + Next state = FLUSHING; Return value = BZ_FLUSH_OK + +FLUSHING/other + Illegal. + Return value = BZ_SEQUENCE_ERROR + +FINISHING/BZ_FINISH + Compress from next_in to next_out as much as possible, + but to not accept any more input. + If all the existing input has been used up and all compressed + output has been removed + Next state = IDLE; Return value = BZ_STREAM_END + else + Next state = FINISHING; Return value = BZ_FINISHING + +FINISHING/other + Illegal. + Return value = BZ_SEQUENCE_ERROR + + + +That still looks complicated? Well, fair enough. The +usual sequence of calls for compressing a load of data is: + + + + Get started with + BZ2_bzCompressInit. + + Shovel data in and shlurp out its compressed form + using zero or more calls of + BZ2_bzCompress with action = + BZ_RUN. + + Finish up. Repeatedly call + BZ2_bzCompress with action = + BZ_FINISH, copying out the + compressed output, until + BZ_STREAM_END is + returned. Close up and go home. Call + BZ2_bzCompressEnd. + + + +If the data you want to compress fits into your input +buffer all at once, you can skip the calls of +BZ2_bzCompress ( ..., BZ_RUN ) +and just do the BZ2_bzCompress ( ..., BZ_FINISH +) calls. + +All required memory is allocated by +BZ2_bzCompressInit. The +compression library can accept any data at all (obviously). So +you shouldn't get any error return values from the +BZ2_bzCompress calls. If you +do, they will be +BZ_SEQUENCE_ERROR, and indicate +a bug in your programming. + +Trivial other possible return values: + + +BZ_PARAM_ERROR + if strm is NULL, or strm->s is NULL + + + + + + +<computeroutput>BZ2_bzCompressEnd</computeroutput> + + +int BZ2_bzCompressEnd ( bz_stream *strm ); + + +Releases all memory associated with a compression +stream. + +Possible return values: + + +BZ_PARAM_ERROR if strm is NULL or strm->s is NULL +BZ_OK otherwise + + + + + + +<computeroutput>BZ2_bzDecompressInit</computeroutput> + + +int BZ2_bzDecompressInit ( bz_stream *strm, int verbosity, int small ); + + +Prepares for decompression. As with +BZ2_bzCompressInit, a +bz_stream record should be +allocated and initialised before the call. Fields +bzalloc, +bzfree and +opaque should be set if a custom +memory allocator is required, or made +NULL for the normal +malloc / +free routines. Upon return, the +internal state will have been initialised, and +total_in and +total_out will be zero. + +For the meaning of parameter +verbosity, see +BZ2_bzCompressInit. + +If small is nonzero, the +library will use an alternative decompression algorithm which +uses less memory but at the cost of decompressing more slowly +(roughly speaking, half the speed, but the maximum memory +requirement drops to around 2300k). See +for more information on memory management. + +Note that the amount of memory needed to decompress a +stream cannot be determined until the stream's header has been +read, so even if +BZ2_bzDecompressInit succeeds, a +subsequent BZ2_bzDecompress +could fail with +BZ_MEM_ERROR. + +Possible return values: + + +BZ_CONFIG_ERROR + if the library has been mis-compiled +BZ_PARAM_ERROR + if ( small != 0 && small != 1 ) + or (verbosity <; 0 || verbosity > 4) +BZ_MEM_ERROR + if insufficient memory is available + + +Allowable next actions: + + +BZ2_bzDecompress + if BZ_OK was returned + no specific action required in case of error + + + + + + +<computeroutput>BZ2_bzDecompress</computeroutput> + + +int BZ2_bzDecompress ( bz_stream *strm ); + + +Provides more input and/out output buffer space for the +library. The caller maintains input and output buffers, and uses +BZ2_bzDecompress to transfer +data between them. + +Before each call to +BZ2_bzDecompress, +next_in should point at the +compressed data, and avail_in +should indicate how many bytes the library may read. +BZ2_bzDecompress updates +next_in, +avail_in and +total_in to reflect the number +of bytes it has read. + +Similarly, next_out should +point to a buffer in which the uncompressed output is to be +placed, with avail_out +indicating how much output space is available. +BZ2_bzCompress updates +next_out, +avail_out and +total_out to reflect the number +of bytes output. + +You may provide and remove as little or as much data as you +like on each call of +BZ2_bzDecompress. In the limit, +it is acceptable to supply and remove data one byte at a time, +although this would be terribly inefficient. You should always +ensure that at least one byte of output space is available at +each call. + +Use of BZ2_bzDecompress is +simpler than +BZ2_bzCompress. + +You should provide input and remove output as described +above, and repeatedly call +BZ2_bzDecompress until +BZ_STREAM_END is returned. +Appearance of BZ_STREAM_END +denotes that BZ2_bzDecompress +has detected the logical end of the compressed stream. +BZ2_bzDecompress will not +produce BZ_STREAM_END until all +output data has been placed into the output buffer, so once +BZ_STREAM_END appears, you are +guaranteed to have available all the decompressed output, and +BZ2_bzDecompressEnd can safely +be called. + +If case of an error return value, you should call +BZ2_bzDecompressEnd to clean up +and release memory. + +Possible return values: + + +BZ_PARAM_ERROR + if strm is NULL or strm->s is NULL + or strm->avail_out < 1 +BZ_DATA_ERROR + if a data integrity error is detected in the compressed stream +BZ_DATA_ERROR_MAGIC + if the compressed stream doesn't begin with the right magic bytes +BZ_MEM_ERROR + if there wasn't enough memory available +BZ_STREAM_END + if the logical end of the data stream was detected and all + output in has been consumed, eg s-->avail_out > 0 +BZ_OK + otherwise + + +Allowable next actions: + + +BZ2_bzDecompress + if BZ_OK was returned +BZ2_bzDecompressEnd + otherwise + + + + + + +<computeroutput>BZ2_bzDecompressEnd</computeroutput> + + +int BZ2_bzDecompressEnd ( bz_stream *strm ); + + +Releases all memory associated with a decompression +stream. + +Possible return values: + + +BZ_PARAM_ERROR + if strm is NULL or strm->s is NULL +BZ_OK + otherwise + + +Allowable next actions: + + + None. + + + + + + + + +High-level interface + +This interface provides functions for reading and writing +bzip2 format files. First, some +general points. + + + + All of the functions take an + int* first argument, + bzerror. After each call, + bzerror should be consulted + first to determine the outcome of the call. If + bzerror is + BZ_OK, the call completed + successfully, and only then should the return value of the + function (if any) be consulted. If + bzerror is + BZ_IO_ERROR, there was an + error reading/writing the underlying compressed file, and you + should then consult errno / + perror to determine the cause + of the difficulty. bzerror + may also be set to various other values; precise details are + given on a per-function basis below. + + If bzerror indicates + an error (ie, anything except + BZ_OK and + BZ_STREAM_END), you should + immediately call + BZ2_bzReadClose (or + BZ2_bzWriteClose, depending on + whether you are attempting to read or to write) to free up all + resources associated with the stream. Once an error has been + indicated, behaviour of all calls except + BZ2_bzReadClose + (BZ2_bzWriteClose) is + undefined. The implication is that (1) + bzerror should be checked + after each call, and (2) if + bzerror indicates an error, + BZ2_bzReadClose + (BZ2_bzWriteClose) should then + be called to clean up. + + The FILE* arguments + passed to BZ2_bzReadOpen / + BZ2_bzWriteOpen should be set + to binary mode. Most Unix systems will do this by default, but + other platforms, including Windows and Mac, will not. If you + omit this, you may encounter problems when moving code to new + platforms. + + Memory allocation requests are handled by + malloc / + free. At present there is no + facility for user-defined memory allocators in the file I/O + functions (could easily be added, though). + + + + + + +<computeroutput>BZ2_bzReadOpen</computeroutput> + + +typedef void BZFILE; + +BZFILE *BZ2_bzReadOpen( int *bzerror, FILE *f, + int verbosity, int small, + void *unused, int nUnused ); + + +Prepare to read compressed data from file handle +f. +f should refer to a file which +has been opened for reading, and for which the error indicator +(ferror(f))is not set. If +small is 1, the library will try +to decompress using less memory, at the expense of speed. + +For reasons explained below, +BZ2_bzRead will decompress the +nUnused bytes starting at +unused, before starting to read +from the file f. At most +BZ_MAX_UNUSED bytes may be +supplied like this. If this facility is not required, you should +pass NULL and +0 for +unused and +nUnused respectively. + +For the meaning of parameters +small and +verbosity, see +BZ2_bzDecompressInit. + +The amount of memory needed to decompress a file cannot be +determined until the file's header has been read. So it is +possible that BZ2_bzReadOpen +returns BZ_OK but a subsequent +call of BZ2_bzRead will return +BZ_MEM_ERROR. + +Possible assignments to +bzerror: + + +BZ_CONFIG_ERROR + if the library has been mis-compiled +BZ_PARAM_ERROR + if f is NULL + or small is neither 0 nor 1 + or ( unused == NULL && nUnused != 0 ) + or ( unused != NULL && !(0 <= nUnused <= BZ_MAX_UNUSED) ) +BZ_IO_ERROR + if ferror(f) is nonzero +BZ_MEM_ERROR + if insufficient memory is available +BZ_OK + otherwise. + + +Possible return values: + + +Pointer to an abstract BZFILE + if bzerror is BZ_OK +NULL + otherwise + + +Allowable next actions: + + +BZ2_bzRead + if bzerror is BZ_OK +BZ2_bzClose + otherwise + + + + + + +<computeroutput>BZ2_bzRead</computeroutput> + + +int BZ2_bzRead ( int *bzerror, BZFILE *b, void *buf, int len ); + + +Reads up to len +(uncompressed) bytes from the compressed file +b into the buffer +buf. If the read was +successful, bzerror is set to +BZ_OK and the number of bytes +read is returned. If the logical end-of-stream was detected, +bzerror will be set to +BZ_STREAM_END, and the number of +bytes read is returned. All other +bzerror values denote an +error. + +BZ2_bzRead will supply +len bytes, unless the logical +stream end is detected or an error occurs. Because of this, it +is possible to detect the stream end by observing when the number +of bytes returned is less than the number requested. +Nevertheless, this is regarded as inadvisable; you should instead +check bzerror after every call +and watch out for +BZ_STREAM_END. + +Internally, BZ2_bzRead +copies data from the compressed file in chunks of size +BZ_MAX_UNUSED bytes before +decompressing it. If the file contains more bytes than strictly +needed to reach the logical end-of-stream, +BZ2_bzRead will almost certainly +read some of the trailing data before signalling +BZ_SEQUENCE_END. To collect the +read but unused data once +BZ_SEQUENCE_END has appeared, +call BZ2_bzReadGetUnused +immediately before +BZ2_bzReadClose. + +Possible assignments to +bzerror: + + +BZ_PARAM_ERROR + if b is NULL or buf is NULL or len < 0 +BZ_SEQUENCE_ERROR + if b was opened with BZ2_bzWriteOpen +BZ_IO_ERROR + if there is an error reading from the compressed file +BZ_UNEXPECTED_EOF + if the compressed file ended before + the logical end-of-stream was detected +BZ_DATA_ERROR + if a data integrity error was detected in the compressed stream +BZ_DATA_ERROR_MAGIC + if the stream does not begin with the requisite header bytes + (ie, is not a bzip2 data file). This is really + a special case of BZ_DATA_ERROR. +BZ_MEM_ERROR + if insufficient memory was available +BZ_STREAM_END + if the logical end of stream was detected. +BZ_OK + otherwise. + + +Possible return values: + + +number of bytes read + if bzerror is BZ_OK or BZ_STREAM_END +undefined + otherwise + + +Allowable next actions: + + +collect data from buf, then BZ2_bzRead or BZ2_bzReadClose + if bzerror is BZ_OK +collect data from buf, then BZ2_bzReadClose or BZ2_bzReadGetUnused + if bzerror is BZ_SEQUENCE_END +BZ2_bzReadClose + otherwise + + + + + + +<computeroutput>BZ2_bzReadGetUnused</computeroutput> + + +void BZ2_bzReadGetUnused( int* bzerror, BZFILE *b, + void** unused, int* nUnused ); + + +Returns data which was read from the compressed file but +was not needed to get to the logical end-of-stream. +*unused is set to the address of +the data, and *nUnused to the +number of bytes. *nUnused will +be set to a value between 0 and +BZ_MAX_UNUSED inclusive. + +This function may only be called once +BZ2_bzRead has signalled +BZ_STREAM_END but before +BZ2_bzReadClose. + +Possible assignments to +bzerror: + + +BZ_PARAM_ERROR + if b is NULL + or unused is NULL or nUnused is NULL +BZ_SEQUENCE_ERROR + if BZ_STREAM_END has not been signalled + or if b was opened with BZ2_bzWriteOpen +BZ_OK + otherwise + + +Allowable next actions: + + +BZ2_bzReadClose + + + + + + +<computeroutput>BZ2_bzReadClose</computeroutput> + + +void BZ2_bzReadClose ( int *bzerror, BZFILE *b ); + + +Releases all memory pertaining to the compressed file +b. +BZ2_bzReadClose does not call +fclose on the underlying file +handle, so you should do that yourself if appropriate. +BZ2_bzReadClose should be called +to clean up after all error situations. + +Possible assignments to +bzerror: + + +BZ_SEQUENCE_ERROR + if b was opened with BZ2_bzOpenWrite +BZ_OK + otherwise + + +Allowable next actions: + + +none + + + + + + +<computeroutput>BZ2_bzWriteOpen</computeroutput> + + +BZFILE *BZ2_bzWriteOpen( int *bzerror, FILE *f, + int blockSize100k, int verbosity, + int workFactor ); + + +Prepare to write compressed data to file handle +f. +f should refer to a file which +has been opened for writing, and for which the error indicator +(ferror(f))is not set. + +For the meaning of parameters +blockSize100k, +verbosity and +workFactor, see +BZ2_bzCompressInit. + +All required memory is allocated at this stage, so if the +call completes successfully, +BZ_MEM_ERROR cannot be signalled +by a subsequent call to +BZ2_bzWrite. + +Possible assignments to +bzerror: + + +BZ_CONFIG_ERROR + if the library has been mis-compiled +BZ_PARAM_ERROR + if f is NULL + or blockSize100k < 1 or blockSize100k > 9 +BZ_IO_ERROR + if ferror(f) is nonzero +BZ_MEM_ERROR + if insufficient memory is available +BZ_OK + otherwise + + +Possible return values: + + +Pointer to an abstract BZFILE + if bzerror is BZ_OK +NULL + otherwise + + +Allowable next actions: + + +BZ2_bzWrite + if bzerror is BZ_OK + (you could go directly to BZ2_bzWriteClose, but this would be pretty pointless) +BZ2_bzWriteClose + otherwise + + + + + + +<computeroutput>BZ2_bzWrite</computeroutput> + + +void BZ2_bzWrite ( int *bzerror, BZFILE *b, void *buf, int len ); + + +Absorbs len bytes from the +buffer buf, eventually to be +compressed and written to the file. + +Possible assignments to +bzerror: + + +BZ_PARAM_ERROR + if b is NULL or buf is NULL or len < 0 +BZ_SEQUENCE_ERROR + if b was opened with BZ2_bzReadOpen +BZ_IO_ERROR + if there is an error writing the compressed file. +BZ_OK + otherwise + + + + + + +<computeroutput>BZ2_bzWriteClose</computeroutput> + + +void BZ2_bzWriteClose( int *bzerror, BZFILE* f, + int abandon, + unsigned int* nbytes_in, + unsigned int* nbytes_out ); + +void BZ2_bzWriteClose64( int *bzerror, BZFILE* f, + int abandon, + unsigned int* nbytes_in_lo32, + unsigned int* nbytes_in_hi32, + unsigned int* nbytes_out_lo32, + unsigned int* nbytes_out_hi32 ); + + +Compresses and flushes to the compressed file all data so +far supplied by BZ2_bzWrite. +The logical end-of-stream markers are also written, so subsequent +calls to BZ2_bzWrite are +illegal. All memory associated with the compressed file +b is released. +fflush is called on the +compressed file, but it is not +fclose'd. + +If BZ2_bzWriteClose is +called to clean up after an error, the only action is to release +the memory. The library records the error codes issued by +previous calls, so this situation will be detected automatically. +There is no attempt to complete the compression operation, nor to +fflush the compressed file. You +can force this behaviour to happen even in the case of no error, +by passing a nonzero value to +abandon. + +If nbytes_in is non-null, +*nbytes_in will be set to be the +total volume of uncompressed data handled. Similarly, +nbytes_out will be set to the +total volume of compressed data written. For compatibility with +older versions of the library, +BZ2_bzWriteClose only yields the +lower 32 bits of these counts. Use +BZ2_bzWriteClose64 if you want +the full 64 bit counts. These two functions are otherwise +absolutely identical. + +Possible assignments to +bzerror: + + +BZ_SEQUENCE_ERROR + if b was opened with BZ2_bzReadOpen +BZ_IO_ERROR + if there is an error writing the compressed file +BZ_OK + otherwise + + + + + + +Handling embedded compressed data streams + +The high-level library facilitates use of +bzip2 data streams which form +some part of a surrounding, larger data stream. + + + + For writing, the library takes an open file handle, + writes compressed data to it, + fflushes it but does not + fclose it. The calling + application can write its own data before and after the + compressed data stream, using that same file handle. + + Reading is more complex, and the facilities are not as + general as they could be since generality is hard to reconcile + with efficiency. BZ2_bzRead + reads from the compressed file in blocks of size + BZ_MAX_UNUSED bytes, and in + doing so probably will overshoot the logical end of compressed + stream. To recover this data once decompression has ended, + call BZ2_bzReadGetUnused after + the last call of BZ2_bzRead + (the one returning + BZ_STREAM_END) but before + calling + BZ2_bzReadClose. + + + +This mechanism makes it easy to decompress multiple +bzip2 streams placed end-to-end. +As the end of one stream, when +BZ2_bzRead returns +BZ_STREAM_END, call +BZ2_bzReadGetUnused to collect +the unused data (copy it into your own buffer somewhere). That +data forms the start of the next compressed stream. To start +uncompressing that next stream, call +BZ2_bzReadOpen again, feeding in +the unused data via the unused / +nUnused parameters. Keep doing +this until BZ_STREAM_END return +coincides with the physical end of file +(feof(f)). In this situation +BZ2_bzReadGetUnused will of +course return no data. + +This should give some feel for how the high-level interface +can be used. If you require extra flexibility, you'll have to +bite the bullet and get to grips with the low-level +interface. + + + + + +Standard file-reading/writing code + +Here's how you'd write data to a compressed file: + + +FILE* f; +BZFILE* b; +int nBuf; +char buf[ /* whatever size you like */ ]; +int bzerror; +int nWritten; + +f = fopen ( "myfile.bz2", "w" ); +if ( !f ) { + /* handle error */ +} +b = BZ2_bzWriteOpen( &bzerror, f, 9 ); +if (bzerror != BZ_OK) { + BZ2_bzWriteClose ( b ); + /* handle error */ +} + +while ( /* condition */ ) { + /* get data to write into buf, and set nBuf appropriately */ + nWritten = BZ2_bzWrite ( &bzerror, b, buf, nBuf ); + if (bzerror == BZ_IO_ERROR) { + BZ2_bzWriteClose ( &bzerror, b ); + /* handle error */ + } +} + +BZ2_bzWriteClose( &bzerror, b ); +if (bzerror == BZ_IO_ERROR) { + /* handle error */ +} + + +And to read from a compressed file: + + +FILE* f; +BZFILE* b; +int nBuf; +char buf[ /* whatever size you like */ ]; +int bzerror; +int nWritten; + +f = fopen ( "myfile.bz2", "r" ); +if ( !f ) { + /* handle error */ +} +b = BZ2_bzReadOpen ( &bzerror, f, 0, NULL, 0 ); +if ( bzerror != BZ_OK ) { + BZ2_bzReadClose ( &bzerror, b ); + /* handle error */ +} + +bzerror = BZ_OK; +while ( bzerror == BZ_OK && /* arbitrary other conditions */) { + nBuf = BZ2_bzRead ( &bzerror, b, buf, /* size of buf */ ); + if ( bzerror == BZ_OK ) { + /* do something with buf[0 .. nBuf-1] */ + } +} +if ( bzerror != BZ_STREAM_END ) { + BZ2_bzReadClose ( &bzerror, b ); + /* handle error */ +} else { + BZ2_bzReadClose ( &bzerror ); +} + + + + + + + + +Utility functions + + + +<computeroutput>BZ2_bzBuffToBuffCompress</computeroutput> + + +int BZ2_bzBuffToBuffCompress( char* dest, + unsigned int* destLen, + char* source, + unsigned int sourceLen, + int blockSize100k, + int verbosity, + int workFactor ); + + +Attempts to compress the data in source[0 +.. sourceLen-1] into the destination buffer, +dest[0 .. *destLen-1]. If the +destination buffer is big enough, +*destLen is set to the size of +the compressed data, and BZ_OK +is returned. If the compressed data won't fit, +*destLen is unchanged, and +BZ_OUTBUFF_FULL is +returned. + +Compression in this manner is a one-shot event, done with a +single call to this function. The resulting compressed data is a +complete bzip2 format data +stream. There is no mechanism for making additional calls to +provide extra input data. If you want that kind of mechanism, +use the low-level interface. + +For the meaning of parameters +blockSize100k, +verbosity and +workFactor, see +BZ2_bzCompressInit. + +To guarantee that the compressed data will fit in its +buffer, allocate an output buffer of size 1% larger than the +uncompressed data, plus six hundred extra bytes. + +BZ2_bzBuffToBuffDecompress +will not write data at or beyond +dest[*destLen], even in case of +buffer overflow. + +Possible return values: + + +BZ_CONFIG_ERROR + if the library has been mis-compiled +BZ_PARAM_ERROR + if dest is NULL or destLen is NULL + or blockSize100k < 1 or blockSize100k > 9 + or verbosity < 0 or verbosity > 4 + or workFactor < 0 or workFactor > 250 +BZ_MEM_ERROR + if insufficient memory is available +BZ_OUTBUFF_FULL + if the size of the compressed data exceeds *destLen +BZ_OK + otherwise + + + + + + +<computeroutput>BZ2_bzBuffToBuffDecompress</computeroutput> + + +int BZ2_bzBuffToBuffDecompress( char* dest, + unsigned int* destLen, + char* source, + unsigned int sourceLen, + int small, + int verbosity ); + + +Attempts to decompress the data in source[0 +.. sourceLen-1] into the destination buffer, +dest[0 .. *destLen-1]. If the +destination buffer is big enough, +*destLen is set to the size of +the uncompressed data, and BZ_OK +is returned. If the compressed data won't fit, +*destLen is unchanged, and +BZ_OUTBUFF_FULL is +returned. + +source is assumed to hold +a complete bzip2 format data +stream. +BZ2_bzBuffToBuffDecompress tries +to decompress the entirety of the stream into the output +buffer. + +For the meaning of parameters +small and +verbosity, see +BZ2_bzDecompressInit. + +Because the compression ratio of the compressed data cannot +be known in advance, there is no easy way to guarantee that the +output buffer will be big enough. You may of course make +arrangements in your code to record the size of the uncompressed +data, but such a mechanism is beyond the scope of this +library. + +BZ2_bzBuffToBuffDecompress +will not write data at or beyond +dest[*destLen], even in case of +buffer overflow. + +Possible return values: + + +BZ_CONFIG_ERROR + if the library has been mis-compiled +BZ_PARAM_ERROR + if dest is NULL or destLen is NULL + or small != 0 && small != 1 + or verbosity < 0 or verbosity > 4 +BZ_MEM_ERROR + if insufficient memory is available +BZ_OUTBUFF_FULL + if the size of the compressed data exceeds *destLen +BZ_DATA_ERROR + if a data integrity error was detected in the compressed data +BZ_DATA_ERROR_MAGIC + if the compressed data doesn't begin with the right magic bytes +BZ_UNEXPECTED_EOF + if the compressed data ends unexpectedly +BZ_OK + otherwise + + + + + + + + +<computeroutput>zlib</computeroutput> compatibility functions + +Yoshioka Tsuneo has contributed some functions to give +better zlib compatibility. +These functions are BZ2_bzopen, +BZ2_bzread, +BZ2_bzwrite, +BZ2_bzflush, +BZ2_bzclose, +BZ2_bzerror and +BZ2_bzlibVersion. These +functions are not (yet) officially part of the library. If they +break, you get to keep all the pieces. Nevertheless, I think +they work ok. + + +typedef void BZFILE; + +const char * BZ2_bzlibVersion ( void ); + + +Returns a string indicating the library version. + + +BZFILE * BZ2_bzopen ( const char *path, const char *mode ); +BZFILE * BZ2_bzdopen ( int fd, const char *mode ); + + +Opens a .bz2 file for +reading or writing, using either its name or a pre-existing file +descriptor. Analogous to fopen +and fdopen. + + +int BZ2_bzread ( BZFILE* b, void* buf, int len ); +int BZ2_bzwrite ( BZFILE* b, void* buf, int len ); + + +Reads/writes data from/to a previously opened +BZFILE. Analogous to +fread and +fwrite. + + +int BZ2_bzflush ( BZFILE* b ); +void BZ2_bzclose ( BZFILE* b ); + + +Flushes/closes a BZFILE. +BZ2_bzflush doesn't actually do +anything. Analogous to fflush +and fclose. + + +const char * BZ2_bzerror ( BZFILE *b, int *errnum ) + + +Returns a string describing the more recent error status of +b, and also sets +*errnum to its numerical +value. + + + + + +Using the library in a <computeroutput>stdio</computeroutput>-free environment + + + +Getting rid of <computeroutput>stdio</computeroutput> + +In a deeply embedded application, you might want to use +just the memory-to-memory functions. You can do this +conveniently by compiling the library with preprocessor symbol +BZ_NO_STDIO defined. Doing this +gives you a library containing only the following eight +functions: + +BZ2_bzCompressInit, +BZ2_bzCompress, +BZ2_bzCompressEnd +BZ2_bzDecompressInit, +BZ2_bzDecompress, +BZ2_bzDecompressEnd +BZ2_bzBuffToBuffCompress, +BZ2_bzBuffToBuffDecompress + +When compiled like this, all functions will ignore +verbosity settings. + + + + + +Critical error handling + +libbzip2 contains a number +of internal assertion checks which should, needless to say, never +be activated. Nevertheless, if an assertion should fail, +behaviour depends on whether or not the library was compiled with +BZ_NO_STDIO set. + +For a normal compile, an assertion failure yields the +message: + +

+bzip2/libbzip2: internal error number N. +This is a bug in bzip2/libbzip2, &bz-version; of &bz-date;. +Please report it to me at: &bz-email;. If this happened +when you were using some program which uses libbzip2 as a +component, you should also report this bug to the author(s) +of that program. Please make an effort to report this bug; +timely and accurate bug reports eventually lead to higher +quality software. Thanks. Julian Seward, &bz-date;. +
+ +where N is some error code +number. If N == 1007, it also +prints some extra text advising the reader that unreliable memory +is often associated with internal error 1007. (This is a +frequently-observed-phenomenon with versions 1.0.0/1.0.1). + +exit(3) is then +called. + +For a stdio-free library, +assertion failures result in a call to a function declared +as: + + +extern void bz_internal_error ( int errcode ); + + +The relevant code is passed as a parameter. You should +supply such a function. + +In either case, once an assertion failure has occurred, any +bz_stream records involved can +be regarded as invalid. You should not attempt to resume normal +operation with them. + +You may, of course, change critical error handling to suit +your needs. As I said above, critical errors indicate bugs in +the library and should not occur. All "normal" error situations +are indicated via error return codes from functions, and can be +recovered from. + + + + + + + +Making a Windows DLL + +Everything related to Windows has been contributed by +Yoshioka Tsuneo +(QWF00133@niftyserve.or.jp / +tsuneo-y@is.aist-nara.ac.jp), so +you should send your queries to him (but perhaps Cc: me, +&bz-email;). + +My vague understanding of what to do is: using Visual C++ +5.0, open the project file +libbz2.dsp, and build. That's +all. + +If you can't open the project file for some reason, make a +new one, naming these files: +blocksort.c, +bzlib.c, +compress.c, +crctable.c, +decompress.c, +huffman.c, +randtable.c and +libbz2.def. You will also need +to name the header files bzlib.h +and bzlib_private.h. + +If you don't use VC++, you may need to define the +proprocessor symbol +_WIN32. + +Finally, dlltest.c is a +sample program using the DLL. It has a project file, +dlltest.dsp. + +If you just want a makefile for Visual C, have a look at +makefile.msc. + +Be aware that if you compile +bzip2 itself on Win32, you must +set BZ_UNIX to 0 and +BZ_LCCWIN32 to 1, in the file +bzip2.c, before compiling. +Otherwise the resulting binary won't work correctly. + +I haven't tried any of this stuff myself, but it all looks +plausible. + + + + + + + + +Miscellanea + +These are just some random thoughts of mine. Your mileage +may vary. + + + +Limitations of the compressed file format + +bzip2-1.0.X, +0.9.5 and +0.9.0 use exactly the same file +format as the original version, +bzip2-0.1. This decision was +made in the interests of stability. Creating yet another +incompatible compressed file format would create further +confusion and disruption for users. + +Nevertheless, this is not a painless decision. Development +work since the release of +bzip2-0.1 in August 1997 has +shown complexities in the file format which slow down +decompression and, in retrospect, are unnecessary. These +are: + + + + The run-length encoder, which is the first of the + compression transformations, is entirely irrelevant. The + original purpose was to protect the sorting algorithm from the + very worst case input: a string of repeated symbols. But + algorithm steps Q6a and Q6b in the original Burrows-Wheeler + technical report (SRC-124) show how repeats can be handled + without difficulty in block sorting. + + The randomisation mechanism doesn't really need to be + there. Udi Manber and Gene Myers published a suffix array + construction algorithm a few years back, which can be employed + to sort any block, no matter how repetitive, in O(N log N) + time. Subsequent work by Kunihiko Sadakane has produced a + derivative O(N (log N)^2) algorithm which usually outperforms + the Manber-Myers algorithm. + + I could have changed to Sadakane's algorithm, but I find + it to be slower than bzip2's + existing algorithm for most inputs, and the randomisation + mechanism protects adequately against bad cases. I didn't + think it was a good tradeoff to make. Partly this is due to + the fact that I was not flooded with email complaints about + bzip2-0.1's performance on + repetitive data, so perhaps it isn't a problem for real + inputs. + + Probably the best long-term solution, and the one I have + incorporated into 0.9.5 and above, is to use the existing + sorting algorithm initially, and fall back to a O(N (log N)^2) + algorithm if the standard algorithm gets into + difficulties. + + The compressed file format was never designed to be + handled by a library, and I have had to jump though some hoops + to produce an efficient implementation of decompression. It's + a bit hairy. Try passing + decompress.c through the C + preprocessor and you'll see what I mean. Much of this + complexity could have been avoided if the compressed size of + each block of data was recorded in the data stream. + + An Adler-32 checksum, rather than a CRC32 checksum, + would be faster to compute. + + + +It would be fair to say that the +bzip2 format was frozen before I +properly and fully understood the performance consequences of +doing so. + +Improvements which I was able to incorporate into 0.9.0, +despite using the same file format, are: + + + + Single array implementation of the inverse BWT. This + significantly speeds up decompression, presumably because it + reduces the number of cache misses. + + Faster inverse MTF transform for large MTF values. + The new implementation is based on the notion of sliding blocks + of values. + + bzip2-0.9.0 now reads + and writes files with fread + and fwrite; version 0.1 used + putc and + getc. Duh! Well, you live + and learn. + + + +Further ahead, it would be nice to be able to do random +access into files. This will require some careful design of +compressed file formats. + + + + + +Portability issues + +After some consideration, I have decided not to use GNU +autoconf to configure 0.9.5 or +1.0. + +autoconf, admirable and +wonderful though it is, mainly assists with portability problems +between Unix-like platforms. But +bzip2 doesn't have much in the +way of portability problems on Unix; most of the difficulties +appear when porting to the Mac, or to Microsoft's operating +systems. autoconf doesn't help +in those cases, and brings in a whole load of new +complexity. + +Most people should be able to compile the library and +program under Unix straight out-of-the-box, so to speak, +especially if you have a version of GNU C available. + +There are a couple of +__inline__ directives in the +code. GNU C (gcc) should be +able to handle them. If you're not using GNU C, your C compiler +shouldn't see them at all. If your compiler does, for some +reason, see them and doesn't like them, just +#define +__inline__ to be +/* */. One easy way to do this +is to compile with the flag +-D__inline__=, which should be +understood by most Unix compilers. + +If you still have difficulties, try compiling with the +macro BZ_STRICT_ANSI defined. +This should enable you to build the library in a strictly ANSI +compliant environment. Building the program itself like this is +dangerous and not supported, since you remove +bzip2's checks against +compressing directories, symbolic links, devices, and other +not-really-a-file entities. This could cause filesystem +corruption! + +One other thing: if you create a +bzip2 binary for public distribution, +please consider linking it statically (gcc +-static). This avoids all sorts of library-version +issues that others may encounter later on. + +If you build bzip2 on +Win32, you must set BZ_UNIX to 0 +and BZ_LCCWIN32 to 1, in the +file bzip2.c, before compiling. +Otherwise the resulting binary won't work correctly. + + + + + +Reporting bugs + +I tried pretty hard to make sure +bzip2 is bug free, both by +design and by testing. Hopefully you'll never need to read this +section for real. + +Nevertheless, if bzip2 dies +with a segmentation fault, a bus error or an internal assertion +failure, it will ask you to email me a bug report. Experience from +years of feedback of bzip2 users indicates that almost all these +problems can be traced to either compiler bugs or hardware +problems. + + + + Recompile the program with no optimisation, and + see if it works. And/or try a different compiler. I heard all + sorts of stories about various flavours of GNU C (and other + compilers) generating bad code for + bzip2, and I've run across two + such examples myself. + + 2.7.X versions of GNU C are known to generate bad code + from time to time, at high optimisation levels. If you get + problems, try using the flags + -O2 + -fomit-frame-pointer + -fno-strength-reduce. You + should specifically not use + -funroll-loops. + + You may notice that the Makefile runs six tests as part + of the build process. If the program passes all of these, it's + a pretty good (but not 100%) indication that the compiler has + done its job correctly. + + If bzip2 + crashes randomly, and the crashes are not repeatable, you may + have a flaky memory subsystem. + bzip2 really hammers your + memory hierarchy, and if it's a bit marginal, you may get these + problems. Ditto if your disk or I/O subsystem is slowly + failing. Yup, this really does happen. + + Try using a different machine of the same type, and see + if you can repeat the problem. + + This isn't really a bug, but ... If + bzip2 tells you your file is + corrupted on decompression, and you obtained the file via FTP, + there is a possibility that you forgot to tell FTP to do a + binary mode transfer. That absolutely will cause the file to + be non-decompressible. You'll have to transfer it + again. + + + +If you've incorporated +libbzip2 into your own program +and are getting problems, please, please, please, check that the +parameters you are passing in calls to the library, are correct, +and in accordance with what the documentation says is allowable. +I have tried to make the library robust against such problems, +but I'm sure I haven't succeeded. + +Finally, if the above comments don't help, you'll have to +send me a bug report. Now, it's just amazing how many people +will send me a bug report saying something like: + + +bzip2 crashed with segmentation fault on my machine + + +and absolutely nothing else. Needless to say, a such a +report is totally, utterly, completely and +comprehensively 100% useless; a waste of your time, my time, and +net bandwidth. With no details at all, there's no way +I can possibly begin to figure out what the problem is. + +The rules of the game are: facts, facts, facts. Don't omit +them because "oh, they won't be relevant". At the bare +minimum: + + +Machine type. Operating system version. +Exact version of bzip2 (do bzip2 -V). +Exact version of the compiler used. +Flags passed to the compiler. + + +However, the most important single thing that will help me +is the file that you were trying to compress or decompress at the +time the problem happened. Without that, my ability to do +anything more than speculate about the cause, is limited. + + + + + +Did you get the right package? + +bzip2 is a resource hog. +It soaks up large amounts of CPU cycles and memory. Also, it +gives very large latencies. In the worst case, you can feed many +megabytes of uncompressed data into the library before getting +any compressed output, so this probably rules out applications +requiring interactive behaviour. + +These aren't faults of my implementation, I hope, but more +an intrinsic property of the Burrows-Wheeler transform +(unfortunately). Maybe this isn't what you want. + +If you want a compressor and/or library which is faster, +uses less memory but gets pretty good compression, and has +minimal latency, consider Jean-loup Gailly's and Mark Adler's +work, zlib-1.2.1 and +gzip-1.2.4. Look for them at +http://www.zlib.org and +http://www.gzip.org +respectively. + +For something faster and lighter still, you might try Markus F +X J Oberhumer's LZO real-time +compression/decompression library, at +http://www.oberhumer.com/opensource. + + + + + + +Further Reading + +bzip2 is not research +work, in the sense that it doesn't present any new ideas. +Rather, it's an engineering exercise based on existing +ideas. + +Four documents describe essentially all the ideas behind +bzip2: + +Michael Burrows and D. J. Wheeler: + "A block-sorting lossless data compression algorithm" + 10th May 1994. + Digital SRC Research Report 124. + ftp://ftp.digital.com/pub/DEC/SRC/research-reports/SRC-124.ps.gz + If you have trouble finding it, try searching at the + New Zealand Digital Library, http://www.nzdl.org. + +Daniel S. Hirschberg and Debra A. LeLewer + "Efficient Decoding of Prefix Codes" + Communications of the ACM, April 1990, Vol 33, Number 4. + You might be able to get an electronic copy of this + from the ACM Digital Library. + +David J. Wheeler + Program bred3.c and accompanying document bred3.ps. + This contains the idea behind the multi-table Huffman coding scheme. + ftp://ftp.cl.cam.ac.uk/users/djw3/ + +Jon L. Bentley and Robert Sedgewick + "Fast Algorithms for Sorting and Searching Strings" + Available from Sedgewick's web page, + www.cs.princeton.edu/~rs + + +The following paper gives valuable additional insights into +the algorithm, but is not immediately the basis of any code used +in bzip2. + +Peter Fenwick: + Block Sorting Text Compression + Proceedings of the 19th Australasian Computer Science Conference, + Melbourne, Australia. Jan 31 - Feb 2, 1996. + ftp://ftp.cs.auckland.ac.nz/pub/peter-f/ACSC96paper.ps + +Kunihiko Sadakane's sorting algorithm, mentioned above, is +available from: + +http://naomi.is.s.u-tokyo.ac.jp/~sada/papers/Sada98b.ps.gz + + +The Manber-Myers suffix array construction algorithm is +described in a paper available from: + +http://www.cs.arizona.edu/people/gene/PAPERS/suffix.ps + + +Finally, the following papers document some +investigations I made into the performance of sorting +and decompression algorithms: + +Julian Seward + On the Performance of BWT Sorting Algorithms + Proceedings of the IEEE Data Compression Conference 2000 + Snowbird, Utah. 28-30 March 2000. + +Julian Seward + Space-time Tradeoffs in the Inverse B-W Transform + Proceedings of the IEEE Data Compression Conference 2001 + Snowbird, Utah. 27-29 March 2001. + + + + + + + diff --git a/commands/bzip2-1.0.3/mk251.c b/commands/bzip2-1.0.3/mk251.c new file mode 100644 index 000000000..205778a84 --- /dev/null +++ b/commands/bzip2-1.0.3/mk251.c @@ -0,0 +1,16 @@ + +/* Spew out a long sequence of the byte 251. When fed to bzip2 + versions 1.0.0 or 1.0.1, causes it to die with internal error + 1007 in blocksort.c. This assertion misses an extremely rare + case, which is fixed in this version (1.0.2) and above. +*/ + +#include + +int main () +{ + int i; + for (i = 0; i < 48500000 ; i++) + putchar(251); + return 0; +} diff --git a/commands/bzip2-1.0.3/randtable.c b/commands/bzip2-1.0.3/randtable.c new file mode 100644 index 000000000..940462d69 --- /dev/null +++ b/commands/bzip2-1.0.3/randtable.c @@ -0,0 +1,124 @@ + +/*-------------------------------------------------------------*/ +/*--- Table for randomising repetitive blocks ---*/ +/*--- randtable.c ---*/ +/*-------------------------------------------------------------*/ + +/*-- + This file is a part of bzip2 and/or libbzip2, a program and + library for lossless, block-sorting data compression. + + Copyright (C) 1996-2005 Julian R Seward. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. 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. + + 3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 4. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Julian Seward, Cambridge, UK. + jseward@bzip.org + bzip2/libbzip2 version 1.0 of 21 March 2000 + + This program is based on (at least) the work of: + Mike Burrows + David Wheeler + Peter Fenwick + Alistair Moffat + Radford Neal + Ian H. Witten + Robert Sedgewick + Jon L. Bentley + + For more information on these sources, see the manual. +--*/ + + +#include "bzlib_private.h" + + +/*---------------------------------------------*/ +Int32 BZ2_rNums[512] = { + 619, 720, 127, 481, 931, 816, 813, 233, 566, 247, + 985, 724, 205, 454, 863, 491, 741, 242, 949, 214, + 733, 859, 335, 708, 621, 574, 73, 654, 730, 472, + 419, 436, 278, 496, 867, 210, 399, 680, 480, 51, + 878, 465, 811, 169, 869, 675, 611, 697, 867, 561, + 862, 687, 507, 283, 482, 129, 807, 591, 733, 623, + 150, 238, 59, 379, 684, 877, 625, 169, 643, 105, + 170, 607, 520, 932, 727, 476, 693, 425, 174, 647, + 73, 122, 335, 530, 442, 853, 695, 249, 445, 515, + 909, 545, 703, 919, 874, 474, 882, 500, 594, 612, + 641, 801, 220, 162, 819, 984, 589, 513, 495, 799, + 161, 604, 958, 533, 221, 400, 386, 867, 600, 782, + 382, 596, 414, 171, 516, 375, 682, 485, 911, 276, + 98, 553, 163, 354, 666, 933, 424, 341, 533, 870, + 227, 730, 475, 186, 263, 647, 537, 686, 600, 224, + 469, 68, 770, 919, 190, 373, 294, 822, 808, 206, + 184, 943, 795, 384, 383, 461, 404, 758, 839, 887, + 715, 67, 618, 276, 204, 918, 873, 777, 604, 560, + 951, 160, 578, 722, 79, 804, 96, 409, 713, 940, + 652, 934, 970, 447, 318, 353, 859, 672, 112, 785, + 645, 863, 803, 350, 139, 93, 354, 99, 820, 908, + 609, 772, 154, 274, 580, 184, 79, 626, 630, 742, + 653, 282, 762, 623, 680, 81, 927, 626, 789, 125, + 411, 521, 938, 300, 821, 78, 343, 175, 128, 250, + 170, 774, 972, 275, 999, 639, 495, 78, 352, 126, + 857, 956, 358, 619, 580, 124, 737, 594, 701, 612, + 669, 112, 134, 694, 363, 992, 809, 743, 168, 974, + 944, 375, 748, 52, 600, 747, 642, 182, 862, 81, + 344, 805, 988, 739, 511, 655, 814, 334, 249, 515, + 897, 955, 664, 981, 649, 113, 974, 459, 893, 228, + 433, 837, 553, 268, 926, 240, 102, 654, 459, 51, + 686, 754, 806, 760, 493, 403, 415, 394, 687, 700, + 946, 670, 656, 610, 738, 392, 760, 799, 887, 653, + 978, 321, 576, 617, 626, 502, 894, 679, 243, 440, + 680, 879, 194, 572, 640, 724, 926, 56, 204, 700, + 707, 151, 457, 449, 797, 195, 791, 558, 945, 679, + 297, 59, 87, 824, 713, 663, 412, 693, 342, 606, + 134, 108, 571, 364, 631, 212, 174, 643, 304, 329, + 343, 97, 430, 751, 497, 314, 983, 374, 822, 928, + 140, 206, 73, 263, 980, 736, 876, 478, 430, 305, + 170, 514, 364, 692, 829, 82, 855, 953, 676, 246, + 369, 970, 294, 750, 807, 827, 150, 790, 288, 923, + 804, 378, 215, 828, 592, 281, 565, 555, 710, 82, + 896, 831, 547, 261, 524, 462, 293, 465, 502, 56, + 661, 821, 976, 991, 658, 869, 905, 758, 745, 193, + 768, 550, 608, 933, 378, 286, 215, 979, 792, 961, + 61, 688, 793, 644, 986, 403, 106, 366, 905, 644, + 372, 567, 466, 434, 645, 210, 389, 550, 919, 135, + 780, 773, 635, 389, 707, 100, 626, 958, 165, 504, + 920, 176, 193, 713, 857, 265, 203, 50, 668, 108, + 645, 990, 626, 197, 510, 357, 358, 850, 858, 364, + 936, 638 +}; + + +/*-------------------------------------------------------------*/ +/*--- end randtable.c ---*/ +/*-------------------------------------------------------------*/ diff --git a/commands/bzip2-1.0.3/sample1.bz2 b/commands/bzip2-1.0.3/sample1.bz2 new file mode 100644 index 0000000000000000000000000000000000000000..18dea60043b692c86b095c06123809f10430fd03 GIT binary patch literal 32348 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 T9V3)BU;ZxSig2MJnd56pDt(C> literal 0 HcmV?d00001 diff --git a/commands/bzip2-1.0.3/sample1.ref b/commands/bzip2-1.0.3/sample1.ref new file mode 100644 index 0000000000000000000000000000000000000000..a56e52b77f90faf637e2c1e87ee60eaffa4c5056 GIT binary patch literal 98696 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 Z(Zy#cUu01QmiqtNR=obJ?T`8Y`~PZf1y}$8 literal 0 HcmV?d00001 diff --git a/commands/bzip2-1.0.3/sample2.bz2 b/commands/bzip2-1.0.3/sample2.bz2 new file mode 100644 index 0000000000000000000000000000000000000000..d5a6160ba20903121617cb8bf4fbdb71ba1ca1e7 GIT binary patch literal 73732 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
gnIFfvi(O?e$J0;1+%xLGi@k}ivMjcJIU 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
    oa|c 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 literal 0 HcmV?d00001 diff --git a/commands/bzip2-1.0.3/sample3.bz2 b/commands/bzip2-1.0.3/sample3.bz2 new file mode 100644 index 0000000000000000000000000000000000000000..d90cff9208fe3f15eebd888e978f639248752126 GIT binary patch literal 235 zcmVGUXb&m7Q)GuvY4W7DBi0bybO}v|xtYG6|~5=Sd|%uMPkN zKoB6Yo`4Dni@uED{RR!AUXhJ4Aj_`^@cN^s$CJ95fR!nP>-4u_Z0JO2Gf1zI+FWf9 lNldh8X=%unLauTcBrdZ|@<43xY-0cb literal 0 HcmV?d00001 diff --git a/commands/bzip2-1.0.3/sample3.ref b/commands/bzip2-1.0.3/sample3.ref new file mode 100644 index 000000000..775a2f68e --- /dev/null +++ b/commands/bzip2-1.0.3/sample3.ref @@ -0,0 +1,30007 @@ +This file is exceedingly boring. If you find yourself +reading it, please (1) take it from me that you can safely +guess what the rest of the file says, and (2) seek professional +help. + +ps. there are no further sarcastic remarks in this file. + +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh +ugh diff --git a/commands/bzip2-1.0.3/spewG.c b/commands/bzip2-1.0.3/spewG.c new file mode 100644 index 000000000..7934e7658 --- /dev/null +++ b/commands/bzip2-1.0.3/spewG.c @@ -0,0 +1,39 @@ + +/* spew out a thoroughly gigantic file designed so that bzip2 + can compress it reasonably rapidly. This is to help test + support for large files (> 2GB) in a reasonable amount of time. + I suggest you use the undocumented --exponential option to + bzip2 when compressing the resulting file; this saves a bit of + time. Note: *don't* bother with --exponential when compressing + Real Files; it'll just waste a lot of CPU time :-) + (but is otherwise harmless). +*/ + +#define _FILE_OFFSET_BITS 64 + +#include +#include + +/* The number of megabytes of junk to spew out (roughly) */ +#define MEGABYTES 5000 + +#define N_BUF 1000000 +char buf[N_BUF]; + +int main ( int argc, char** argv ) +{ + int ii, kk, p; + srandom(1); + setbuffer ( stdout, buf, N_BUF ); + for (kk = 0; kk < MEGABYTES * 515; kk+=3) { + p = 25+random()%50; + for (ii = 0; ii < p; ii++) + printf ( "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" ); + for (ii = 0; ii < p-1; ii++) + printf ( "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb" ); + for (ii = 0; ii < p+1; ii++) + printf ( "ccccccccccccccccccccccccccccccccccccc" ); + } + fflush(stdout); + return 0; +} diff --git a/commands/bzip2-1.0.3/unzcrash.c b/commands/bzip2-1.0.3/unzcrash.c new file mode 100644 index 000000000..f0f17fcca --- /dev/null +++ b/commands/bzip2-1.0.3/unzcrash.c @@ -0,0 +1,126 @@ + +/* A test program written to test robustness to decompression of + corrupted data. Usage is + unzcrash filename + and the program will read the specified file, compress it (in memory), + and then repeatedly decompress it, each time with a different bit of + the compressed data inverted, so as to test all possible one-bit errors. + This should not cause any invalid memory accesses. If it does, + I want to know about it! + + p.s. As you can see from the above description, the process is + incredibly slow. A file of size eg 5KB will cause it to run for + many hours. +*/ + +#include +#include +#include "bzlib.h" + +#define M_BLOCK 1000000 + +typedef unsigned char uchar; + +#define M_BLOCK_OUT (M_BLOCK + 1000000) +uchar inbuf[M_BLOCK]; +uchar outbuf[M_BLOCK_OUT]; +uchar zbuf[M_BLOCK + 600 + (M_BLOCK / 100)]; + +int nIn, nOut, nZ; + +static char *bzerrorstrings[] = { + "OK" + ,"SEQUENCE_ERROR" + ,"PARAM_ERROR" + ,"MEM_ERROR" + ,"DATA_ERROR" + ,"DATA_ERROR_MAGIC" + ,"IO_ERROR" + ,"UNEXPECTED_EOF" + ,"OUTBUFF_FULL" + ,"???" /* for future */ + ,"???" /* for future */ + ,"???" /* for future */ + ,"???" /* for future */ + ,"???" /* for future */ + ,"???" /* for future */ +}; + +void flip_bit ( int bit ) +{ + int byteno = bit / 8; + int bitno = bit % 8; + uchar mask = 1 << bitno; + //fprintf ( stderr, "(byte %d bit %d mask %d)", + // byteno, bitno, (int)mask ); + zbuf[byteno] ^= mask; +} + +int main ( int argc, char** argv ) +{ + FILE* f; + int r; + int bit; + int i; + + if (argc != 2) { + fprintf ( stderr, "usage: unzcrash filename\n" ); + return 1; + } + + f = fopen ( argv[1], "r" ); + if (!f) { + fprintf ( stderr, "unzcrash: can't open %s\n", argv[1] ); + return 1; + } + + nIn = fread ( inbuf, 1, M_BLOCK, f ); + fprintf ( stderr, "%d bytes read\n", nIn ); + + nZ = M_BLOCK; + r = BZ2_bzBuffToBuffCompress ( + zbuf, &nZ, inbuf, nIn, 9, 0, 30 ); + + assert (r == BZ_OK); + fprintf ( stderr, "%d after compression\n", nZ ); + + for (bit = 0; bit < nZ*8; bit++) { + fprintf ( stderr, "bit %d ", bit ); + flip_bit ( bit ); + nOut = M_BLOCK_OUT; + r = BZ2_bzBuffToBuffDecompress ( + outbuf, &nOut, zbuf, nZ, 0, 0 ); + fprintf ( stderr, " %d %s ", r, bzerrorstrings[-r] ); + + if (r != BZ_OK) { + fprintf ( stderr, "\n" ); + } else { + if (nOut != nIn) { + fprintf(stderr, "nIn/nOut mismatch %d %d\n", nIn, nOut ); + return 1; + } else { + for (i = 0; i < nOut; i++) + if (inbuf[i] != outbuf[i]) { + fprintf(stderr, "mismatch at %d\n", i ); + return 1; + } + if (i == nOut) fprintf(stderr, "really ok!\n" ); + } + } + + flip_bit ( bit ); + } + +#if 0 + assert (nOut == nIn); + for (i = 0; i < nOut; i++) { + if (inbuf[i] != outbuf[i]) { + fprintf ( stderr, "difference at %d !\n", i ); + return 1; + } + } +#endif + + fprintf ( stderr, "all ok\n" ); + return 0; +} diff --git a/commands/bzip2-1.0.3/words0 b/commands/bzip2-1.0.3/words0 new file mode 100644 index 000000000..164a8ed28 --- /dev/null +++ b/commands/bzip2-1.0.3/words0 @@ -0,0 +1,5 @@ + +If compilation produces errors, or a large number of warnings, +please read README.COMPILATION.PROBLEMS -- you might be able to +adjust the flags in this Makefile to improve matters. + diff --git a/commands/bzip2-1.0.3/words1 b/commands/bzip2-1.0.3/words1 new file mode 100644 index 000000000..2e83de9f0 --- /dev/null +++ b/commands/bzip2-1.0.3/words1 @@ -0,0 +1,4 @@ + +Doing 6 tests (3 compress, 3 uncompress) ... +If there's a problem, things might stop at this point. + diff --git a/commands/bzip2-1.0.3/words2 b/commands/bzip2-1.0.3/words2 new file mode 100644 index 000000000..203ee39c4 --- /dev/null +++ b/commands/bzip2-1.0.3/words2 @@ -0,0 +1,5 @@ + +Checking test results. If any of the four "cmp"s which follow +report any differences, something is wrong. If you can't easily +figure out what, please let me know (jseward@acm.org). + diff --git a/commands/bzip2-1.0.3/words3 b/commands/bzip2-1.0.3/words3 new file mode 100644 index 000000000..7a6b46244 --- /dev/null +++ b/commands/bzip2-1.0.3/words3 @@ -0,0 +1,23 @@ + +If you got this far and the "cmp"s didn't complain, it looks +like you're in business. + +To install in /usr/bin, /usr/lib, /usr/man and /usr/include, type + make install +To install somewhere else, eg, /xxx/yyy/{bin,lib,man,include}, type + make install PREFIX=/xxx/yyy +If you are (justifiably) paranoid and want to see what 'make install' +is going to do, you can first do + make -n install or + make -n install PREFIX=/xxx/yyy respectively. +The -n instructs make to show the commands it would execute, but +not actually execute them. + +Instructions for use are in the preformatted manual page, in the file +bzip2.txt. For more detailed documentation, read the full manual. +It is available in Postscript form (manual.ps), PDF form (manual.pdf), +and HTML form (manual_toc.html). + +You can also do "bzip2 --help" to see some helpful information. +"bzip2 -L" displays the software license. + diff --git a/commands/bzip2-1.0.3/xmlproc.sh b/commands/bzip2-1.0.3/xmlproc.sh new file mode 100755 index 000000000..6fe4d5748 --- /dev/null +++ b/commands/bzip2-1.0.3/xmlproc.sh @@ -0,0 +1,99 @@ +#!/bin/bash +# see the README in this directory for usage etc. + +usage() { + echo ''; + echo 'Usage: xmlproc.sh -[option] '; + echo 'Specify a target from:'; + echo '-v verify xml file conforms to dtd'; + echo '-html output in html format (single file)'; + echo '-ps output in postscript format'; + echo '-pdf output in pdf format'; + exit; +} + +if test $# -ne 2; then + usage +fi +# assign the variable for the output type +action=$1; shift +# assign the output filename +xmlfile=$1; shift +# and check user input it correct +if !(test -f $xmlfile); then + echo "No such file: $xmlfile"; + exit; +fi +# some other stuff we will use +OUT=output +xsl_fo=bz-fo.xsl +xsl_html=bz-html.xsl + +basename=$xmlfile +basename=${basename//'.xml'/''} + +fofile="${basename}.fo" +htmlfile="${basename}.html" +pdffile="${basename}.pdf" +psfile="${basename}.ps" +xmlfmtfile="${basename}.fmt" + +# first process the xmlfile with CDATA tags +./format.pl $xmlfile $xmlfmtfile +# so the shell knows where the catalogs live +export XML_CATALOG_FILES=/etc/xml/catalog + +# post-processing tidy up +cleanup() { + echo "Cleaning up: # $@" + while [ $# != 0 ] + do + arg=$1; shift; + echo " deleting $arg"; + rm $arg + done +} + +case $action in + -v) + flags='--noout --xinclude --noblanks --postvalid' + dtd='--dtdvalid http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd' + xmllint $flags $dtd $xmlfmtfile 2> $OUT + egrep 'error' $OUT + rm $OUT + ;; + + -html) + echo "Creating $htmlfile ..." + xsltproc --nonet --xinclude -o $htmlfile $xsl_html $xmlfmtfile + cleanup $xmlfmtfile + ;; + + -pdf) + echo "Creating $pdffile ..." + xsltproc --nonet --xinclude -o $fofile $xsl_fo $xmlfmtfile + pdfxmltex $fofile >$OUT $OUT $OUT $OUT $OUT $OUT $OUT $OUT $OUT