From b4e5ea7d111442ff4e39721696160b68ffb8aee0 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Mon, 3 Apr 2023 10:50:10 +0900 Subject: [PATCH 1/1] Import bzip2-sys 0.1.11+1.0.8 --- .cargo_vcs_info.json | 5 + Cargo.toml | 38 + Cargo.toml.orig | 30 + LICENSE-APACHE | 201 + LICENSE-MIT | 25 + build.rs | 47 + bzip2-1.0.8/CHANGES | 356 + bzip2-1.0.8/LICENSE | 42 + bzip2-1.0.8/Makefile | 217 + bzip2-1.0.8/Makefile-libbz2_so | 59 + bzip2-1.0.8/README | 196 + bzip2-1.0.8/README.COMPILATION.PROBLEMS | 58 + bzip2-1.0.8/README.XML.STUFF | 45 + bzip2-1.0.8/blocksort.c | 1094 + bzip2-1.0.8/bz-common.xsl | 39 + bzip2-1.0.8/bz-fo.xsl | 276 + bzip2-1.0.8/bz-html.xsl | 23 + bzip2-1.0.8/bzdiff | 76 + bzip2-1.0.8/bzdiff.1 | 47 + bzip2-1.0.8/bzgrep | 85 + bzip2-1.0.8/bzgrep.1 | 56 + bzip2-1.0.8/bzip.css | 74 + bzip2-1.0.8/bzip2.1 | 454 + bzip2-1.0.8/bzip2.1.preformatted | 399 + bzip2-1.0.8/bzip2.c | 2036 + bzip2-1.0.8/bzip2.txt | 391 + bzip2-1.0.8/bzip2recover.c | 516 + bzip2-1.0.8/bzlib.c | 1572 + bzip2-1.0.8/bzlib.h | 282 + bzip2-1.0.8/bzlib_private.h | 509 + bzip2-1.0.8/bzmore | 61 + bzip2-1.0.8/bzmore.1 | 152 + bzip2-1.0.8/compress.c | 672 + bzip2-1.0.8/crctable.c | 104 + bzip2-1.0.8/decompress.c | 652 + bzip2-1.0.8/dlltest.c | 175 + bzip2-1.0.8/dlltest.dsp | 93 + bzip2-1.0.8/entities.xml | 10 + bzip2-1.0.8/format.pl | 68 + bzip2-1.0.8/huffman.c | 205 + bzip2-1.0.8/libbz2.def | 27 + bzip2-1.0.8/libbz2.dsp | 130 + bzip2-1.0.8/makefile.msc | 63 + bzip2-1.0.8/manual.html | 2541 + bzip2-1.0.8/manual.ps | 216419 +++++++++++++++++++++++++++++ bzip2-1.0.8/manual.xml | 2964 + bzip2-1.0.8/mk251.c | 31 + bzip2-1.0.8/randtable.c | 84 + bzip2-1.0.8/sample1.bz2 | Bin 0 -> 32348 bytes bzip2-1.0.8/sample1.ref | Bin 0 -> 98696 bytes bzip2-1.0.8/sample2.bz2 | Bin 0 -> 73732 bytes bzip2-1.0.8/sample2.ref | Bin 0 -> 212340 bytes bzip2-1.0.8/sample3.bz2 | Bin 0 -> 235 bytes bzip2-1.0.8/sample3.ref | 30007 ++++ bzip2-1.0.8/spewG.c | 54 + bzip2-1.0.8/unzcrash.c | 141 + bzip2-1.0.8/words0 | 9 + bzip2-1.0.8/words1 | 4 + bzip2-1.0.8/words2 | 5 + bzip2-1.0.8/words3 | 30 + bzip2-1.0.8/xmlproc.sh | 114 + lib.rs | 75 + 62 files changed, 264138 insertions(+) create mode 100644 .cargo_vcs_info.json create mode 100644 Cargo.toml create mode 100644 Cargo.toml.orig create mode 100644 LICENSE-APACHE create mode 100644 LICENSE-MIT create mode 100644 build.rs create mode 100644 bzip2-1.0.8/CHANGES create mode 100644 bzip2-1.0.8/LICENSE create mode 100644 bzip2-1.0.8/Makefile create mode 100644 bzip2-1.0.8/Makefile-libbz2_so create mode 100644 bzip2-1.0.8/README create mode 100644 bzip2-1.0.8/README.COMPILATION.PROBLEMS create mode 100644 bzip2-1.0.8/README.XML.STUFF create mode 100644 bzip2-1.0.8/blocksort.c create mode 100644 bzip2-1.0.8/bz-common.xsl create mode 100644 bzip2-1.0.8/bz-fo.xsl create mode 100644 bzip2-1.0.8/bz-html.xsl create mode 100755 bzip2-1.0.8/bzdiff create mode 100644 bzip2-1.0.8/bzdiff.1 create mode 100755 bzip2-1.0.8/bzgrep create mode 100644 bzip2-1.0.8/bzgrep.1 create mode 100644 bzip2-1.0.8/bzip.css create mode 100644 bzip2-1.0.8/bzip2.1 create mode 100644 bzip2-1.0.8/bzip2.1.preformatted create mode 100644 bzip2-1.0.8/bzip2.c create mode 100644 bzip2-1.0.8/bzip2.txt create mode 100644 bzip2-1.0.8/bzip2recover.c create mode 100644 bzip2-1.0.8/bzlib.c create mode 100644 bzip2-1.0.8/bzlib.h create mode 100644 bzip2-1.0.8/bzlib_private.h create mode 100644 bzip2-1.0.8/bzmore create mode 100644 bzip2-1.0.8/bzmore.1 create mode 100644 bzip2-1.0.8/compress.c create mode 100644 bzip2-1.0.8/crctable.c create mode 100644 bzip2-1.0.8/decompress.c create mode 100644 bzip2-1.0.8/dlltest.c create mode 100644 bzip2-1.0.8/dlltest.dsp create mode 100644 bzip2-1.0.8/entities.xml create mode 100755 bzip2-1.0.8/format.pl create mode 100644 bzip2-1.0.8/huffman.c create mode 100644 bzip2-1.0.8/libbz2.def create mode 100644 bzip2-1.0.8/libbz2.dsp create mode 100644 bzip2-1.0.8/makefile.msc create mode 100644 bzip2-1.0.8/manual.html create mode 100644 bzip2-1.0.8/manual.ps create mode 100644 bzip2-1.0.8/manual.xml create mode 100644 bzip2-1.0.8/mk251.c create mode 100644 bzip2-1.0.8/randtable.c create mode 100644 bzip2-1.0.8/sample1.bz2 create mode 100644 bzip2-1.0.8/sample1.ref create mode 100644 bzip2-1.0.8/sample2.bz2 create mode 100644 bzip2-1.0.8/sample2.ref create mode 100644 bzip2-1.0.8/sample3.bz2 create mode 100644 bzip2-1.0.8/sample3.ref create mode 100644 bzip2-1.0.8/spewG.c create mode 100644 bzip2-1.0.8/unzcrash.c create mode 100644 bzip2-1.0.8/words0 create mode 100644 bzip2-1.0.8/words1 create mode 100644 bzip2-1.0.8/words2 create mode 100644 bzip2-1.0.8/words3 create mode 100755 bzip2-1.0.8/xmlproc.sh create mode 100644 lib.rs diff --git a/.cargo_vcs_info.json b/.cargo_vcs_info.json new file mode 100644 index 0000000..47112fd --- /dev/null +++ b/.cargo_vcs_info.json @@ -0,0 +1,5 @@ +{ + "git": { + "sha1": "016e18155ef7c05983ea244cae1344c5b68defd8" + } +} diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e7b4ee7 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,38 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies +# +# If you believe there's an error in this file please file an +# issue against the rust-lang/cargo repository. If you're +# editing this file be aware that the upstream Cargo.toml +# will likely look very different (and much more reasonable) + +[package] +name = "bzip2-sys" +version = "0.1.11+1.0.8" +authors = ["Alex Crichton "] +build = "build.rs" +links = "bzip2" +description = "Bindings to libbzip2 for bzip2 compression and decompression exposed as\nReader/Writer streams.\n" +homepage = "https://github.com/alexcrichton/bzip2-rs" +documentation = "https://docs.rs/bzip2-sys" +categories = ["external-ffi-bindings"] +license = "MIT/Apache-2.0" +repository = "https://github.com/alexcrichton/bzip2-rs" + +[lib] +name = "bzip2_sys" +path = "lib.rs" +[dependencies.libc] +version = "0.2" +[build-dependencies.cc] +version = "1.0" + +[build-dependencies.pkg-config] +version = "0.3.9" + +[features] +static = [] diff --git a/Cargo.toml.orig b/Cargo.toml.orig new file mode 100644 index 0000000..bc2318f --- /dev/null +++ b/Cargo.toml.orig @@ -0,0 +1,30 @@ +[package] +name = "bzip2-sys" +version = "0.1.11+1.0.8" +authors = ["Alex Crichton "] +links = "bzip2" +build = "build.rs" +license = "MIT/Apache-2.0" +repository = "https://github.com/alexcrichton/bzip2-rs" +homepage = "https://github.com/alexcrichton/bzip2-rs" +documentation = "https://docs.rs/bzip2-sys" +description = """ +Bindings to libbzip2 for bzip2 compression and decompression exposed as +Reader/Writer streams. +""" +categories = ["external-ffi-bindings"] + +[lib] +name = "bzip2_sys" +path = "lib.rs" + +[dependencies] +libc = "0.2" + +[build-dependencies] +pkg-config = "0.3.9" +cc = "1.0" + +[features] +# Enable this feature if you want to have a statically linked bzip2 +static = [] diff --git a/LICENSE-APACHE b/LICENSE-APACHE new file mode 100644 index 0000000..16fe87b --- /dev/null +++ b/LICENSE-APACHE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/LICENSE-MIT b/LICENSE-MIT new file mode 100644 index 0000000..39e0ed6 --- /dev/null +++ b/LICENSE-MIT @@ -0,0 +1,25 @@ +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..feb004c --- /dev/null +++ b/build.rs @@ -0,0 +1,47 @@ +extern crate cc; +extern crate pkg_config; + +use std::path::PathBuf; +use std::{env, fs}; + +fn main() { + let mut cfg = cc::Build::new(); + let target = env::var("TARGET").unwrap(); + cfg.warnings(false); + + if target.contains("windows") { + cfg.define("_WIN32", None); + cfg.define("BZ_EXPORT", None); + } else if !cfg!(feature = "static") { + // pkg-config doesn't guarantee static link + if pkg_config::Config::new() + .cargo_metadata(true) + .probe("bzip2") + .is_ok() + { + return; + } + } + + let dst = PathBuf::from(env::var_os("OUT_DIR").unwrap()); + + cfg.include("bzip2-1.0.8") + .define("_FILE_OFFSET_BITS", Some("64")) + .define("BZ_NO_STDIO", None) + .file("bzip2-1.0.8/blocksort.c") + .file("bzip2-1.0.8/huffman.c") + .file("bzip2-1.0.8/crctable.c") + .file("bzip2-1.0.8/randtable.c") + .file("bzip2-1.0.8/compress.c") + .file("bzip2-1.0.8/decompress.c") + .file("bzip2-1.0.8/bzlib.c") + .out_dir(dst.join("lib")) + .compile("libbz2.a"); + + let src = env::current_dir().unwrap().join("bzip2-1.0.8"); + let include = dst.join("include"); + fs::create_dir_all(&include).unwrap(); + fs::copy(src.join("bzlib.h"), dst.join("include/bzlib.h")).unwrap(); + println!("cargo:root={}", dst.display()); + println!("cargo:include={}", dst.join("include").display()); +} diff --git a/bzip2-1.0.8/CHANGES b/bzip2-1.0.8/CHANGES new file mode 100644 index 0000000..30afead --- /dev/null +++ b/bzip2-1.0.8/CHANGES @@ -0,0 +1,356 @@ + ------------------------------------------------------------------ + This file is part of bzip2/libbzip2, a program and library for + lossless, block-sorting data compression. + + bzip2/libbzip2 version 1.0.8 of 13 July 2019 + Copyright (C) 1996-2019 Julian Seward + + Please read the WARNING, DISCLAIMER and PATENTS sections in the + README file. + + This program is released under the terms of the license contained + in the file LICENSE. + ------------------------------------------------------------------ + + +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. This fixes CAN-2005-1260. + +* 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. + + +1.0.4 (20 Dec 06) +~~~~~~~~~~~~~~~~~ +Fixes some minor bugs since the last version, 1.0.3. + +* Fix file permissions race problem (CAN-2005-0953). + +* Avoid possible segfault in BZ2_bzclose. From Coverity's NetBSD + scan. + +* 'const'/prototype cleanups in the C code. + +* Change default install location to /usr/local, and handle multiple + 'make install's without error. + +* Sanitise file names more carefully in bzgrep. Fixes CAN-2005-0758 + to the extent that applies to bzgrep. + +* Use 'mktemp' rather than 'tempfile' in bzdiff. + +* Tighten up a couple of assertions in blocksort.c following automated + analysis. + +* Fix minor doc/comment bugs. + + +1.0.5 (10 Dec 07) +~~~~~~~~~~~~~~~~~ +Security fix only. Fixes CERT-FI 20469 as it applies to bzip2. + + +1.0.6 (6 Sept 10) +~~~~~~~~~~~~~~~~~ + +* Security fix for CVE-2010-0405. This was reported by Mikolaj + Izdebski. + +* Make the documentation build on Ubuntu 10.04 + +1.0.7 (27 Jun 19) +~~~~~~~~~~~~~~~~~ + +* Fix undefined behavior in the macros SET_BH, CLEAR_BH, & ISSET_BH + +* bzip2: Fix return value when combining --test,-t and -q. + +* bzip2recover: Fix buffer overflow for large argv[0] + +* bzip2recover: Fix use after free issue with outFile (CVE-2016-3189) + +* Make sure nSelectors is not out of range (CVE-2019-12900) + +1.0.8 (13 Jul 19) +~~~~~~~~~~~~~~~~~ + +* Accept as many selectors as the file format allows. + This relaxes the fix for CVE-2019-12900 from 1.0.7 + so that bzip2 allows decompression of bz2 files that + use (too) many selectors again. + +* Fix handling of large (> 4GB) files on Windows. + +* Cleanup of bzdiff and bzgrep scripts so they don't use + any bash extensions and handle multiple archives correctly. + +* There is now a bz2-files testsuite at + https://sourceware.org/git/bzip2-tests.git diff --git a/bzip2-1.0.8/LICENSE b/bzip2-1.0.8/LICENSE new file mode 100644 index 0000000..81a37ea --- /dev/null +++ b/bzip2-1.0.8/LICENSE @@ -0,0 +1,42 @@ + +-------------------------------------------------------------------------- + +This program, "bzip2", the associated library "libbzip2", and all +documentation, are copyright (C) 1996-2019 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, jseward@acm.org +bzip2/libbzip2 version 1.0.8 of 13 July 2019 + +-------------------------------------------------------------------------- diff --git a/bzip2-1.0.8/Makefile b/bzip2-1.0.8/Makefile new file mode 100644 index 0000000..f8a1772 --- /dev/null +++ b/bzip2-1.0.8/Makefile @@ -0,0 +1,217 @@ +# ------------------------------------------------------------------ +# This file is part of bzip2/libbzip2, a program and library for +# lossless, block-sorting data compression. +# +# bzip2/libbzip2 version 1.0.8 of 13 July 2019 +# Copyright (C) 1996-2019 Julian Seward +# +# Please read the WARNING, DISCLAIMER and PATENTS sections in the +# README file. +# +# This program is released under the terms of the license contained +# in the file LICENSE. +# ------------------------------------------------------------------ + +SHELL=/bin/sh + +# To assist in cross-compiling +CC=gcc +AR=ar +RANLIB=ranlib +LDFLAGS= + +BIGFILES=-D_FILE_OFFSET_BITS=64 +CFLAGS=-Wall -Winline -O2 -g $(BIGFILES) + +# Where you want it installed when you do 'make install' +PREFIX=/usr/local + + +OBJS= blocksort.o \ + huffman.o \ + crctable.o \ + randtable.o \ + compress.o \ + decompress.o \ + bzlib.o + +all: libbz2.a bzip2 bzip2recover test + +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) cq 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 + @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)/include ) ; then mkdir -p $(PREFIX)/include ; 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)/include + chmod a+r $(PREFIX)/include/bzlib.h + cp -f libbz2.a $(PREFIX)/lib + chmod a+r $(PREFIX)/lib/libbz2.a + cp -f bzgrep $(PREFIX)/bin/bzgrep + ln -s -f $(PREFIX)/bin/bzgrep $(PREFIX)/bin/bzegrep + ln -s -f $(PREFIX)/bin/bzgrep $(PREFIX)/bin/bzfgrep + chmod a+x $(PREFIX)/bin/bzgrep + cp -f bzmore $(PREFIX)/bin/bzmore + ln -s -f $(PREFIX)/bin/bzmore $(PREFIX)/bin/bzless + chmod a+x $(PREFIX)/bin/bzmore + cp -f bzdiff $(PREFIX)/bin/bzdiff + ln -s -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.8 +dist: check manual + rm -f $(DISTNAME) + ln -s -f . $(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)/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/bzip2-1.0.8/Makefile-libbz2_so b/bzip2-1.0.8/Makefile-libbz2_so new file mode 100644 index 0000000..fb0f230 --- /dev/null +++ b/bzip2-1.0.8/Makefile-libbz2_so @@ -0,0 +1,59 @@ + +# This Makefile builds a shared version of the library, +# libbz2.so.1.0.8, 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. + +# ------------------------------------------------------------------ +# This file is part of bzip2/libbzip2, a program and library for +# lossless, block-sorting data compression. +# +# bzip2/libbzip2 version 1.0.8 of 13 July 2019 +# Copyright (C) 1996-2019 Julian Seward +# +# Please read the WARNING, DISCLAIMER and PATENTS sections in the +# README file. +# +# This program is released under the terms of the license contained +# in the file LICENSE. +# ------------------------------------------------------------------ + + +SHELL=/bin/sh +CC=gcc +BIGFILES=-D_FILE_OFFSET_BITS=64 +CFLAGS=-fpic -fPIC -Wall -Winline -O2 -g $(BIGFILES) + +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.8 $(OBJS) + $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8 + rm -f libbz2.so.1.0 + ln -s libbz2.so.1.0.8 libbz2.so.1.0 + +clean: + rm -f $(OBJS) bzip2.o libbz2.so.1.0.8 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/bzip2-1.0.8/README b/bzip2-1.0.8/README new file mode 100644 index 0000000..b9c6099 --- /dev/null +++ b/bzip2-1.0.8/README @@ -0,0 +1,196 @@ + +This is the README for bzip2/libzip2. +This version is fully compatible with the previous public releases. + +------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.8 of 13 July 2019 +Copyright (C) 1996-2019 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in this file. + +This program is released under the terms of the license contained +in 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. + + +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/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. + + +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. 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 site (https://sourceware.org/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 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 disastrous loss of data. + + +DISCLAIMER: + + I TAKE NO RESPONSIBILITY FOR ANY LOSS OF DATA ARISING FROM THE + USE OF THIS PROGRAM/LIBRARY, 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/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 + to carry out a patent search. Therefore I cannot give any + guarantee of the above statement. + + + +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.x ? + + See the CHANGES file. + +I hope you find bzip2 useful. Feel free to contact the developers at + bzip2-devel@sourceware.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, +1.0.2 and 1.0.3, and the changes in bzip2 are largely a result of this +feedback. I thank you for your comments. + +bzip2's "home" is https://sourceware.org/bzip2/ + +Julian Seward +jseward@acm.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) +20 December 2006 (bzip2, version 1.0.4) +10 December 2007 (bzip2, version 1.0.5) + 6 Sept 2010 (bzip2, version 1.0.6) +27 June 2019 (bzip2, version 1.0.7) +13 July 2019 (bzip2, version 1.0.8) diff --git a/bzip2-1.0.8/README.COMPILATION.PROBLEMS b/bzip2-1.0.8/README.COMPILATION.PROBLEMS new file mode 100644 index 0000000..fa317a5 --- /dev/null +++ b/bzip2-1.0.8/README.COMPILATION.PROBLEMS @@ -0,0 +1,58 @@ +------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.8 of 13 July 2019 +Copyright (C) 1996-2019 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in the +README file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ + +bzip2 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 amd64-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 on amd64-linux. + +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. + +Early 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. + +AIX: I have reports that for large file support, you need to specify +-D_LARGE_FILES rather than -D_FILE_OFFSET_BITS=64. I have not tested +this myself. diff --git a/bzip2-1.0.8/README.XML.STUFF b/bzip2-1.0.8/README.XML.STUFF new file mode 100644 index 0000000..1503476 --- /dev/null +++ b/bzip2-1.0.8/README.XML.STUFF @@ -0,0 +1,45 @@ + ---------------------------------------------------------------- + This file is part of bzip2/libbzip2, a program and library for + lossless, block-sorting data compression. + + bzip2/libbzip2 version 1.0.8 of 13 July 2019 + Copyright (C) 1996-2019 Julian Seward + + Please read the WARNING, DISCLAIMER and PATENTS sections in the + README file. + + This program is released under the terms of the license contained + in the file LICENSE. + ---------------------------------------------------------------- + +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/bzip2-1.0.8/blocksort.c b/bzip2-1.0.8/blocksort.c
new file mode 100644
index 0000000..92d81fe
--- /dev/null
+++ b/bzip2-1.0.8/blocksort.c
@@ -0,0 +1,1094 @@
+
+/*-------------------------------------------------------------*/
+/*--- Block sorting machinery                               ---*/
+/*---                                           blocksort.c ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+#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 - 1, 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] |= ((UInt32)1 << ((zz) & 31))
+#define     CLEAR_BH(zz)  bhtab[(zz) >> 5] &= ~((UInt32)1 << ((zz) & 31))
+#define     ISSET_BH(zz)  (bhtab[(zz) >> 5] & ((UInt32)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 - 2, 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/bzip2-1.0.8/bz-common.xsl b/bzip2-1.0.8/bz-common.xsl
new file mode 100644
index 0000000..66fcd6f
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/bz-fo.xsl b/bzip2-1.0.8/bz-fo.xsl
new file mode 100644
index 0000000..ba3e301
--- /dev/null
+++ b/bzip2-1.0.8/bz-fo.xsl
@@ -0,0 +1,276 @@
+ 
+
+
+
+
+
+
+
+
+
+
+
+
+      
+     
+   
+
+
+
+
+ 
+
+
+
+
+
+
+  
+
+
+
+
+  blue
+
+
+
+
+  
+    
+  
+
+
+
+  
+    
+  
+
+
+
+
+  
+  
+  
+    
+      
+    
+  
+  
+    
+      
+        
+          
+          
+          
+        
+      
+    
+    
+          
+    
+  
+  
+    
+      
+        
+      
+    
+    
+      
+        
+      
+    
+  
+
+
+
+
+  
+  
+  
+    
+      
+        
+      
+    
+    
+          
+    
+  
+  
+    
+      
+        
+      
+    
+    
+      
+        
+      
+    
+  
+
+
+
+
+
+  
+    
+  
+    
+  
+  
+    
+      
+    
+  
+
+
+
+
+
+  
+  
+  
+  
+    
+      0pt
+    
+  
+  
+    
+      
+      
+      
+        
+          
+            baseline
+             
+               
+            
+          
+          
+            baseline
+            
+              
+                
+                
+                
+                
+              
+            
+          
+        
+      
+    
+  
+  
+  
+    
+      
+    
+    
+      
+    
+    
+      
+    
+  
+
+
+
+
+
+  
+  
+  
+  
+    
+      0pt
+    
+  
+  
+    
+      
+        
+        
+        
+      
+      
+      
+      
+        
+          
+            baseline
+            
+               
+            
+          
+          
+            baseline
+            
+              
+                
+                
+                
+                
+              
+            
+          
+        
+      
+    
+  
+  
+  
+    
+      
+    
+    
+      
+    
+    
+      
+    
+  
+
+
+
+
+
+
+  always
+  
+    
+  
+  
+    
+    pt
+  
+  
+    
+    pt
+  
+  false
+
+
+
+
diff --git a/bzip2-1.0.8/bz-html.xsl b/bzip2-1.0.8/bz-html.xsl
new file mode 100644
index 0000000..b6000d5
--- /dev/null
+++ b/bzip2-1.0.8/bz-html.xsl
@@ -0,0 +1,23 @@
+ 
+ ]>
+
+
+
+
+
+
+
+
+
+
+
+  
+link rel="stylesheet" type="text/css" href="bzip.css" />
+  
+  
+
+
+
diff --git a/bzip2-1.0.8/bzdiff b/bzip2-1.0.8/bzdiff
new file mode 100755
index 0000000..bd96c27
--- /dev/null
+++ b/bzip2-1.0.8/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:/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
+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$||'`
+			tmp=`mktemp "${TMPDIR:-/tmp}"/bzdiff.XXXXXXXXXX` || {
+			      echo 'cannot create a temporary file' >&2
+			      exit 1
+			}
+                        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
+else
+	echo "Usage: $prog [${comp}_options] file [file]"
+	exit 1
+fi
+exit "$STAT"
diff --git a/bzip2-1.0.8/bzdiff.1 b/bzip2-1.0.8/bzdiff.1
new file mode 100644
index 0000000..adb7a8e
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/bzgrep b/bzip2-1.0.8/bzgrep
new file mode 100755
index 0000000..0314ca6
--- /dev/null
+++ b/bzip2-1.0.8/bzgrep
@@ -0,0 +1,85 @@
+#!/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
+    j=$(echo "$i" | sed 's/\\/&&/g;s/|/\\&/g;s/&/\\&/g')
+    j=`printf "%s" "$j" | tr '\n' ' '`
+    # A trick adapted from
+    # https://groups.google.com/forum/#!original/comp.unix.shell/x1345iu10eg/Nn1n-1r1uU0J
+    # that has the same effect as the following bash code:
+    # bzip2 -cdfq "$i" | $grep $opt "$pat" | sed "s|^|${j}:|"
+    # r=${PIPESTATUS[1]}
+    exec 3>&1
+    eval `
+      exec 4>&1 >&3 3>&-
+      {
+        bzip2 -cdfq "$i" 4>&-
+      } | {
+        $grep $opt "$pat" 4>&-; echo "r=$?;" >&4
+      } | sed "s|^|${j}:|"
+    `
+  fi
+  test "$r" -ne 0 && res="$r"
+done
+exit $res
diff --git a/bzip2-1.0.8/bzgrep.1 b/bzip2-1.0.8/bzgrep.1
new file mode 100644
index 0000000..930af8c
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/bzip.css b/bzip2-1.0.8/bzip.css
new file mode 100644
index 0000000..2113118
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/bzip2.1 b/bzip2-1.0.8/bzip2.1
new file mode 100644
index 0000000..0cbcdab
--- /dev/null
+++ b/bzip2-1.0.8/bzip2.1
@@ -0,0 +1,454 @@
+.PU
+.TH bzip2 1
+.SH NAME
+bzip2, bunzip2 \- a block-sorting file compressor, v1.0.8
+.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.8 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, 1.0.2 and above, 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, jseward@acm.org.
+
+https://sourceware.org/bzip2/
+
+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/bzip2-1.0.8/bzip2.1.preformatted b/bzip2-1.0.8/bzip2.1.preformatted
new file mode 100644
index 0000000..787f1c6
--- /dev/null
+++ b/bzip2-1.0.8/bzip2.1.preformatted
@@ -0,0 +1,399 @@
+bzip2(1)                                                 bzip2(1)
+
+
+
+NNAAMMEE
+       bzip2, bunzip2 − a block‐sorting file compressor, v1.0.8
+       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.8 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, 
+       1.0.2 and above, 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.
+
+       _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, jseward@acm.org.
+
+       https://sourceware.org/bzip2/
+
+       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/bzip2-1.0.8/bzip2.c b/bzip2-1.0.8/bzip2.c
new file mode 100644
index 0000000..d95d280
--- /dev/null
+++ b/bzip2-1.0.8/bzip2.c
@@ -0,0 +1,2036 @@
+
+/*-----------------------------------------------------------*/
+/*--- A block-sorting, lossless compressor        bzip2.c ---*/
+/*-----------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+/* 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       _stati64
+#   define MY_STAT        _stati64
+#   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                 ( const 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 );
+static void    applySavedFileAttrToOutputFile ( IntNative fd );
+
+
+
+/*---------------------------------------------------*/
+/*--- 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) {
+      Int32 fd = fileno ( zStream );
+      if (fd < 0) goto errhandler_io;
+      applySavedFileAttrToOutputFile ( fd );
+      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;
+   if (stream != stdout) {
+      Int32 fd = fileno ( stream );
+      if (fd < 0) goto errhandler_io;
+      applySavedFileAttrToOutputFile ( fd );
+   }
+   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, 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) {
+         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 ( const Char* s )
+{
+   fprintf ( stderr,
+             "\n%s: PANIC -- internal consistency error:\n"
+             "\t%s\n"
+             "\tThis is a BUG.  Please report it to:\n"
+             "\tbzip2-devel@sourceware.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: bzip2-devel@sourceware.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: bzip2-devel@sourceware.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.
+*/
+static
+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 applySavedTimeInfoToOutputFile ( Char *dstName )
+{
+#  if BZ_UNIX
+   IntNative      retVal;
+   struct utimbuf uTimBuf;
+
+   uTimBuf.actime = fileMetaInfo.st_atime;
+   uTimBuf.modtime = fileMetaInfo.st_mtime;
+
+   retVal = utime ( dstName, &uTimBuf );
+   ERROR_IF_NOT_ZERO ( retVal );
+#  endif
+}
+
+static 
+void applySavedFileAttrToOutputFile ( IntNative fd )
+{
+#  if BZ_UNIX
+   IntNative retVal;
+
+   retVal = fchmod ( fd, fileMetaInfo.st_mode );
+   ERROR_IF_NOT_ZERO ( retVal );
+
+   (void) fchown ( fd, 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
+
+const Char* zSuffix[BZ_N_SUFFIX_PAIRS] 
+   = { ".bz2", ".bz", ".tbz2", ".tbz" };
+const Char* unzSuffix[BZ_N_SUFFIX_PAIRS] 
+   = { "", "", ".tar", ".tar" };
+
+static 
+Bool hasSuffix ( Char* s, const 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, 
+                 const Char* oldSuffix, 
+                 const 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, (Char*)"(stdin)" );
+         copyFileName ( outName, (Char*)"(stdout)" ); 
+         break;
+      case SM_F2F: 
+         copyFileName ( inName, name );
+         copyFileName ( outName, name );
+         strcat ( outName, ".bz2" ); 
+         break;
+      case SM_F2O: 
+         copyFileName ( inName, name );
+         copyFileName ( outName, (Char*)"(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 ) {
+      applySavedTimeInfoToOutputFile ( 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, (Char*)"(stdin)" );
+         copyFileName ( outName, (Char*)"(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, (Char*)"(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 ) {
+         applySavedTimeInfoToOutputFile ( 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, (Char*)"(none)" );
+   switch (srcMode) {
+      case SM_I2O: copyFileName ( inName, (Char*)"(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-2019 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 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,  (Char*)"(none)" );
+   copyFileName ( outName, (Char*)"(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,  (Char*)"BZIP2" );
+   addFlagsFromEnvVar ( &argList,  (Char*)"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) {
+	 if (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/bzip2-1.0.8/bzip2.txt b/bzip2-1.0.8/bzip2.txt
new file mode 100644
index 0000000..a50570b
--- /dev/null
+++ b/bzip2-1.0.8/bzip2.txt
@@ -0,0 +1,391 @@
+
+NAME
+       bzip2, bunzip2 - a block-sorting file compressor, v1.0.8
+       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.8 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,
+       1.0.2 and above, 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  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, jseward@acm.org
+
+       https://sourceware.org/bzip2/
+
+       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/bzip2-1.0.8/bzip2recover.c b/bzip2-1.0.8/bzip2recover.c
new file mode 100644
index 0000000..a8131e0
--- /dev/null
+++ b/bzip2-1.0.8/bzip2recover.c
@@ -0,0 +1,516 @@
+/*-----------------------------------------------------------*/
+/*--- Block recoverer program for bzip2                   ---*/
+/*---                                      bzip2recover.c ---*/
+/*-----------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+/* 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                                  ---*/
+/*---------------------------------------------------*/
+
+/*---------------------------------------------*/
+static 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 );
+}
+
+
+/*---------------------------------------------*/
+static 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 );
+}
+
+
+/*---------------------------------------------*/
+static 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 );
+}
+
+
+/*---------------------------------------------*/
+static 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;
+
+
+/*---------------------------------------------*/
+static 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;
+}
+
+
+/*---------------------------------------------*/
+static 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;
+}
+
+
+/*---------------------------------------------*/
+static 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.
+--*/
+static 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 );
+   }
+}
+
+
+/*---------------------------------------------*/
+static 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 );
+}
+
+
+/*---------------------------------------------*/
+static void bsPutUChar ( BitStream* bs, UChar c )
+{
+   Int32 i;
+   for (i = 7; i >= 0; i--)
+      bsPutBit ( bs, (((UInt32) c) >> i) & 0x1 );
+}
+
+
+/*---------------------------------------------*/
+static void bsPutUInt32 ( BitStream* bs, UInt32 c )
+{
+   Int32 i;
+
+   for (i = 31; i >= 0; i--)
+      bsPutBit ( bs, (c >> i) & 0x1 );
+}
+
+
+/*---------------------------------------------*/
+static 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;
+
+   strncpy ( progName, argv[0], BZ_MAX_FILENAME-1);
+   progName[BZ_MAX_FILENAME-1]='\0';
+   inFileName[0] = outFileName[0] = 0;
+
+   fprintf ( stderr, 
+             "bzip2recover 1.0.8: 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 );
+            outFile = NULL;
+         }
+         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/bzip2-1.0.8/bzlib.c b/bzip2-1.0.8/bzlib.c
new file mode 100644
index 0000000..2178655
--- /dev/null
+++ b/bzip2-1.0.8/bzlib.c
@@ -0,0 +1,1572 @@
+
+/*-------------------------------------------------------------*/
+/*--- Library top-level functions.                          ---*/
+/*---                                               bzlib.c ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+/* 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: bzip2-devel@sourceware.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.\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;
+      Int32         ro_blockSize100k     = s->blockSize100k;
+      /* 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 (tsuneo@rr.iij4u.or.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.5d, 4-Sept-1999".
+--*/
+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;
+   
+   if (b==NULL) {return;}
+   fp = ((bzFile *)b)->handle;
+   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 const 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/bzip2-1.0.8/bzlib.h b/bzip2-1.0.8/bzlib.h
new file mode 100644
index 0000000..8966a6c
--- /dev/null
+++ b/bzip2-1.0.8/bzlib.h
@@ -0,0 +1,282 @@
+
+/*-------------------------------------------------------------*/
+/*--- Public header file for the library.                   ---*/
+/*---                                               bzlib.h ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+#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 (tsuneo@rr.iij4u.or.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/bzip2-1.0.8/bzlib_private.h b/bzip2-1.0.8/bzlib_private.h
new file mode 100644
index 0000000..3755a6f
--- /dev/null
+++ b/bzip2-1.0.8/bzlib_private.h
@@ -0,0 +1,509 @@
+
+/*-------------------------------------------------------------*/
+/*--- Private header file for the library.                  ---*/
+/*---                                       bzlib_private.h ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+#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.8, 13-Jul-2019"
+
+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)                do { } while (0)
+#define VPrintf0(zf)                     do { } while (0)
+#define VPrintf1(zf,za1)                 do { } while (0)
+#define VPrintf2(zf,za1,za2)             do { } while (0)
+#define VPrintf3(zf,za1,za2,za3)         do { } while (0)
+#define VPrintf4(zf,za1,za2,za3,za4)     do { } while (0)
+#define VPrintf5(zf,za1,za2,za3,za4,za5) do { } while (0)
+
+#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)                     \
+    /* c_tPos is unsigned, hence test < 0 is pointless. */ \
+    if (s->tPos >= (UInt32)100000 * (UInt32)s->blockSize100k) return True; \
+    s->tPos = s->tt[s->tPos];                 \
+    cccc = (UChar)(s->tPos & 0xff);           \
+    s->tPos >>= 8;
+
+#define BZ_GET_FAST_C(cccc)                   \
+    /* c_tPos is unsigned, hence test < 0 is pointless. */ \
+    if (c_tPos >= (UInt32)100000 * (UInt32)ro_blockSize100k) return True; \
+    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)                            \
+    /* c_tPos is unsigned, hence test < 0 is pointless. */ \
+    if (s->tPos >= (UInt32)100000 * (UInt32)s->blockSize100k) return True; \
+    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/bzip2-1.0.8/bzmore b/bzip2-1.0.8/bzmore
new file mode 100644
index 0000000..d314043
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/bzmore.1 b/bzip2-1.0.8/bzmore.1
new file mode 100644
index 0000000..b437d3b
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/compress.c b/bzip2-1.0.8/compress.c
new file mode 100644
index 0000000..5dfa002
--- /dev/null
+++ b/bzip2-1.0.8/compress.c
@@ -0,0 +1,672 @@
+
+/*-------------------------------------------------------------*/
+/*--- Compression machinery (not incl block sorting)        ---*/
+/*---                                            compress.c ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+/* 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 <= BZ_MAX_SELECTORS,
+            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/bzip2-1.0.8/crctable.c b/bzip2-1.0.8/crctable.c
new file mode 100644
index 0000000..2b33c25
--- /dev/null
+++ b/bzip2-1.0.8/crctable.c
@@ -0,0 +1,104 @@
+
+/*-------------------------------------------------------------*/
+/*--- Table for doing CRCs                                  ---*/
+/*---                                            crctable.c ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+#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/bzip2-1.0.8/decompress.c b/bzip2-1.0.8/decompress.c
new file mode 100644
index 0000000..a1a0bac
--- /dev/null
+++ b/bzip2-1.0.8/decompress.c
@@ -0,0 +1,652 @@
+
+/*-------------------------------------------------------------*/
+/*--- Decompression machinery                               ---*/
+/*---                                          decompress.c ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+#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 > BZ_N_GROUPS) 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);
+         }
+         /* Having more than BZ_MAX_SELECTORS doesn't make much sense
+            since they will never be used, but some implementations might
+            "round up" the number of selectors, so just ignore those. */
+         if (i < BZ_MAX_SELECTORS)
+           s->selectorMtf[i] = j;
+      }
+      if (nSelectors > BZ_MAX_SELECTORS)
+        nSelectors = BZ_MAX_SELECTORS;
+
+      /*--- 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 {
+               /* Check that N doesn't get too big, so that es doesn't
+                  go negative.  The maximum value that can be
+                  RUNA/RUNB encoded is equal to the block size (post
+                  the initial RLE), viz, 900k, so bounding N at 2
+                  million should guard against overflow without
+                  rejecting any legitimate inputs. */
+               if (N >= 2*1024*1024) RETURN(BZ_DATA_ERROR);
+               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) --*/
+      /* Check: unzftab entries in range. */
+      for (i = 0; i <= 255; i++) {
+         if (s->unzftab[i] < 0 || s->unzftab[i] > nblock)
+            RETURN(BZ_DATA_ERROR);
+      }
+      /* Actually generate cftab. */
+      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];
+      /* Check: cftab entries in range. */
+      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);
+         }
+      }
+      /* Check: cftab entries non-descending. */
+      for (i = 1; i <= 256; i++) {
+         if (s->cftab[i-1] > s->cftab[i]) {
+            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/bzip2-1.0.8/dlltest.c b/bzip2-1.0.8/dlltest.c
new file mode 100644
index 0000000..03fa146
--- /dev/null
+++ b/bzip2-1.0.8/dlltest.c
@@ -0,0 +1,175 @@
+/*
+   minibz2
+      libbz2.dll test program.
+      by Yoshioka Tsuneo (tsuneo@rr.iij4u.or.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/bzip2-1.0.8/dlltest.dsp b/bzip2-1.0.8/dlltest.dsp
new file mode 100644
index 0000000..4b1615e
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/entities.xml b/bzip2-1.0.8/entities.xml
new file mode 100644
index 0000000..dd69924
--- /dev/null
+++ b/bzip2-1.0.8/entities.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/bzip2-1.0.8/format.pl b/bzip2-1.0.8/format.pl
new file mode 100755
index 0000000..2734ded
--- /dev/null
+++ b/bzip2-1.0.8/format.pl
@@ -0,0 +1,68 @@
+#!/usr/bin/perl -w
+#
+# ------------------------------------------------------------------
+# This file is part of bzip2/libbzip2, a program and library for
+# lossless, block-sorting data compression.
+#
+# bzip2/libbzip2 version 1.0.8 of 13 July 2019
+# Copyright (C) 1996-2019 Julian Seward 
+#
+# Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+# README file.
+#
+# This program is released under the terms of the license contained
+# in the file LICENSE.
+# ------------------------------------------------------------------
+#
+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/bzip2-1.0.8/huffman.c b/bzip2-1.0.8/huffman.c
new file mode 100644
index 0000000..43a1899
--- /dev/null
+++ b/bzip2-1.0.8/huffman.c
@@ -0,0 +1,205 @@
+
+/*-------------------------------------------------------------*/
+/*--- Huffman coding low-level stuff                        ---*/
+/*---                                             huffman.c ---*/
+/*-------------------------------------------------------------*/
+
+/* ------------------------------------------------------------------
+   This file is part of bzip2/libbzip2, a program and library for
+   lossless, block-sorting data compression.
+
+   bzip2/libbzip2 version 1.0.8 of 13 July 2019
+   Copyright (C) 1996-2019 Julian Seward 
+
+   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
+   README file.
+
+   This program is released under the terms of the license contained
+   in the file LICENSE.
+   ------------------------------------------------------------------ */
+
+
+#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/bzip2-1.0.8/libbz2.def b/bzip2-1.0.8/libbz2.def
new file mode 100644
index 0000000..2dc0dd8
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/libbz2.dsp b/bzip2-1.0.8/libbz2.dsp
new file mode 100644
index 0000000..a21a20f
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/makefile.msc b/bzip2-1.0.8/makefile.msc
new file mode 100644
index 0000000..799a18a
--- /dev/null
+++ b/bzip2-1.0.8/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/bzip2-1.0.8/manual.html b/bzip2-1.0.8/manual.html
new file mode 100644
index 0000000..2afa678
--- /dev/null
+++ b/bzip2-1.0.8/manual.html
@@ -0,0 +1,2541 @@
+
+
+
+bzip2 and libbzip2, version 1.0.8
+
+
+  
+
+
+
+
+

+bzip2 and libbzip2, version 1.0.8

+

A program and library for data compression

+
+

+Julian Seward +

+
https://sourceware.org/bzip2/
+
+

Version 1.0.8 of 13 July 2019

+
+
+

This program, bzip2, the + associated library libbzip2, and + all documentation, are copyright © 1996-2019 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.8

  • +
  • 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.8 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, 1.0.2 and 1.0.3, 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@acm.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 +(tsuneo@rr.iij4u.or.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_FINISH_OK
+
+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, b );
+}
+
+
+
+

+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.8 of 13 July 2019. +Please report it to: bzip2-devel@sourceware.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. +

+
+

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 +(tsuneo@rr.iij4u.or.jp), so +you should send your queries to him (but please Cc: +bzip2-devel@sourceware.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/bzip2-1.0.8/manual.ps b/bzip2-1.0.8/manual.ps new file mode 100644 index 0000000..7172dbd --- /dev/null +++ b/bzip2-1.0.8/manual.ps @@ -0,0 +1,216419 @@ +%!PS-Adobe-3.0 +%Produced by poppler pdftops version: 0.26.5 (http://poppler.freedesktop.org) +%%Creator: PassiveTeX 1.25 +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%DocumentMedia: Letter 612 792 0 () () +%%BoundingBox: 0 0 612 792 +%%Pages: 38 +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + /setpagedevice where { + pop 2 dict begin + /Policies 1 dict dup begin /PageSize 6 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop + } ifelse +} def +/pdfSetupPaper { + % Change paper size, but only if different from previous paper size otherwise + % duplex fails. PLRM specifies a tolerance of 5 pts when matching paper size + % so we use the same when checking if the size changes. + /setpagedevice where { + pop currentpagedevice + /PageSize known { + 2 copy + currentpagedevice /PageSize get aload pop + exch 4 1 roll + sub abs 5 gt + 3 1 roll + sub abs 5 gt + or + } { + true + } ifelse + { + 2 array astore + 2 dict begin + /PageSize exch def + /ImagingBBox null def + currentdict end + setpagedevice + } { + pop pop + } ifelse + } { + pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfPatternCS false def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Tp { /pdfPatternCS exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/xyshow where { + pop + /xyshow2 { + dup length array + 0 2 2 index length 1 sub { + 2 index 1 index 2 copy get 3 1 roll 1 add get + pdfTextMat dtransform + 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put + } for + exch pop + xyshow + } def +}{ + /xyshow2 { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval show moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval show moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/cshow where { + pop + /xycp { + 0 3 2 roll + { + pop pop currentpoint 3 2 roll + 1 string dup 0 4 3 roll put false charpath moveto + 2 copy get 2 index 2 index 1 add get + pdfTextMat dtransform rmoveto + 2 add + } exch cshow + pop pop + } def +}{ + /xycp { + currentfont /FontType get 0 eq { + 0 2 3 index length 1 sub { + currentpoint 4 index 3 index 2 getinterval false charpath moveto + 2 copy get 2 index 3 2 roll 1 add get + pdfTextMat dtransform rmoveto + } for + } { + 0 1 3 index length 1 sub { + currentpoint 4 index 3 index 1 getinterval false charpath moveto + 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get + pdfTextMat dtransform rmoveto + } for + } ifelse + pop pop + } def +} ifelse +/Tj { + fCol + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 4 2 roll + pdfTextRender 1 and 0 eq { + 2 copy xyshow2 + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 3 index 3 index moveto + 2 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + xycp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 4 2 roll moveto xycp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + pop pop pop pop + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { 0.001 mul pdfFontSize mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2/3 image operators +/pdfImBuf 100 string def +/pdfImStr { + 2 copy exch length lt { + 2 copy get exch 1 add exch + } { + () + } ifelse +} def +/skipEOD { + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfIm { image skipEOD } def +/pdfImM { fCol imagemask skipEOD } def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +%%BeginResource: font PYRIYB+NimbusSanL-Bold +%!PS-AdobeFont-1.0: NimbusSanL-Bold 1.05 +%%CreationDate: Wed Dec 22 1999 +% Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development +% (URW)++,Copyright 1999 by (URW)++ Design & Development +% See the file COPYING (GNU General Public License) for license conditions. +% As a special exception, permission is granted to include this font +% program in a Postscript or PDF file that consists of a document that +% contains text to be displayed or printed using this font, regardless +% of the conditions or license applying to the document itself. +12 dict begin +/FontInfo 10 dict dup begin +/version (1.05) readonly def +/Notice ((URW)++,Copyright 1999 by (URW)++ Design & Development. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def +/Copyright (Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development) readonly def +/FullName (Nimbus Sans L Bold) readonly def +/FamilyName (Nimbus Sans L) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0.0 def +/isFixedPitch false def +/UnderlinePosition -155 def +/UnderlineThickness 69 def +end readonly def +/FontName /PYRIYB+NimbusSanL-Bold def +/PaintType 0 def +/WMode 0 def +/FontBBox {-173 -307 1003 949} readonly def +/FontType 1 def +/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def +/Encoding StandardEncoding def +currentdict end +currentfile eexec +d9d66f633b846a989b9974b0179fc6cc445bc2c03103c68570a7b354a4a280ae +6fbf7f9888e039ab60fcaf852eb4ce3afeb979d5ea70fde44a2ae5c8c0166c27 +bf9665eea11c7d2329c1a211dd26bb372be5822f5ea70d99eb578c7befd44cdf +045a363056e5e1cc51525ea6fc061dcebb337208eff729802376a2801424f670 +0e7e6397b28f15bc10b40012b0a3eaeb2693e8f7f627c4c9c7c6c5bff105c1e4 +1b2b9e8f09253b61177e95ea219474796072f4b363fd772dae3a9d9385cd2163 +c2c8062ef9af240bc02404e5411b401d68ee5d983d33df8a63b6da7ed443e71a +e94a32ce1db15d759113b684bdc92cb4c920e35cb677534219abcea434fba862 +2fbc8237219af7943fb467616d86b4251b350647c43c8df74289646adecf0367 +7c838d720affd234259e947e6ac432993323e8fc0b1c7609675558ae470b19fc +ba7b5ca1eff86dfe4d9ef0356f5d57d03f0b2d0f449d6165b92c78c00162b164 +648ca123b1ffa8c2bcdf125864ccc81c7d58f19374b71dcdacc3c43450bca81c +364753c7d444062a98ce202aa990c652d540b1dd09459bd4818f7675d21cd2e1 +45a0d2670c3136a6c56fed36fa640520c0a880f954cf4bea74789d14c9b7ca0a +e91f4ece020bb0d3cf1890cb79d94675c25c7ca667199195134e70ef0db9949a +416f0a0443f1191421f2323202445f5af44871eed6956d3a3de21a34e302d41b +d7eef2a4023a66862fef89ca6386a8e47ba55e6f89db590cc810feb27b68238a +205275e7573968693cfe1f8a60b5af3fc965dc05bbac5bbd6d2ef74c4f140423 +9fb13eda8457a5b26248ca5ca4d3f896b0a93b69a9045b0adc25b43df700e90b +820f28307cc6f6ff2fa4a06a8a6deb8cba4cb0d136da07593fabc1c8ba1149d9 +1c422f461a429ece40b7c90417320167d99ffa9490f9abc3101f2359bef6c6f2 +15c5585c8733ca06a9cb793d618247757063ff41c5fce1a209ea5a138777dad8 +943b73186bc17e03fb06ba658e5b3305e39078f5de984bfe093ab3d782150e2f +8545c9601bd2a531a8196e157f8f18017c0331881abf07d6c21931fcf9b81c51 +be05d2ace462ab8899e2929f0d821eddb18e9887cb7e8e3ae0beda34ccd0428a +38c4429417cebce5ef4bebf7f64eedca8769d004d2432ded2240b732481a6da7 +458cd26e4730c4aecdc1078ee3fbaf6cd275b426bbca2d0cbd42eb7b100b1c58 +f043391fc5929fca7ccb7d2188b6cec6bbdb78079e36d67129c17aef9fa72fa7 +5357dda5167e3c0ddb4f9266f3ef69c2ce9b6191ba911c1fc740549496aa76af +b86e4fddc0f31f92595f8bc0bdd3ac613b16426d722c0d27822944899572bdd7 +96d248b1adba5ec18a7f0cab096e134c36b2fcccd0b2104e43b2123936dbf7d6 +e0706616a7676da73a30a36cfe2231fba5e1fe69952a2f0ac15145c5cff411a8 +b57db37742efd6b78096d0fc69fbcdea39cb05d034f31c23b04ee90fcb4484ab +2053e8dd69a2eaf120a6bb64bd55409ab4b6a6e92d305e40974b0df80009f4d9 +8fe9e8aceddb346f8e75941c1189aeb685f4f02d20814ad6bbe3c4364bd1c64f +9c1f111790dd74d635520606a6bc978b65ccb6e8bcfd8fdbae26ea62e36d0317 +5564995f2a07393255d7c3450303f5a26b783afa95962e9438fc3b10239fc8be +7809f48340aa9a61ded2e1de62b8ece240dbd1dc8be3819ac3e9aacb6e165923 +4a264036c6017b46af959f7e574185e66a3a161eed1f99b8496a9fcfac13492d +fe3f21bf1c0c1dd432fb523701060720730e9f51b76082ef4e72d2f2ebae7a00 +ecc0e1a922d6ded5c4f0a76eef3f6e157210a3a46a4a30114f032ba029d8207a +5946b8242fc9b939559654b5c9831eab6bc2f1a8cd2779f95698f26bdfe2e421 +cccfadd7e6684364a8ce71574f2d675239e404f754237da4cb564bc7b23d7159 +5b1dd8a0b62d6bc044fe0bd2ea98458fb2188b8ab1af6438e9693ebf939c7c9e +db285c87698d8eb206cf58d89a05e74a150ae0f0f0300dc1b3bcf1f3d6b73bd4 +70e604c23d313121a4cdcfedcc834feec5b1894e5384979966f496fea5cbf1db +7f3645abc9a5e9fe04f056648f8b5882a5399fafad915207a1434b7184b48949 +43aa2c3ae059f96905277ec06fc91c4536efe679c6fa6e71167496cc0d2f297d +d07159b01a02731e578879fb16f9ffd84768207629ba38f902230a03fc844eee +f9fb458929cc8e1c988b486e9cdc3d00a84de8bf078ba4f1c73cf88a2cbb20a4 +e19a8c02d1bd767103c08b8ce14162a9cd99d167fd5cdbf53bc39fa14cab520b +2e91ef7a2952c936c9825e30e3ed350ce9ad799b27b1091a0b2f3be2208838d3 +1bcdb3aad13a1299bd93b3f1a972c04f117f05bd9e5029b6c799eb25e3e98734 +a0ca4a814d824ee4ca5383c6eb8c6c45882289cf2a52934fb7764f3556eaebba +2823e5007f83f6a3d3a6eb0f7fbc3b91320de755745ab44513deeb65d6d81c0d +838125bc1480d494b8cdecb253a230fb950df5fd1cfdf3b8b0c56aa0168b01aa +a690593f22c25e6ea9d2de70b8bb93cccde841d2b923b4a70c7cccfdc1c400e5 +d3d71cf640a201397f09e13d27faec5d041b9d904467c4c573c6fb1820a55c1a +8d0ec1f6ad502bbda597925ab353429a5bbdf3df01066e5cb3c2bf2d19e7df4c +285766c06ea868f915e051139ecfe22ac9b8466a5da38e4e2f92c01428ac9051 +4930a9e9420c49bb8dac35d2a7e9846b0c9c8db992bd5dd95fdc0c8d5bf2e7d0 +baefc4ce8fe265e57b7b6c8c91e1797db85d90eb1888170744db916ca7e353bc +4edb9fc4a1d42013ba275d3efc76259e25860a3549d104880157db843cc75fcd +5a14800ab8743fdacc4c5ff064cbf3ba6e737833850e618ad9674d0fb01918e8 +ba87eb21aab2c494c6f6ff275d1501d78a9a97d2774ef4d5fbc8032955669b04 +69e354b9984fcf4c0b890e4e8a7796d3b7b3855815f5565b13d95b139c32ee02 +4a2057235cef0b98b1c0bb84d64921dce789c2eccf58364e832cc2bef739d807 +012512769f57dfefa384083415b668285db3f6f9e5c850205dba7c66b2da0280 +f771183b302ff529a691590321a6b06dff8593a28e83a7c66008ae45b2989da0 +0455253031ed2da983e9f1ad6fbaaf85035b4715cc1525cc8d7f1a3c0ec40f9c +9eca905a50a0f4b1f5db072918617213f7863ef202c0adf926e3be1c8307b571 +2c94daf13b6a659d0f613cb319e8782a0a2781b3a61227424ff5e554eba32b55 +de5bae43483ff916e37a129c877f10f7c8c0ec1fee0fe10b3fc813d976e6e54c +8ea8aeaa179727d3335f86662bd318260fbc314986a2f97f919ccd564e001903 +eec90c13abbf988114cd330ccd7e9fde42e218a9484b565a0cd7e9c1807ada0e +e6a7f916c5a38d64dae17faae3e84822e6c63bf32148ae3dffc010920509491b +424d27fc1970abe5ac799936aac46c4a98cf4c66b3182e73df72431e53ab1f36 +460e6c6a9b2db27e38eda8972835ba64210b45dd04a778d59c5751b8478312b4 +38012796f5a8be056c8e3a9e656bfa909f7ebfb7f32fa1ae99dc291b0f002a0f +8873351e9684adbefe40d607631559c78f5688a708160ad3803db743282353bc +20098c6212dfad417f106d92527506ca0c9a8864c1eb61997dfedbbbf1d052d9 +81ea593f2a6c4a90676aec9354a6598436d1de7e15e4979344eb976a917471cf +c85e52ecf3437ebb4b6f8e9b292b7db33be0a9ead500b9353f3f367ceff8dd77 +32b67a559e56ffa3b5311fb52689c1e296c01a362a5c33bbf54b84624f2373bd +2c25e90644683376f03da577dad1fb9a9903c5ee9f531a5f9da82aadb2098e3d +15896c3c727d60ee5de0ee1cefa7e4aa3a5336ad2f1a845d16bb2ee58c50d2e8 +055e3e11272224b23c689f2e7ca0051d10ae4d4514b89483ed8d97c2a77894a5 +640d45bc86b1f66de1fd24b08034e70a443cf1c3ee17f2e7c7e11da524781c7a +75a1f69de55aad4a309e27fc8ae9b1ce1c7d52f94fc84c59f37165e35f0f721a +9d3d5c3bcead85d8150408c1387e5a348d1f0f376b3cc2d24346280af119df86 +b62f46e2ddf46f38db4aeaa456accf3f29082f73e9c5f003d77d99eea3d5156f +2043e9b573fe34694910236ef3a1ce03ffb205406f3466e028b635f3ec5173e7 +482c796060bcb0efae62308e3624c466df5b49b1dfd3445233a03cff1f58bf86 +0a2b46225d1784e91f65ecd52504c8605aaf2a5dca560db5b8ce7eb86187e6df +677c977ab4d1fec4f124324bc896ee7d669aa295897fec0b881221434fae3a4b +1a3a1f1457fca374bca91885e74543ee919b881181642cb1f6c34ff817fa8e81 +18aa5e21c994d8aa12e1fdf5d6ff6726dd3d075dcd056f046ddd86894235d7db +fc11532518f8d8695ae74dfbb769528840e8c30572ad06d6ef7b0ed471db9418 +11ea9cd32b4ba6205b5c198bd528b06092df3f50b9714fc1275aa5105a3a7422 +823d4a30d7fd19f77bb2cc4c5df23202d6a74092a710a9a855d8059031ec6ec9 +4d4fc86b37186c46a5cd183a81fc12a743c7168837953d2b5202ade986b4b00d +86e41a88fad5ba0d91c150f4a7c396a02aef1ae9b96c0cea83b3306785ab3ba5 +39c49d9f984a08a9e8c06d282af94d87606d5601296456b6a0ef4ea8c88a1fcb +96cd1b1bc0e287adfd1b9aa1a8c8a7d4a6b14ed3b04b1f0532ed5d40238ebf71 +5bd8c8b032afdccd26a940b19a1340b1e93041b2265b8534c099d14f00b82fbb +2b55d8dc64691c3e5a6dd7c0cdc1212d0c80be2f454a7d8613d0cf64ac5bcc7c +64d4166bfda12bc262de9cdfc614d7dc1bc569109bb84bf469071963e5a576db +b19f3e748799d49c30612c1d7fa918d72051db6cfba44520b5b5689c87541560 +292dd6bf1f40f6a5af97c3ff71b1fb57cb36234be973890a1a610551a724abb6 +b01bb5bd1fc5191c9f99b389b6445a99de978b0d81e4baa92e8b121a1e1b32b1 +601a34dbe6cd348e56f59a92af56caa782b3b416958a6f1bb73771f35000fb9e +a55a132f9b151bea59cafa3a1cc72f7cd60952852c53379530e0a6bd4e9545bd +f78da021349902332707106bbb5d307960ea2bd811adf35b869bb210e44a5717 +8893af229268d805262725a0904bcb5ea7c17a39552a1f26283f54ae45449943 +5270b17b9afe2e0c0729e5f10461a8ddb85efc35dc8a32bcfebfdb16a0642e5c +c69e5a25a661cfbd1f3a9386aa2433b68a356f36404f96d97fff817b42a58a62 +a5fcb5653373df412068876f541169bf642bce8458297fb6a6e936d80af2004c +e9a248e1c92fb63b3e53caadd749924c390fd9f542496cf2347a3a429cc25917 +c31fc437291fa9856a7d3b2b6a5644d82e23a14d0281ed4d8f9dd687e06f23a0 +d0e8a3dab5fe6ded172ebbcac68218092f4480c7ceabc55b059877d7e82d2846 +b4f9e82aabc56f397be2c6b67040dc71a9d1f39b1a60c33288bbae4e41457830 +f8d8c96c8dce7c01bc6efd70e021a0c2d160a61b906a3ea551b7e3fe8c1f9952 +7e9583c6b6010e0887560f1c3e19e0be82efe91f0114e726c888f580d6b514cb +a0933ccde04de0872dd0e07b1a7cede67bf9f4e73400d118a6d600e13debe6f2 +aa1d895dcc127c76ff82e579a06d8a3a323458808bad060afc953c2158d476d0 +fe0725dee6886bde038e2726886d255dec9052e9ba886a318c75b8c7a218edc5 +78783ab8dd90b738b16cfb47ef8610f428a4315c703763d6b3dda570cd0a89af +4e6c215ea5395b13a5c1f0883faa2eb2d6de918ec5fef99c21758e4b6bf72861 +b684a28787b63d3ae7f1096b1c56e4862e7f3650884d0803db03362c587e2ed7 +bf5c7f2847bebe35327f1f7fb76f3cf7e9fec9a5c057acedf6245c724a8e754b +d44e028181b75ad590b3989a7f340fd59c3b75cc4a8e28b155b5da0fbf3cc358 +375edb0992206514347924c69ab28e30c707f24199767937bd7990bc70bd5849 +5c335a752c06bdd9f0520c6d8b2f5fffce931b601151b37f1be9885e41864e31 +1ea0f33e17fb4b844425ee7de31d839ad3a8609bfc9e393079b9a7891e17b48f +2e5fed17943313afccc55826cc0144c2e7ac9784261bb40d51bbd4467103f432 +865cd4b821dd5be8fc760171b49b70141ce2042376e879013edf8180d185d988 +591f9084536cbf97816291ee77255315987422c2c2489d209d78e0a2fd3fa71c +28edfc1577db5c080e7881848222220a63605f00205c205b35d0a017013ca099 +deb71a9ffd511549c61f9ee36a63ee00b0610d1b290e073b8a067dd91bf52f9c +ab53a258ccd29d9220a659e44717f84062d39dd554294996c46e69608ca111e1 +088494c6c3c0b75cf06c2b39a08172700b35d1efd0526d78f2ca5388056b02d8 +28962b456a44b1348bc4c199c2425217cee4297873ba2018259ad02cdb518b24 +023f4ffc5fd7c2b7b022d8f61aecd1e97bf78c7d0448611c0af788af2447d5a7 +b66b496dfde8522f9dc0ff8513baf8b19b51256da57159b87df032545708fad8 +0b15a0764cb951263a5008d1a61a1b69f171a5d7449f1c1d2cba92e9ae340e13 +ee455edc278caf37e5733a34a5c1b2206833d4ec3c41db8e8c760624c6031550 +7124f71f9d18399c3df46c5023a753a08ecc991b61acb6ad781cd9c258af17ae +33a2f8c5a86b5dae8ae1061893bdbca4e76473fb073cc9c5c3389e525553a879 +16c23e3fb51d65f3cc3bf3e87f97a02eedfbb928cd37a770e7e7b5413cbfb0c1 +3281f30eac6290a85ffe8ebf68a7fe77b4a68982d010a2284051861a35230401 +234b3278bd810686b1ee0c63104adfeaeb7ec79e0a4fae757018fc05fb12db3d +81e0400f7760b46fa0ac5f9e52583f2af265843cbb2ec1d1392ee68c7410c9f5 +87351a0f3247036a01080242732f5453b54a88de2d7515b5b570d94bd2b97f2a +d3894658627178dc90029c8e7131855b422c912c9fb6141439042b1df9f3739f +063d8d054258cb1c9cc893aed8097aa06fbb7e923b3756409c61b7cff54c2c87 +51cc2f11c2b7bc0be6868584f64bbbc22a1e0ed325b6c2064cc0ef2fa8acfde8 +6fa40b544ab6d2c360b6786c29b69e80d20566e1e25cbb075f9a687b428f4ed2 +10c028936c8f5e7308d2a3984290d96e5c8df5c959a563b4be5b7ce15c24d5d2 +fd6dfeee85e0e9595f52ef13aa08f52db73e858a3932e9e913f5ba674289523d +0eaaefd670f3ba4fb5a0295816fcfc042f7141c64ce577b103558455dbd0852b +730b2acb37b3115ca4ff017602f9428879e96a621a760e7961c006801c5908c5 +f291981da07820a11aaafc3f4ae613c7cb4424b0e1b797094ddd88829d5d4eff +d8613b50b2df38eef34ad0b05a9f13dac5b3c31d44c06bcc58d737f7d239ebe3 +eee1a4f981b35641482b536ee869389888c2eb28b56a5d0864a7f451f7d362e3 +d56ef1ec01fc6eb85c40c78d791b16aedf904c7d75890bf99bfef9783fdff55d +ee19cdf9e0217133b8af29fd87ad09382b8f64a6690f4ece0ff8116d44bac576 +be9a602084c63bd4dbf56354dfe69300cfcbbb99ae3c8226d02b1bef022851fd +896d83549c594e8fa709d23465207626632319b253dbb32a74155939d9fa0631 +8aaeaf9c26c04a55e1fe935fc5d21f1d798107a625fc25cb90d2ca72c31b3eb2 +c2aef7615eeb8c7f0e7f767aa672ffc236271f98c01bf41acd72da9d108792e4 +66ed133eced633ba0fe7503aaf68ebb226ed6d0e18561eb03c9b9763680f9295 +7709b653d3940ddc7703da6c3fcd893ace04627cc6bd92b65b80cfba4d0a50c6 +d48c5239a76bdaa4319fa9f0382e5ff6bb51c5a390678ef4bcb6a56a13828f32 +fa51ba7bd7d6a11405b0873d4e96b93fc693f21bada72f9f257d89630711cca0 +c3a78e2a0e5735617e77a7a77881b37d77877df4eff9da9d465239f1f2dfb5dc +9351a5dd8216e98c15cf443250b85be6a463526d8aaed42fabc1cdc095ef9e42 +8f956a2abed2cb7fa127f49bd2b5accf7ed80cef4fe96fea42c0ed4991bbb734 +596379a991607836c6ea74bbc359ecf2eb52d015910b847534a519cfc32d5216 +9510940a9ded08ed2a83fe52ee1275b05d19666994836add094ad38cc0a3e081 +bed96e0cec2d8e17d51bbe3a63a34884da909733ab092c9ce8d8e411ca3b2831 +a022e5a3fd1abccb902647e484833b8181d1b9edcb5448098e13b5ad289c9aa5 +8e4726f0c2df0ceb089401871c26c7ddfc5d5cbeeae249871ac5604056b69e96 +3c1bf9b8ce006b701c9523b5b9b145be6f6c7b9e513973df94cc2d37694850ec +e54c80d2ce79309ce51515d2ba0d44855014654d1a999cad1a5e9dd53a34e44c +9cb32ea91176d5c3294e3064016e8554b9b6c6d2e6c03b4e655bf2a7957d95ff +01cae1dc020e577abe5775f656caf198f1073b7bfe06ea127ba3b1edf4784917 +51d41bea93204e6ad3aada6f2415a8bcd5c987b6629874253852ca417bf6a259 +27b0e7f34e0ed0f9dfbe1be2c64d805c2edf0bd62c77be4224613f2e788c56eb +0dccd0a467bb30d529610944338ea0b832d3ecedd85ad4da22ea2b47e799a1a1 +1cd56274f7dcd9a66a32d8509f3d0eb4c4a160a723a9e71f504da5549eab101c +70c73efbf1ee0805c0f8e394f94f3e6623eb2fb5896563404fe4a7f0d47e802f +698295ca19ad813ae552e8dce8d6f73a7e676308a07f230edb99902132ca5b6e +0e95558764ff3f6f854cc29b338a5e1bc14c9468b5528f5b5dc8bcce69bcd0b8 +e295f3ff96dff56779de49a1157c7d1fe777e3a94cf95e3c707d6c1fb41b279e +9abf7b4077fe611a1669c689c1d9a81c933e8075af7b5b440c24318b26a1206e +92266a64a0577abd20659d83fbc433621c7a01f74c6863d43b02651ea96fd0a1 +e1a553a05978a4fbff7d591254a5e3a2642c0eec9b4a0988e4aae449964323b7 +9bade117a3ce68969f62944d027dd0bf7ff0f73b0283c8843e9a3001bd096baa +f61833401353462890af71b05b84b2e8a8a3bce954febceeaf5c10ec704a68ff +24364e70e1749dbc2b1299887309e014f82b805c37aecf05fd413220403e48c3 +3cb49d0c265ec2511211833f8c475d7bdc3959c3378597773f02b5d41fbded8f +eb58a06037a79c3424e56d48a1cf82672026b3122e379a0012322a325bef16b1 +f95958c7b22cce273e8aaa1e8e40978abf5626000a2563577e164b89e24e4d06 +483f503454a37fac420c7945ad53a6c102f1713208c99ab6ccb0bb3e50a70b6a +38b38bce6444a7951cd669008776a1720790b0b6722be634f90120f42e3b5cdf +9007d9b8fcfeb1c2042367c5f7445e69bbc19cbea5b305b1bca2f6398211ca07 +96d5bd57d23639b1a7d7a5f50b609dff3c7622e922714dffc7dbd6b820460c67 +e8ea1c017e57fd172fa3cac1678df44f20e718542342847e33698d382ec37f60 +21b7d901ca384beec87374854e4a1372610ef8fe5c69a141b860b5a9c51af0be +8e33cd57dc6f1d2fe672e72fd0f370cef74a02fef6a0e6303b7445efa72758ff +b98b3549de42d525c166c92b652ef1e71c92b0ed3c1ba2418dd13a2d301ea894 +7b3d54d469676944a58f147851fcd8500747899ec3bd885f25e1631a3dedd10b +4eeb87c74ac62e316d2ebd3aa0ce027e91b39450ea3e30cb01baafab02ed0567 +cd83c482d6e92d7835fe387cd6c050d8f4f2f64b95fc44e1101d89e112b971e6 +61d975a98183617bc942f425b837e4e868136b17ecde0e1380ce8a52b95881da +2bf547a37f38c603e43ae53f32b5a347e4b43c0bb86d8aaf447bb5f4c983616e +be1a48c7dc636242f20e876baef484506e2888f0913d8b76b1086b60409a2a03 +e82ac9970d6c120a6621bd68250d88e95c01abb861af559132e6d9b8f5abbb66 +4152d65779019e678cc86909e31bee3d13a16d764998d94ae5df24f02fc8153d +72b41953605ca86a99bc3dd05ca620e7a28d51beddff28596ec8eb878c09c041 +74baef8d2fc52b3b0c55e95b7482dde018c706a3fb83b945d3df90cffeb1380b +09c4576040668f537083afc50a1e26d28c4d58bad52b17964871210ecb2f148c +daa07db5d3780ecd1635cc5d5dc23867a13e152872c78e20b95f11a4afb8508e +813f4c580f80546b2d5dcda546a6fa4b28a906511be9ae09f3adf926fa237825 +ac9f250d275294c5f21466af681e4e61ea6915d623c7d48837d0bbfd7f893a2c +d347cd7514ace7badbbff683aa9c6eef46d1c830afac64a9f64b95a6fba4bc48 +a33135b70cf12c2eb19c2af6a45b9be09619e4b89f47ef4b9d3d234466822c1f +3ce559a85fc52ac8aa947f981fb5fe7605a373f5484d4929932590eb79a504e5 +ec35c263a30ab3e50ca900c2488baf5f1c1c23cd42d6401bfd7b09172be16f1a +df93f41ab0b4465a4f1e2ab556078dbe76729d69434690fec8f59894a77d3b8b +bbd3a87346b6706fb127da2f6b458208befdd75d68207bc88ca1f2e36b65d170 +922071549c382790beee82ba0dfde07d7d5f58ebd02b19feeaeb6aaad59792cf +461d467665cb3a0cda48058fb5181273c8632075e2f11f8de7181373a9b73901 +a816cfde3e2029a04b1139eb306132f989f4a2e85cbebfdc52bda2e88bd8d1df +3f331602fe0fc1802abcb35b8e6dbe5bff9740a4af24077a725d17660fee662b +209db93c54baffeffbce92a9e2e696d5f56f5d7c81b29cd00a59ccaa389183b0 +ae2507f0ec1a9e224097be40e0db4c8099a96a858425c6a680365704f39a05cd +4887bf94f49e4f8efacdab96877a18272900237356ce576042dcb16e5851e1b9 +4fa0ef754cc9d84e91486d771871151a5983f158b7e05cecad73ba064c258397 +cd00cd6b8cecbb898c5d4609531d387ebf15a5c38b80efe629bedc9314736e90 +d4117c763f18dda7974d519ef1bef9824934159d0fe29edaea2173c69c56967e +ff9c37eea1e8b38eaed338699c6a3763c6353dfb2584f6da9923ab74b18cbe05 +278a5ed2936b193c75c986e8bfdcc63904a25ecb4a04e998ef8789e9c3ec618f +1fefe74fe5a23d368b563579e318bbe956f29d191748ee26bc883bec714e1f8c +88c98dc012b95385e894919f1de5afc62c9c513014d6105baf24ecaf88275909 +4d13079cccc3f103d6751b4f79b785577686abc760a6c56bf34db0f2ac3d0b82 +ee63f9e750c7790d7a3a1626d66e70d26617459a8103e08b6f14af71c017d3c4 +e5b4450986908ec345af9bfc4d650cf35f337026ae940513a9b3de95df3e16c0 +588a59a7f2f1d5e2a418410b5e2fcb4692998921834fa44f30f2117228005347 +9a3a82341434ea71f82d87e1bbcaed725ede9f6001ae4c8651da9afa36b3e6ef +07a8b311afe1bda98e3143c8e2417fc188bfd48627d9b6aae94f510054dab99c +12fa0d5d73069f48c86391d27e37265c91ab1c06ce4d4bf0af63db65e16e783f +7dc649a88967284c9d9fe861add619a3ffde0a31a5719bb456d1ab8010ccc8ec +89615ae875db7a321398ff923c088a6ab51ffe2fd21d3541474d79f07e536709 +46d1a8c65e8dd6ba6f19410b76ee7b5468462b9aadd9f8ddb68c32b08b0df0c4 +f3b909fe714f453bb1ebe914752c5eb5f68377a82e5d5b90abc19402bd589b43 +05f905efc12878733902c54391c267fd81aecb8cd692aaaac3218d34a4c1612a +5aa9844d171e6ebf94f4d8900236e8e27c5bd7460fa1e195c1077da5918afdc3 +90abc6db247885a42158c3cd36ee89d82cbf2471c6daf51120ba3f6937d537e9 +370af7ce73f3b50b742ade8264df9288120dd74094a064909c00764e9347d2f9 +a3f92bb53d8263053a3082809e04e9bc7c9f3b8a7c97c5cc1f9f886115676a18 +cc04c656aa33535e5893b8db3ba5d627f8810048b2a7a28e6d1374afd6af6980 +ace96ee05d890339773f6dbdc92f2f840b50770213bf6188dcdd1bad8d527e71 +9692ab1dfc47e7673c175a1b9841d56e2e0b30e8685b01a68ce561bfc6463a6a +d34557d05276f7befbc1fec7bd56a18bf0292cd25eae57450b3b590e60181258 +4b35e2004e7b1e27f3b26d7108a03c94dea662b7342e38f8300adbd92261809e +bee8ec971a7f2f59487c89357580f9aa8145a1825573f037a0ade5b98be24a86 +530435bcb82e17054f67fa873946c732c8840b9eaa9130bbd360ef27fe72ecfb +b421627d2d52578373ca7ef9fc6f850f4b7f22e6501378de0a9dd56f5f5815f2 +7ea81d8ee3a4f7b98e59ea1cb3159f5816fa703b18f03c5b0aafbbdcc979df41 +7258af2ed57f7da62871c0efdab55fafcbda5fbef92ce65aa0ff37b92ce6c953 +a9d92a8c6e02b8a1f9a9f0c66461c5a62097e12e9f656c87ae283e6f3b63ed10 +a6a723316b9beb28b62a55d372b9a22bdc669b51533c5690e593f2a409619b2a +d73655a40a33e83c65e66f18a40c8e77b048674fad760b9a7d86621181d498b5 +59707d36440af3e015851ce43cfad5d1d96e9274ad714ef46cac1a02974245a8 +d25d894caa256c320af31f954bf574dd95bf32e5841333063d32709b93b009fe +e680d5b2bb5f95275d118a085e98506d0272fd1b8220a2343979bb1467f9006a +1f17b2ae2941413683c3cbbaa1c0a3aa55193d46a2573f2cbb8b7adc7e74d0d0 +135dfa18405bfaeda37f3d4787a965192ca64e4462a0c701de5c361088b3319e +7b5d19a14337068661abc7c36002ff4dbe90e7b655b8e06bd70e283cad1c5d88 +de63628c638083b303ee6b038836893707f6e1121ef56292a75bd9301d987ae1 +ada2acdf61ef74f2b3dc4f87c6374254f865f6e8f6c0933c54265e9a5cc7ef62 +432baad5fa08dd485c3b1d0e75ffd5180e99df967b85861d9710ff294e93cfc3 +7ba6c006164690c10339aae9c1113cb48687672e8a2dd88ea9af6d0cae13ac05 +9b61095b999c87bc3c80748fe6722bb76818b2339223dc051a4938f435b92629 +4395dc3d2b9b3a0e370363535d960735fca855ffcba0aefe767732f7991c5977 +46fb683b9a0c11fcd6a3eb370bb56d6611e7c20dfa1d9fdb3b90ef31bf0a6aaa +d8bee6d7ceb116373e74f072d2c61b646f0da308955829be7578d1909b03c4d9 +307709be75ab3d72d0864af89bb713da0938f038ffb3459b793d06bb37d6efd5 +5d4e755f3403c32c28201fa5f979f51f3a9d4c521480e58ccf06cc60a056a5b1 +c48f27872ef36da126d580ec0520ee9d252cd27c207b6a12b27b1861ae0debbc +21e549144604b277ac8e7b4caaf5f7220d67fa9a985001488c128e1a4c9ebaa9 +de54a13cd4baedcd50653b73a6514ac47bb5411d8094854212c9219caa4e4c7c +447324ab35edc9ceeeef505fb71a2348c3be2082fba20b8ab572bf9276e84e2b +0b328828eb0c636750dc104e741c5df9caf3808a061484a23dd0aafcf5bfd1a7 +319c50d09cb55d73c87d3ab59e74e29de58723ea32cb96a0b497e2e530b54b9a +355a27d988ef4387d8260863e8beecbcc27e4b051961aeffcb8475d7da9bdec6 +42d6a55f06ae9af2450545811fc6486c6be309955c53121db95ac255263e93ef +3adb9e07e56b1133c491b550a511204ed55c8dd911e2fc0669c90fd904267f0e +79d56ddeb72895002a7f795349da2137b6eedcc300c1206dbdfdc3a52f71c86b +8141b63c3d33957c66a9e074bfa703ba2344d802028d787878f9fea87fa9ccdf +f4ed49f4daa6e6839fd64c91e60f99b8e10652bffdac46169c413a36e8105d8d +9343496c1a9b5bc33cb5e573166d4097fb4f3f5517b38f9298de2ac6d51121e2 +0eb9f07ecaf4d70c56a5280948c67e506e47fe9d3465c7cd156e5768b70f694c +57c11c80e7a4d1417c25690197d058d02216a81d7104ef27003dadb3ed10c742 +4b03f54aeba13d17f681fee3a8797754348b134d89572a2083225178a9db4466 +ababce914cf2777d3ae7effca5f4973eb2945672c0218c420173d8d2fdb8d60a +a1b40773a74f904955e7991bc973d12eb5bffc4dd0032b1a1397cb5ba3b431cf +92b76b1f7bf1f9eec8389e525553a8791692a9a9eb495822684df34bc5209953 +1b38bc4875beb62a391a8e0fdef5b0ad35190c44c782e374e3ca17b9f5e2f5b7 +c8566acd0df90ef22b50100f501a80c17a32ef4eb28da320c20ff407fa116404 +aef81d37037013406eb51aa024605e01257fd78c625bd120d4bbbed7bfd4f95f +a3c3088a0fb237d44fdf4aa0bff28254063416918e276e7b68c545def20f896e +509cdc2c31b65668200637bbfa587b547b77f81bad98ff0b70805d9c6fd17abd +f107e1d39d98d9ba1a7bcdf98ed607a3770508ada6bc25fcb63f5bb642a4e028 +bed525fcd1a9dbf1e1520c5164a53c0ddb1b3974366b8feaaf766f02a4085f57 +948854365bad4f6cf18fc871256f9ba3c60a79f3d08617f6a483fb6b50ef2dd5 +0755b2b824dad8935247fcff268b7cd152cab7e7a876b381491589f3d4c65c50 +3353d07c94786db7346cb89cf5350b585cf890fde7a891e7646e5fb912b71db0 +10e73de1100848dd1bd100d0daf43c4bef2b43440513be6281ea0359ae0be4ff +a861b07d06a311b97028daf2fcfb14eb8e8f713bca854befa5a46172dbc0dbd4 +448a8c20ce02a71d33457d4c52704733b90b005b03fe89fa90b73e747f273118 +4bc20d38fca2e51eb0d5bd5454a23e0fa6616a330d61e5a487aa516daa6ca1d7 +b8cfc260bedbfcdfd3d3d0c115359c73a67c1921df252899298bc9015a6c96dd +e70e6dee29597cc7c111a565a6877ec4efe425783478bd79ae97b5d1bac5d10f +5cf77c6c026966155264c7ff1dd30028f21bfe0b7948edb1710f30ee09747272 +81aa09b166177f5e507ce6a09a6368505a1d7b58d5aa2d63dac1b073442be702 +9b2ba6a5a6073bb8aa8c6f741e1b135a73675ef22ea810435f4b1a899d180e2e +be37106d4db6ac2c01d2d962117c4b6a62b1eafdd923d89cc830c00f4cacf98a +3e02d0863389d2dd73db37d8af50cee306da798989047e47c165d47926ec533d +5e1f5fd0d039ff2fb3e01c61509b3ddc62754cc30b7946c4a705d56f16730b99 +8a40275da604170fe8da1f8d8c5e4a393c701aa708f916fb66939adf2546097f +2ad583fd795ad2fd059e9450c6df7be3a22f36c359ddcd8de44e1106b1edeed8 +65e317c06382f6473e3d15fd731ee92b39d3a3dc42c9107ca046febf2ed214f8 +014ea9efdd078b94dfe6a53e5357dcb99a937583a89b90105349829575a5f474 +ce7519336dedef19083bf6d9312f19c78f09085db567895a10edb5a6cfbf3532 +5cec8e3db206815af7bd78c8dcde6a910eb9232eea4b9e68684be8083f335761 +916fc1f64c649fefda1b3fd499e851cdfa7ad22acd535a04986f35b62c2adf2e +74519f043c7c1864c6b3a9d5126fd87c105f123711b560531f46628f872b085d +ad00961bf770b386b416ca2c5a738ba54f7a7a2e234dd97b2918d007c135aabe +9ba541eaa0d19c216b5a6f245cd33a1666e26bcd5ece41bbd5bfb3aea9511bd7 +da27388e8b62f49f0b4db0b190c5dbb7bfdb1fec5a786bf43783cbecf09d8056 +15ce4179710883f8fe7bf4fde22e8a7b46273172e9a4751b4fdf6ec099e8d685 +32a4c9c4708902285df499de4a6b0e143d72c13b747461bda19f5e3a34f1dc8a +96dd2194b6083c75715f9f5261947ef0eb21c496effe37f407f45c5f66aadb99 +cf42aea5fab6694a64cd89daecab44bcc134280a3614f02c432b98054ff8be39 +7cb464de7b1ee896f798a90377bdd07afbc9394ba931c3fe490d11fc60506a3e +476d86bff5d3d850683942744d651355cb081b39d8d2147409a4bbf3ec699da2 +d79303ca40261fa3b6ab5b17ff331eb3d9f01896590905a2c7841d1f4b1f85a0 +b4afeb0183a61e21958ab3f541d321ac6bc81dafc5dc633cf1f4231b0e4dbc9e +bd3c +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +%%EndResource +/F9_0 /PYRIYB+NimbusSanL-Bold 1 1 +[ /.notdef/.notdef/fi/fl/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /quoteleft/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/bullet/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/exclamdown/cent/sterling/fraction/yen/florin/section + /currency/copyright/quotedblleft/guillemotleft/guilsinglleft/guilsinglright/fi/fl + /.notdef/endash/dagger/daggerdbl/periodcentered/.notdef/paragraph/bullet + /quotesinglbase/quotedblbase/quotedblright/guillemotright/ellipsis/perthousand/.notdef/questiondown + /.notdef/grave/acute/circumflex/tilde/macron/breve/dotaccent + /dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron + /emdash/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/AE/.notdef/ordfeminine/.notdef/.notdef/.notdef/.notdef + /Lslash/Oslash/OE/ordmasculine/.notdef/.notdef/.notdef/.notdef + /.notdef/ae/.notdef/.notdef/.notdef/dotlessi/.notdef/.notdef + /lslash/oslash/oe/germandbls/.notdef/.notdef/.notdef/.notdef] +pdfMakeFont +%%BeginResource: font XDVKOU+NimbusRomNo9L-Regu +%!PS-AdobeFont-1.0: NimbusRomNo9L-Regu 1.05 +%%CreationDate: Wed Dec 22 1999 +% Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development +% (URW)++,Copyright 1999 by (URW)++ Design & Development +% See the file COPYING (GNU General Public License) for license conditions. +% As a special exception, permission is granted to include this font +% program in a Postscript or PDF file that consists of a document that +% contains text to be displayed or printed using this font, regardless +% of the conditions or license applying to the document itself. +12 dict begin +/FontInfo 10 dict dup begin +/version (1.05) readonly def +/Notice ((URW)++,Copyright 1999 by (URW)++ Design & Development. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def +/Copyright (Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development) readonly def +/FullName (Nimbus Roman No9 L Regular) readonly def +/FamilyName (Nimbus Roman No9 L) readonly def +/Weight (Regular) readonly def +/ItalicAngle 0.0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/FontName /XDVKOU+NimbusRomNo9L-Regu def +/PaintType 0 def +/WMode 0 def +/FontBBox {-168 -281 1000 924} readonly def +/FontType 1 def +/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def +/Encoding StandardEncoding def +currentdict end +currentfile eexec +d9d66f633b846a989b9974b0179fc6cc445bc2c03103c68570a7b354a4a280ae +6fbf7f9888e039ab60fcaf852eb4ce3afeb979d5ea70fde44a2ae5c8c0166c27 +bf9665eea11c7d2329c1a211dd26bb372be5822f5ea70d99eb578c7befd44cdf +045a363056e5e1cc51525ea6fc061dcebb337208eff729802376a2801424f670 +0e7e6397b28f15bc10b40012b0a3eaeb2693e8f7f627c4c9c7c6c5bff105c1e4 +1b2b9e8f09253b61177e95ea219474796072f4b363fe05fa763773acd59cb757 +ae119355777a1bfbd6751f24f58ee0133199ed331e67ff4101e33040d6628f4b +77ee87860b8e32a4923e2c1fca43cf544a5eb1bcd649ebd836daecb23e3a986b +9bd8398e690be6b48bd6479823a435defe1156284048c4d49b5a869164485630 +3810995159568b3dcf3734b11a3f25453e0e8b40b080c9aa94e140a58d5ebb74 +7d1e083dbe00ad5498c3b19deb502dc63d69032d8d31e6778af4713c30404059 +6a862aeb8cf607fa52a9348e3fe23c1a0296ddb41642aacd6aacd2c6d905073f +98b58ebd11af774beee32533fa19871148dd6db41f3a8c499f25f37cf3955eb7 +bf5bbdbe984535820dd33f60cfe7c2b44ba6e10879b3c65948beed00a84b093e +8e4ea07e34955aebfd0ed462afc5b4b42c5b8be85ce0ab1b9cba42969bbf8a36 +e2943b1d9b20f6ef3416e226763f55a196ca0d86788a6b0ed38ec5b0124ac901 +f55f2f67306ce94aae5809b2203bbb5a8b185b66b2f8a18a456d028f62d8e17f +4cfccddc0743fb02567f0294ab77dca0b9708b262570e3097c76769bd590a09f +ad1523e3bd1ed5fd8475c0b57b95011759d1a55c70b39970dccf76069cdb9690 +68a4626bc863ae1d579604011354cd3ebd51b54a1ba9789f7678546bdef64c9c +51cb6f654c25578c3b4b7c2bbfad476423ab58c57f48b2a54c9d44ad356d106d +8186a85f8578b1735610f6767883701431f5a2503341005020b639f45810440f +f341eda457f8ad2213058a3369016452185f849ee25140060264a04eda7e04b8 +afedf6924f2da0adf944e4ee346e33735f6e78691634e18c4179f28fdb673ec1 +6a2b093eec51a4611030ffe1d4c1a1456e3ead051b01c94e5d9ee94c855cf31b +b8e544e687f2e2a99fd8865ad44eb929430ed39ac0985e4a5c382e16aa2d6ec3 +3b396fe9643124dc587fde09d3d867e9efde49c283dd44fd33b04ba4eacded81 +b3e7d3f7c09d565a6412ac30fc8e81be8821a9031850579b02cefe615c8e7c22 +61a77e73f5382e58ae160043a5defca7470ea62b90e0260faaf5a97a7254b091 +2a187ace29ac6adfa49c7d6f35cdab93ad32553137363ba2f0dcbafd40fa8ffa +7747eb9bb51dcd01291bc073331531dbdcea7db24c9a0302c9896a1c2cd0191a +d88b33d0b0352b356c93987ed9613720cf2be3b164c6a4a3360bf41c9f178831 +62fb73ae514d9c57675572e8c1f93313fbd1b05302f57bbebaa2e76feefea0b8 +9c83d511164b53b481bc920f40d59d152bb1f5674344801f0dc7e71ca5de4e24 +cc79207c66d0b692fe7c1c258be75488f2a0bfd5c81ec5bd0585986d0c5d4575 +82e9ce40b7477b87facaa826ebf147bddb1dc60788dec671c199d18dcd2ca48a +4653963ca85e8944074c501c8143685306d4f133037fea449b0d1cb4ab3bce89 +04a311f9410984d754a3509f51d89a4ef73ffa7f9f3bccd80daa0a34e0e10912 +b7897005607925758237d0bd3b92ac9669b1a1dcf19ff0864f84a993bf7cf266 +1d1b3981fbc5e4fdc3a5b70bd79bce35c6fcfc0a5aca0006433bc0c120073e96 +dd4ae86f022260fcfe119fd4655c3bf00be48c470b0d86e721afca140fe6bf31 +836d578fdae49d71676c77ebe2d09016e1ab71d7c681c8c0565cff9b73d79920 +1ee2def2f16d65647262f96082dd5c44fa3993d3bd1d10c217ea56b73b38428c +767dd9b71530c5f01be2d2611cf9644c28f3f52fd814e463358d70de7bc6bafe +cd377b48633d0107b05ad2472ad6652a1ad30c39adce69ebde3aadb1c5fcdaa6 +96fa9b3c3e63a7c4dac907e3b5cb7a3713505c5ad53c8dd8710acdb3786a919f +b356cc2695cb227540a5f235ae1ba3c6f3547ff24606651e5887fe889cd8913d +de9f3b04019ce0d724c1f6521925bd4fd8154f6f4d640ff94a0b0b027e483f9a +bd1188942cdff486f1a234fdf8adeb552b7e7e10aa577ed3d559010aea480709 +fa1f644fe5b7ca3479599a7e708dcd3ba33a6b2d640f8e39492565965e3b7c74 +bc8c48f3ea9a6048e86197146abc446788a3c83782f797cd278ee1b740627726 +3e1703246bc561faa060de93d224ed3eb1bf548892bc64806c4e9186a2b276d0 +fed43a3021b5a54530de20db8168d44e1947cce7fa1dc8f7927a591d6798c5a2 +b51185c3e74bb6ac782af6f089a4204b6379298617c8f67e38900ac231610ab9 +79400dfaf270c91679c516d2062b949a8d91bd5c8c1a0af1e7401489ad6e8101 +b9103cb5f50dc53ddcf2b32afa218289e9f1b5e29e5c5a2a0f67238558343524 +78cb11a68006685e13f8b9ae54732c180b4949f09839b935b1f7a944f1d4bd84 +a5074b583202cc4aeccb4b8e18096e258bff705476440b9864e746f18703321e +5d5e2f8ca5e2d07b195779f6a0d6a731116f1a26a484fb0d9931dfaafef53b41 +e56e00f32e3952261c0205afbb6f2afaffee7cc1fd39b2e108841f39dc8df97c +0f776adaf41423b47c551d48add01398dad167f4590dccc3106a5a4386499462 +78831779383abaae807b3b03b5dbd4b973219f2d1d19369889dd72e446ec95e1 +37017fbf85f4064f81f27cdb4f9117be248a8d5a65225edca22e833df98da456 +98a428edafa84085c323399562865aaa8286eb5dc63dad6839b597386e0558d2 +11bc45d66e0e60a86c968519b8b305d5ba7ebc2fad7cb5004559544330668c1a +7b77dc9762baafb4190dcc1aae670824824e00f023c574e1c017e33650e24fb5 +d4ad701ab8d93f0fd91867bd21299867f966e93cd621ec0332fa04a2a691ae0b +179d1dd6364166f94716b69027d8d0bcfc6622a086dbe92198e5c625699d0bbf +a9dee06d20554b4d82584108208ca24d7509c4ea30e71ec44f014f8cd97b8eeb +f1322fd5b116009584559a3b0574e24329aef35d2964756d50ee8a0fdae1be91 +19e20fb52c3437ef677f37b549851cc9bb60c04cbee8d80b6f1442cd8676b0e7 +bc4b2c4883d212135bcde4fc15eff6d20269a6f4463b12c214d99e68f113c5c6 +7c2d25384d8e7b9eb31d79e2c4607421389827e2fac887dbf08a43a5ddbc5797 +797a1fd10143a4e97ad79bd0bd7f3f1205130061a6581a4d30183e71fe80d570 +42083823e3ecdb6d6352b6bd54413a9b6bbaab94a76d12ad93ff99f9433e3ec6 +bab36ccf8168cfb64c4b15987379cc129f6c7c1761df5d7dc46e0996e5588298 +b329b023056dd59f4befb792c4e43fa095d63df49b6e25f821b999b56ae05919 +16346777c2579ecd17b5a87f1505f4686ba2aad3045cb414cc65cde98b92c76f +20a9be4a42b77e077b9c00eaa3914709c3fc1a16787e639a2c7fd9a30d9e8ffa +1d5a900dc9cfd5c319ec34570cb758bae3a342d936a30915dbd5160922aaf241 +74c014836eb17224a681c1d7cae7fe0d0627bd5af08286c59e2640cadf9e33db +6636197d955a073214899ae76156146452d063a460fdc5a82df0eafe9ad88a24 +905f7db7dc8097c0d9b0f9319aea0aaf7aaed4a85c93979445e8d1e5a9bdd3b5 +4d74320a1b797ace38376db0b2f6566432b8a90ca4fc7842b90623603f7aa2e5 +a2f0298157822d42f334b8f9f80fb04c36bfde0eb1187c1b15ad0666031c5c09 +62bab12d2476f696939130c5b59fe70b61320e4510be29e04f13236cbcc78a8f +93bd11c24fcc4b45405a13a65ea47c13be1f82075662c316b4de144f89beb6aa +cfb84f0d288c67d488faed8dbfff92be9a24bed443e9db3f1deab63ae94eecef +43ae1d68455826cb3a48c456d7e9a849a9822c77503e5b9f029fe70168831ea5 +2ec0c2c4471627fb5f2d03bdf8726bcce14a8a162bd9bb26137253ba8b581941 +e759a7ca7917d4244da33f45df6684d3dc361bda88b4a0a02e5e55a1efb0d851 +b4e418bc6a0e213172a08b7596b1fd93aaf111f2778006da546ca1db88d5db98 +4ae9658c1d31adf6ecd3180c19791c85a0ddd1547fdb800479a6dfea56ff1e11 +9b3c1dc388c0f372a44712954373ab66cc420b2cc80a92c2fa011d91c441bab2 +f54dbbea462e186e0617b2f3921f1aa33dcd2c1c5eccbcc37dc50bc29d0ffb03 +e45372aefe3b44d8584035f3bf5ad94459a65fa170516c271b722a2f08bd241b +7816ae887856fef57292179987b26bbff4cf1da6cd2bb092df2f6ae3064d61b9 +e7bed1d13e534b991610a2c067a1c107ec6b0a8dfa6f6c4c2539c8747ad33057 +f5a9d083a689e34c8ca2957263786c1f78cff0347ba42730544865be79b7c461 +7ebf003f8cec1e4b6af75689fa6f6dcc317c7f6975df451eada5382583a1d1c6 +510ca60fd85e55c6e16ed39a86dea378d6f41c00beed05ff2f9f1a2219e6838c +819e9576e4ef216802c4a913de00062e70df8d83754166a27708337ec6b8a031 +04a426a1c31371eaf807c8d638d16e6515ef0693651bc2dfc870a1a7e340d504 +be0feabf24b5bc879e75801d188856be2225a82eae90a792fb4e0d66ca0c4a64 +a5064e1c9c2fbe84b5d6578c2af56fef340a49911a0a346813fd5da9e694726e +a0dea4f42008ef28f8d6ea9f974327fe71889fe76945b30fa99c4c8c7bd3c40c +ccaa4f19c0e0e0c4cc88611829bdca334cd69463228c2f83e1467125b7eb3c9e +812c62fdaf831871ea0af75efe4c81224eff156fb21bf1a27123d020beb9e1a4 +d72626ddf4dfd474b98694e87ef0691b71a8aa4d346d03eb56e0715d8f6148fc +424cc472407f00bbff0cb49d05b0b5923821fccfc27869a85fedae1ecd60b31b +1c8e8810879809ec069ca308454613df0f673b5516598fb5b822833fe3e0c0fd +1b3684f7a66ff0f9132de78d198fb6dd459c42208ddd13ecf433d4c9901b0aaf +4c8ca7685711deb49d9a2cfa4209a0d058aa8490963164652bbd3cf858e53975 +0af2b20db08bad60ac71809271597b65071e7946d81c02d8e8eac13adf5d5249 +ac0b42f5c602e16b6199dde3666d58abec0c1485ba6ba71086c36481229891a6 +89bd1c4d67e91e5ad6d75ae80420cac489198821227c1ac94954cd0c94098773 +ef4313cd8aa49aacd7d34bec814e77f9aa794e57bd14f678a5f3d9311036fcf3 +d39a94b0b23b982214469f645fdb728751627c28359d6613978a340b2b2ba9b6 +a0304f87a77389a09a36a660cc983072063683920005b2434951a9c8ff375cb8 +17ce6c78b6991ab5a5efd7dd4e8b3171133da1cb44af59bd84724150d09f13b4 +39a1046904d4d3ec3d2a90cf5275a9527f8c3c62a0ae24a60e9e7d1765eabd75 +cdfc9a14c4043fd34ea73afa2e08cec40386f048879987699fb8123ded9709a8 +75b020943bfafac56dcbe4a2101223949b0179cf7de6b550657c91bf3116ee7c +66e23e4ff64cedac326536ca1f75ed1bc7113f0267ea7a26fd44728714e2a1a3 +13e88daf24c9a46de29e3767648e961b346ddc72a6724a0857078c9a2ed39df9 +d17c65b89136a6cc0c954e0c46e9f23900c7ce91ae71d74237ea1128637a673c +f6ea0c8286ef99801cc6d45bb780e21c5a7464d16f77b45236bb9819ed3a8c4c +7e1b15400eac8a99511e77effdceaf8af6cef034b79862eaaaaa00bd02f5667a +c1a03c0188d09fe4d1fcc0b0d3354c880b2943b9666224238db22257a3873b36 +be9a8a55e01165f4e8d3c8eb3521ed57aa834a4f88b97f2fd77b3b3c39ae4bbe +869a24a4714476b3d396eff67982ba0a8f9ac34bf7b247951c0c241a01f347f7 +84bf841495d76f9fb2ac130779145677c799a07678eb8a3ea3de9fd00430d46c +b1b3b6c392afd853df1d0bcee9a053d6fecad859bb9bad0bf186a6196b89fcb8 +44799928b4da77817a8cd1c36cf9515090cbf63f373aaf151154a769cb58704c +2c0263028c641e1ae224235cdb17d89af5398f3d1daf44254089e6b4db47475a +1fc228e0151f244b025e5c14411c8834486e483e4cb4406752788fa99336d980 +a7a6e6f1afecbd87f2c615880f3a6bc21524abd7076eaba6ea1bae0f995fee85 +f938283c60a7a1dfdfc053a8353051b18bd03129dfe6b472e73958d11467aded +ced7829ddf6e7879dced36391a1d113cb87969b0465d64b96b5360f774a98596 +1272aefdb74ea23d85c8af588ae0f6b43ec47292c880217c0ad03d87e1cc22bd +8117ee06e36394a8fa5e72cab0825bc3af8bea7256e7f8abe7fcf57a38e38df6 +b60d783d56905a5d7794904c0cb95e2aa835145062e022b159fa7247af415890 +117a2c9a99674891b134760def15804badb8d4ae414a1410886eff8d5284b042 +9586db6610fc1e7c2ff53f19060e6b43dfb0d8bf8dd94efd5105ee20ae0bddd9 +58176c666d2ccdbaa1a3b0a8cda0b452409c8cf61b9e085d9a9164b7eac06dad +f878ef8ff5e36bbd6414aa86e1d73d211175ab042ed5ff72030b44aba32b970b +917282a1d69f3005b0a110f90942ea6f9cb2d9eb57a43000c48bfc2af2b572c3 +f8387ab21c90facde17d772ed98280b44061671ea4d98e901f33b8a8bf0f97a3 +d87d0c4d81d6e29d895f50c1552fcbef2df93a75e3b0046c794d20229d7eae01 +7f230053c4c2f463020d060b8552cfd6463018b4c03275dea0ac42977b3dbe97 +3d7efc22c9ddbf499f2a2358f6287a8c9946fd16e6e998dc763b5abaa6888484 +c2430f2fb9f2b0ae84984af32ba54cb191274f7b85695f5faa3cd5eb154b0f1b +fa2a0b9ae93d591648d33b6c23e27f9a18e0b8548bf1f45158ba7c171bd1136c +d045e9dd27e4f23dbfe5b29a66695628a87949cd0d4d15cd066916eeddc6cbc6 +f0a5c77201d4cd352584ae70d1b8e4ad2d5278a472d230997c7c03d16cb5ea0d +d04df0bccfc7a277a0ec9516e10134a9ff93b3e6267c5ede4e5b848bdeb76b87 +52249e458b602c175ce8717e89da05ceb850d2538c340ef6142f0b5cf5906f99 +c271b6e5b9e614d64a7c72372835ec4a99bb39a7aecbc41d021118dd56d21326 +c818bff4de332c9c00e96755e71288117c19e3b920c23766f249b1abf4ebb173 +3f9d38f1772128cad4514c4c06fee49abf401feaf2368edf5b4f78fb13336189 +5040b953d2ec56876cc72fdf69ea7692da01a508c2ff7096e17d78e2f61a04b5 +400d9c28610aa8d48b790edb4bd5cf08646923b0d5a86178956bf7940f291242 +1c4f3bc76fd991e36e18d40f813095c5b9165700cf94403b23b2b7887458c4d4 +4a4f160ceee87c7d50fb4ddc3d4e3242d9ac170b060d472889e553c988126096 +dd343532e74b54d664d63141b1eda0e6ffd1d82ce4d084352e97f09e2e05a17d +cd8bed5a8adc08494e5ba8b57ce522758413cbe5e5d74e6d3b251a6567fbea78 +5d838a9506c98691e0ee47be4421a95e6b02e8c66aa06f9c88b0ab94a1a32660 +fa0d8a24f2d5873ac94ff8e0670b96d4eb007ab89f1c77e0f1d1be46155fa2c4 +5930779b70c9a6d559a3646af2b83590b2f1ac3a3f1c9e8d465e145c69fc07cb +5df5093b7cda7f1780def8060d7daf747491b0486e7ca427857946d2f3d0e22e +018cf12b04b2ecfe3accb88e5e52dde2d9118a1747917e6a9f211c1d210b2b15 +8f31adac46b63cc00beed35638a2e8155805bc068a00b757d6f9dca2ae540883 +11ed782d682b511c557ab8c413e95ea8b6dd3a6c12ea9716d670fe4446629890 +d14a1ff76cdb4eb9e2ff314ed9094148bb33db76e4f6bbd5b6ec76aac13c6660 +38b1790d9c6ecf2f33b6d4ece409f012d58a75a1a4ef5e580986db61edcd97c9 +7ae81fa20bd7fcb07053311dbd6f3f73077ddd3949fa6dc327ad2fc056a8b798 +53b22c193126e73803c83fc4b7bd9cdc54c2fb1f6353ebddc027d3925bd32d89 +219a778cdc38e5f9621b41a27cb8fee8ffc1a2fc48ebd25828373b9bca8742c3 +0a58b2473a33b4805383415deeed7197a840f6c39267de16ecfcafe7d585f672 +b5ff6bb9d143e8e615d349ed779b847f2b5930aa83b08792e193d64aa163a090 +586a383d4ef4bc273f162164154d9abe6e68e23078cbbbd0a357a771bbc427c2 +3b6a3f24401e31edd9fd7091e8849c8e37d83ef396dc505f8f843f4ef305c505 +53776af2c088aaaa5a5efc05258cf692b579cba82efe7dd3f3394d985a5518cf +93c258a168969d01842a624f56b4a6e50fde64083aa7cd0a8f3c0eea6e6d9a06 +d24b1f96d34d66c2fed66cf844b490b537561865299d18dbea55e025643f78d0 +2419619759dbcd65ed0ac4a2866c61f37383902b4e1665b2fd9414d348b4d41f +ebaf2a1e4bc97f5497de6237170ec27597c98e6cdbefee9c6a7b106b3b6aff2f +7dbc6ba1b2d145285029bed2766715781b230aedca4dbe0c92945bb7954d9fd6 +1702f5a981dc0c5c876c28659d744803202a5929f03db99b32f776a794afbec5 +3f03ab51fbdf52c98de52fcae577c7ef0a72cb1f4170bffa48734f1df30ac772 +9f23e8541aed00a2cb2bfa219626421f669494c472c88e288e5698541185b862 +29881c30d6b6124b276110bca39fc496691eb1c61432cf296b055401f2f63e03 +22b0f37395a0489a031945a21fba843a881730d3298008bb4c023b24b195dd5a +1e30b76210c17a06095e3222bd39ff2b7f7b6366a173a9e0cb527172e1da2308 +5eb7568000e9e9fa521f977c341e7c4cefc883522696ab5617d6f6854bcaaafe +ccb82352f821fd30f6edbab80310bfff84779899bc62743894dd9e726c6a585d +b4a2883fddf1d1ccb7dc8242c6d0f16d008d551ee9e02cddd4a21a28cb56bba4 +0bcaaaf95dc41650643302346318e7eef6bba6f4fb6eb956f99457f2d2ebf601 +65b6b1e4405501ddedc0d2cce1a9cc7ee6282a2432e88ff45ac520a8155a2b4c +4bfbef1e1a860ac2a2f2d25c1bcbd864001a54be48c3686cf72e98856e8d4e4f +2b3f382c3e3a75bef479a567bab3764282da78b388d27a6dec10e31db5088362 +d3586e219c55ec4e24bdfcd77b920f5ea332d29630559785a900d05813400556 +d1d0721754258799fb25bb59a79699f6f4e56f0e58f6748bf8091d848e4bf22b +728c913b0db74e9bae863413ba5ba04ec732d6f50d838424dd1a47b29e51aaaf +8ee4831f52722e1627bc84cbc737535206f251d92549b8e2d24bc6b3d2cd5687 +9c4bdc972846bceecb47b5ad23df0a82cc481e37d74ff3389ad3535d0d6254d6 +d8ec450fa1e3b81b7be26897b75025a64f480dada26aa777cda828ed66cd65fc +9d02717638bdb88571460a45aaf9abe1b460659f7893c1c64008192e38cef686 +8a076a626165bb53e34766580ea78b2bb63e45d6fa0ec31687bc4f243760d452 +b459dbed951640b1f5083a19705a3384af93eaf503a000e3f2384062bb52559e +1e0d8bdaf66cdacfaaf91636d01f7a76dd5424b7b620a706304cae6fc50f0dd3 +8d395cf39dc796c7ec271721e13b1dcff35f06b5bf5cbb6b2eb908714f4fdd35 +9763585e39484118b080504f1bdb293321cfd1b2913fb217c7b41d7212b1daac +1c4d770cfe91a1f649d760c132fd77024f7a0a4e8d0cfb275f5435f3dd911be1 +1db381c01a9c04645631fd9e1c871c5d2c91ac39a18d8b9dc563633d709a909d +614024729bbb2824c33c216612efe88278d6b1082e18f486631fde76aefda526 +2a194ecb406ec7315a43695256b1f7503d323c8fcce1f572ce5410edc931f97a +fe2671156d0167b444ab02691b81fa57696d07e235dda15640ce4d2a936d1dbc +a0d1f41aff8f3ca1792ac1c146021056a40ba5b30278222286a89825638edeaf +429cfba89cc85ff869cc5d51e41a8ffe937e03744732e3fab250127c9eb21d53 +48e3f6fbfa7d4abb16dac3c45e68e355e43d59c67a717495a6acdff50208c2c9 +7ecc5243915c0ba12e420d4fbc39c5332db7d681e51158af491169d7f7212fdf +47b9a9dd0af18a2c28bf94199e0480f9cd97c2ed0e79a57a02adae4b0cd3c1c8 +f91521a111933abee28bfa1ee0810db409fe8dfa17195a9a7637f180ec400844 +e497a7f9cbafb57866834f37b2937cd71cfd5a88eb86b64a01e33e9a639ee133 +89460417242cec260f151b9613f6aca727b2578770e86b45b395b951caba7afd +94c3442bd844ff531d069b8a2bc52710d341882860864884714eacfe23bc1cb9 +e4823b3c2315c09342cf097030f14fd7e663c2d030d2d71079b6d53799e5917c +9798624793a0f850b6046e7c987f7b1b01b586a83e8fea61486dcbe8b1362ba3 +a2ddf29c622fa55d54800823824af57e426b41b6aeb440da475e13240445d467 +26a6d4518ca92a6003209d30974a40872e176ec005233706148979aa159c2b7e +dcd5136921bb9116855f20b0de9f99a919854a9fb381d71265dbe5375b06ffcd +490b11631704a069a04c0cf952ea0d9c4176d5acfbc48d8a48074357b1b4a8d7 +1a9bff215c77e14d23e09393eb10015a5474701d12005e66a31aaaafcae6a030 +34e2281bec8d06f7b41e9b2dabb7783daec99bc7a3a8dd48e90d36848efdde98 +c09309fb1c506f5a1c0af132020b07afb2a9b3c457cb0f1a66684e043872b794 +534308404c4d7faeb296d9f1561cac5fac91f4b02f89b429212c58c55cb96fc8 +bd812563b864833a0f9fd69422d24eb4a4acc9cb2bebc4ff8b9d8e891a63babe +c423cda2fcb7cd52a04774b3738108a19eeb1208256540bfcea23ba55f4dce15 +e1d176c21f166ddc1c2bb79b75d40e38050c6658a23c416650a1dadd17e15584 +b382a148d2df13b0d186484217ce6e11308856598534befb42a76389263e975b +0a17b79be1c651630970b99d5956213b5da9d41d160dfdbb14de1e25f83725df +ee7b04c5f1eb6cf4914ce25d050de1e1fd701490f5e4d82dd51b28cdd8cce9e9 +e39bba025c012e85b2b1c125c45943798f8b93c791b06f159bbbe9a3ab1e0fde +320164f98cb091b751a57d86d15a0fe812f9a8de5306b3cb033c9e7eaaba9054 +54af59e9d61518b06302c9aad9a4884c222a41898ed8e340c7b0163e5152a394 +ded4c2abb46fa6e763e27b55fad2c1f9c5e4ddf0bc39fb7178f9f5c84eb6d793 +04815fb8fe12ba84b91019d3c52d36febd917e5fc58c423b5c9e09ea31bf78f1 +da64ca6686189475dbdaa3fa111c24cd98c82e2a9f4c768969ca12ab4d160b85 +7aff1f4af235f5127e7735fd8a4e1f4023de13c477e98d7190bf7b6e45b4f867 +38f0c045e958f0e2e20fef19fe492044c0c04fa16a3a0d33dcdbded65d83cc01 +38ae67b6b6c82ce18705e39c04ad8308ff32f03939586fade451f2dc110ab4dc +fb3125e09d8edeeb9c0ebf3d289f9354973ed883cc9df86e126f0cdf91d07622 +8d14814c51a72aaf37bf555a0e2e8ea5eb932165a430a9d0364247f0ef15886d +fb61e13710f14ee5ff73120542ea256894a17034c5b5d2db4089ee4ae8a5aaa2 +cedfa0b8453c045c75ccf036b34d53f810c2a219e2765e0f6b1aa7c7d78dd6ed +27df905f4874e65d79c161371032be490231487d9b877b3a2c6e8a9840e8f421 +7c2a536aa271ac2f44ee7037758b75f5eccdf5ffc7cb94cb100a8710a118e0cd +cdee5ffe9a3cb0797b1015e78da676e14b78a252fe4f86deb0bda164d4058b46 +3cbc28247564d64fca96b4e6f54499e08714982e495918059ef68b396226aaeb +e5ea86f697256fbb59abc1c752d459d585ddeec5792b769e8f1c55c79f9dccf9 +cb52f236496e84fd5e9a7e4e63d037835b976d5cbad20aa538a07fca3e44ee5e +f03e7b4acf304a825c3d1783a46fe5c046e30f75e8935fd323a022161f2636d7 +287b209d2aff608abf3074cba61563cbe724afa0f51b8e2b49023d2165aba623 +aac35969666595b7f010b911eac958005ac45a5b756a9a1b711f79f2d64067a9 +d4258ff5e7b4fb2142de1e561d8d098a11d63934a065585dafb5693d7b9a546a +ec40b879bb5b7c167e85cc4e9df665cbf0ea67d12e230d9bd922af96eb39dfb5 +e7bf1751f575552d9df1da8402ef816ba3be8f3c19b8912004e1da13463baf48 +ff7b3b33a57aed2a3e9e9f145be50f2e84900daa0b996632263af132f7e6b374 +35d91cbcf393cb46649ff8ee35a93b7e27a9bf39734b53cf410ab3f3a2fc4027 +af2c873a42c13aff732acc9bb83bf2862e7da328eecac95b7c0f0bf79744ea95 +363f54a5b19fd37f0282ffc0c1779d733f531ff661381dc983de2858e791ff20 +17a15a90500c579a5f61209d9a1f503788babb313bfb33f3ca0732c984c398db +687dd0868699e20655fa21040c952224811bceceb52c86e3666430e4fec39c47 +4462ea17dbd53ce9feb02d52615b93ffd7928c8f6d24b3be92f7731b8b087c0c +1d51c663dba72b2a6879c6f55c1de28f339676d7bb9af94fbe12af5488d4b3f5 +b529a6a3474e3f0cc46869343243748527080265184bbfb93eb971bdcb298e54 +16030d4076d4402b653b180ca984be40eebf024d2a7faf3910fa14a5545c6242 +fc6d8a9b6380cae5e75df338e07b8784bcbbd5369ad30a2c6a7ec32cf5d78219 +41b18b7aa533b522565cfa592c54a428813751b5943328dcd2c6a622ebd2ba11 +c6d2d65f03b4f419ba4375c714e62974b83a5a5c4392c26da2650e0ef90e5905 +402cbcac72fe007cdc6dd09bab715b7776e327215024acc013cc55f0a3a26859 +2a02a0a9f87370cc81e5c185db2e6090b6b2e947170a41ebd0cc6d71a264f0ca +16eb08e781695fd8d35777542ba057443ec42bf0a822c27327b1e064af38db65 +9233639f837a74efb758b74a117ec8841779afda95ef3f0f916c97936ec16bbe +f2b917a8e8e686aca6930649129fbe9dfd1f8247b34dbc586678999dbff6a12a +c51c1881425432805a253cfeb23c5ea0cdf05c62f99d34aa7f73d90272af0969 +68ab75f3f1ebb30b5ddd6233202fdae3573f67a51662367833673f7ff1344346 +446dcd3e29699b9028c7bbed09471ebc899cb3139284a914b98fabb1d50119b2 +347ed0d201cfd78dee828badc1655fa2c70191b24e20e699454570fb31850dac +38ae12ca5cdbbe2b0f22f0de8ef8b927dc6c54ecf3801e5c2544710a2e8f726d +cf297becfb7a93b4b422089200aafafb934334704c3d384379d34147f7d163af +3cb42599ea902106ca1befeae26d641d49b7a3490f09bf16b8d17c026e40a2f0 +8d727fa2aefcbe4ac82dafeef86eb672a95f413b73858600c7d9dc544694e25f +259b039558da35ba48443e6c931f6cc6ed108e765c879314e532d888a79c1b2d +460204838fb662dc90465032792f03f18ceb654a379648ba449922c9447c00d5 +08b81dddf1fd0304b2b803785ee94ae63b9700b36fcc894782782f51f397ccff +2a1734032660685070d6d5fe94636e6de386bf347f063dff5819b6b8554ea416 +59da8bb46c01807fdc883e15a200a6cedd4b95810da0a805c3d71c6467d84899 +6b88c60191c3a5e3c4dff6863ff024a5c4d4092164792a397b7d390b4306b56d +b002e6533752ab431804dcd2ec8c9cf242efc7b93dd9c3fdb21824068d3abb6a +831d89d241613946e097ce77a82f68c92da11dfcbde58e3450f2830a3a049bdf +c6e9bdff298b4800f150ad3833a612643316cb420af3db29f008ba36a2ef0181 +f64b4bdbb6334233c58e0e68876a6d2048db062b61a9cd020ed7ef071525cdb9 +3880a24eaeadf171b5c077e4de8527b5ed5b7e5005f73c09b2279ecf72e1ec79 +a3e4837d33cfd614e6d82df617f77eab048e71b51b3ba4334d8be27798576a28 +a21ed866fa75cd39ad747a1fea7a57446111ca317372060aacb159ee90e5efbc +dc5fd16b41a5e63363b41f13c0160f719ce353b913d069e4126743b420562d52 +e56b970fe3e660f4a850e8ef45f7262128f936ab5610401756ebeb0d9b5dab1c +8ef2d95e0cbe3542bfe0c6f29febf3f5a39fbd16a5c27d652c4a0c542124855f +4b53071df5537a5fd5bcf653c0578b4e324bfd7587ed10318333382ea137d90b +f0f83b4eb5d4796e42fb7053d4cd9feeb842d909cb67ba4bedf8592c876a83cf +48e4a2f7e92558e57a5cc6c3c6a4eddd68bba96359eef224fd78f909e016c5f0 +ad7740a686e566386c4f000764c8b6e97a1f3e9e98b047f75cad6b84d502c377 +846904339303da4c0436f1f67fcefa9fc0581f769b319c38d4221576b74b949e +532b99ed1cc90a2de4189b346dab2d48777ba5bd5cfc80bb15f0c8d4f478d007 +b84aff3121f7c0cc0887dc20cf195b1d964e14685acd86aabdecf09337ac26bb +b0e45caec8be479279364fb840c6ff36d164b7be25f9f811a466ce04c2ce5a77 +4ee329b9bd773657737db17709d3a6913793de0357bdea11ddd259b5bdc94e1a +bf95d33b8396ae9b26342cc1d2a2831e95939a0ef5f13443a9150f35aac5623b +cbaf6cc5d24d51225c2920e3bcee9d09ca5c60f22b07f24a26dd856f8efec9ef +b184f8a92781ea228c2f15ad9ab1da75002c9b352316a588d00af46a86b73aac +feb16d461c9cf969977681a88806c8e6330c1e9e8d428c91de717fe3908802ec +38abd40d988b018fd7a4c02a20f2f3c18d8364fb18692c310d4d1977be4108a8 +56f807519b471ded405d1e7ed6c02676970c2a1df6cdcda3b38edad9b5cee11e +5b221716f3137083d4a433e6af2eafe4760b0cf8ccbd5c15af998b5d5785a3f9 +b79a81aeaa9a6706b2dcd217ed437b23de309a360ff60ca82a8251be5671a625 +a90de4daee9941d44d8d1e3a19399f13b93d9b567b2ab2f9cf2b71058ccd9776 +3b6a3f95ea470066f36b343c0429655f8f25c89e65074a52cc6047885f4105de +2ceb8f80846530a88228b1f44c73e8cf8ff1e99d5cdcd3c91487caba9cce19ac +bee693c2479d8dc2c8799895e188155502f957b20e26619874cebe43d125f6e8 +638092ae98ef4429bf719bf6cbd17b1f1fd9a7c90bbb6b0b34614b32234a7f4b +1c259e4b10ec72d3a2e5526473e551450a11d8537cd6d3dfc472576307ad3354 +b2a9c24ae22c90aa37b1ac70352969e2aeb30d0fa894724d5e47a87e7319bb35 +7b76e95d7f665952ce39e05815e5718a7ec0d09dfb566e589c3655e87588b6b6 +95a272aba75b07eff8041298b7a1bf6fd1b10c5ce008180940df9f4235fab68d +bc3d2ab597192b0912b5d9486b5c8f6cd5238cb94a0c807f4baabe7e81f072ca +0b626d0a5cb1b8254a4ef588149c84c53d27ca3cbc729416976bf6a20bbed57c +6c0fd85c86dabd7ade406b27a8890bef705bf3c5c8a59615d858ca2707c47404 +78f55c4d6da862b50f90997989ce492d884f97482166d5ddd4eae075395d7be3 +cb0dfed4d966b2fd24c41acb6ba9f1280ca84aa8cf607bf1d2cae3c6dae6871e +c5eb10a943c84b83095fe1b7b9bc3682b5681a850001be80a48a2b1bf22790ec +f53a1ddb50e2325392f118cd56727005b947495ae8ca6e46cab765670ea03488 +39275b5711fd6b227ed1a6b66c02c9f199c8d54b46609a0804fcffcfe0cc8b65 +0f1ec83354d395ae89ef02d548088674fcbc0ac0daed78ab47e3ed00df77c01f +2d0e5967da9348fc0434d71eaf90785c3666694604f48bf2043bd54dae61ea1d +3e2da8efc1ae867ecb0e7d11093ba20786413e80c8f05dabcf474d6d9a1149b1 +be96ad65eeb5b865f4b321de61ff8904a072092910bbfce7bd5a42f10c355e73 +c0890e342af2f2f4d7fac20c846d372877c7b12776b76756a9002723d5ee71fe +5b1c0e5fbed5c354cf4b9cfb843f01b9e378e90e7a56994325c7c447e5269204 +c83b98d99dafc77ddb6a3fcfbbf430f6d0ab8a832c262f879369fd9ddd33b1df +602f5462b9f2b29360f1a1b7d7eecacc4f10f188e7e2ba08005878b1d9c3762c +ab8a29d01c0c164efe8d37328deb51567d5f17b25c11590a1078d53a36bee786 +5813fee10723c1acefe111dbc08b796895f2e1bb190f3da6accd6dc6c884eb44 +ec4d78df308ae7e774cef87ed4d6200bde349c35d7262448f165a6706c33563d +24d04d409c69924949aae19c13d07ee64910d1c29d15ac711fb56e3dd05a980f +acc11d9c08863c32a28bf94eb2c8fd1fa0ee61b939ed944b017a46b681e95cbd +0365d77433a27195df9d20a3483ec94192fec56b9af5c656bfc2924ca0c19fef +ad23207ac6d0169a15cc273d66899cc044b5efca9ef4078b9bc1e91f83842624 +c08a91c1c0d20306b1479e749386cc50fed78f22a27579fcfe943b033738bd67 +db8c4cba7f60e8ebbefeb2ceba747c757e902b70dc09622aa4ba96347b6948fb +3ed5c54ac78148b5976001bd3f0474d93f4903d15a6cd68727714ebcda244345 +d9a4b0020bde3e2c74385736f244206da78d0331de35feb4960d8fcd0ef4bb75 +5ab20087c2aa1da104d16ade37b9159caa0f8bf528b55cc005f017d6823268d9 +b13d199ce47d3c95e492ac8067fc44b42ac8be86b639770a91c75b7f7a55ff60 +0181451587fca8bea1721f4950b3322dd9c8a09cf8e4d2abef3ec038c8302e9a +3194d54745d5798e3b3844696d3c4566b179c98b7adcff4bd2a4fb402ab275f4 +30f2c77eecfb3c473d2e7102592e101c3d38f79a08021227f8f782a59d20cdf9 +c9750a8c0ac70e34d983356c313f85acb56ced4467357e07e23a62ab3fb6ed71 +9f9bf85edd20af93c1c1736b6112dfc8447b6d06ca12202f84b34f892a1a13af +4423b723c13701aa57982dbf20ed6ca129b72f79f77f1705485967980db5df42 +c662f0ed38a02b55cf048e713c0c6a1a85c900acaeaf6d045dc96bea5d45ecf2 +8ae85d1accc9b38a45d6f516078c72388e5337b9c1a2023d086e97e3affd3f64 +517df9ece75c3afd0e3dc74e2ed3b4aef8a8c032cdd70127ec4698db19c78646 +58f9dcd6b98676dede88a1efae04d182ba73475290ba87fdc71cee2737057855 +c9b151917eb5b3cde9f70db961ab5c8a10443a7aff427bae1d1e720a604c39a0 +14de8b45e528237198f086421b5938871ef89008148eac965bfcc850ed7aeae5 +ec3e8e37b9762a8a6580c791cd89c4d25fcdbe778bae071bb1e18257fefe9771 +255f977611825be7f64134c3521ebe7c549741265838ef00f0687ce14c463d97 +884893e5c967d3ca5286b52d0aaca5ada20e778a4f4c807a9cd97f0c05ed4876 +1cb09c787085e213a86b7aaf33acf64552ce5d8c3459c261447024035997ae76 +85d1d4337cd1a1def984e185779b2a0a8a3c8da6212730f96174f4c3b104d096 +3e0e395fb85f918cdd5f98c77daeb09a64169dfac253730c7da4122a7025ef19 +dec6042fc24d4565a1f8a7b37da00d170b6c4be72475544dc73b111c775e5c20 +401ad5b382559c2dde0bc3ec0e46c07e42a08de477b3c07159666bda273e29d1 +8ef5b8e6d514e510d8210e0a998508c3062ae26b504abb3613f3d1f167c87bc6 +48308196ff8fe6ca97db5fe0baadbfa22593c01bfab9640edc31410fa037bc90 +f6ca35ea8010a6b3c031b43e19c38a010e84f1c5c97b73fb3330ac18268c16bb +88648034875df43ea61c877c3278caddd457ee47509154aef00a86d801f8ddb1 +44e43f5ee5683e3ae84b7f6ba7aaa51f038607beb96ad79183364c49793ff0c6 +98c2a8fb0ac71b8f38eb7479a4995e1fbac92278b9f3528261d822db91d5d4f1 +9876784d0651ec7291f19a5437e987cd727afdcd267f983eabe8e5f3879805d1 +3f2089d9fca9d35e4fbfae0d72d7d0021c386bf7608fbfaa87d26a57933bb6ec +95739fbc3f7229a82efe4343b679165df1ed79eb650fac11cb7f1e74d6fdc9b9 +a8847a85bd24f58e2d988aea2f26eaea9d27f5892d2cdd77669b849a92f8d0d7 +5c54ed9682ba9d0c7058e04997279bdb3454d2b6a44598267a269a814aa9e1f0 +abf598a1b6c2afb75e173eb6fc2634253c04fcee9cb2a896523aad92457ef0eb +321e0a037eb6cfe349911c148473f86b5aff5b8985533a5f6d3b406ddac73d35 +23071332a8fc34a4816171b2c8a19bf458b4ce7259270785060b9d673f3c4997 +2da999ce0f2e7ebc2b2cce6de818d40f020d5e53b882f0d3754c341d5740ae72 +2868f364a2faa97e8c8143de444a9f3ae27eab6c4f7c838f3a5f8b9600d70831 +cbc2dc64ed3189f33030d0b32211b757f6682949ab889db99693f4dea2f670cf +057032d3034aaa6c3e75a0bbdc092c5f4886b169e59ad2d7f4d41cf7ad2f5882 +77914fdb7253e198a40b2186b1a9a0aa958ba9fb99f21a074825e053e562c2af +8cd8866861ae914042dc4b8b5342089b21013d519c44c28482cb8801c73de3a4 +9d6dd060294e4ccdc55f000f0ab7900b088e141fc2d8ce68cf771a068541657a +8b41e95fd2b1b452949716ad5bb0b8c2ece99d07a41f3c3ec381212baf8cca9d +801a993c8a3926b0e0d60637618f69facf70c7b3e6af9762afde0deb9e5be5a9 +105c3164b4d8372414fbee3181066f1772d21da04d0b350c806935669fd69cf9 +6073c324b8ea582638b11e58e43267c3854fa35c3deb3160d7756d66b87c8385 +92f86ab8a97bc9d6260e2723d435769d15dce8cec387318add815687ddb99d5f +1980da44a5332e5c98c59c8d6ba28a995ef8d809d783a9b2510e1c6b820c25bb +90f52ccb9fa3fdeaa661a69921794a60a591fc9157e755c28aa399f30e93d298 +9e7b35fcce14d5fe6bedab37c173d384d3f67323e702b14ea74951c5c07917af +f9f9fcc450950a8232cfc4744dd38ba79b9fc41a37205c97f44ddac6ea5d423d +7af9883610084080de39e5a71db472081595235f72c7ccea69a20cac059f2357 +b4d60e158834ad26f85fc1e9bbc948db8fe7a03c5c401ac2ed880fef8803e464 +76b00961ff910f1fcc897e1fa4f6b697a616f07aa95f5616a313ca01f39aa99e +8a5a9fcd389c99d750ccfa38bdbdd9a0376452970f91859aefebe5b55779516e +665c6f786b3d22a1cc781a729e477c5f82a65027c87b54a97d9130bd4464956d +735fa5b8f710cea51eb9bb909e89716160cdb112e44876ac49494f62b8f46e63 +c978f80f3a57d99ede832bb7bc1ae59ad0025944669343f432bfeadf8d7408f0 +50c7568da4400df96139c1d243b8634b19f2134fd13c783fe9012a58a7e7843d +55bc3b7c768579bee6f5931f1ea9caa44bd6808b12bf4550c852c1ee3cfa72b3 +5c883f0b6a4f4e5d768f93aed79bb5c70b681c3a9d604b6eecb7026c1b22e28d +c184d2fdade4c6afb6b9fe8d7495abe07547d092bdd73c5701696e6f256cda8e +1a6e58f3335e51498df75cf37a7213fa50f6d9a7a4ea4a251c3cd004b75b8805 +8c8b8efba9f66bbe5e8f321981aa2d8f5d455b47347e368686689d00fa5f996a +b6922e325bf4e72ac9cb09fd5802f365e4a15045683884b45f15175cabb62651 +3e71fdf4e7ac9b4b91772644ca8e55c530a9459719e181f9f2d211601d1bc5d0 +55731eebc2964f4add0f713c6b22abd36bd9163902a147f5172c4e054ff44ff1 +1999337a57a673028374a04b65e7e77ef2ce24a75c90fa2bb48cad9e9fa77111 +24514b9400e2cadf75e9d7f62fb7993f82cc336c77716bea4c00c931ac21e95b +04f35462cee46670514510bfa22ded3ea18bbb8b511f42c637bbd06134280404 +05d4355a5d252d9bc291c14cc81d77c491f62a54387442b9a884b3d21e0adc5e +1c120ac2c0b03a0355204eda408570d379547d40314f5c61f8c97971b91c521c +a5e86c1c321a90ae21dfbed0688e8c7287e7a35a1f0807b0a9a811a6d2d68636 +0fe12a04126f19c9b0fbed1083265ef6b2f4d463563df3b1be5b9fd0d277d53f +f4f5ee43b113f580be21183338592a57e29c025bfcbd56dad49e4b5bef14363a +db5594baba9ec550bd4cda1759277595d677a71c91925e6e1960f31a24117609 +4213750579cf163fdf9b3590951bb5e2a8f117412025f1807584ce1a4cd382f0 +9da5d7b56954f85327c0eb4ae556b79c08048b127101d2fb38f16996f1b66fbe +0040841b5578762c35849b0641d3343d8290f2aba7f075a0e2721718e08f0a85 +1fc82805f23c2cb0cd67740ce3d5bc6b97f98f8818cd39ad76ea2779c48ce48d +43302c382ec8d61904242e9a5e28527ea6a3bfcf9dce17a9d36398152c7c47ed +777c944db9ba4bec4f30a1261a0096081ceb94708ebe98e7165ebcbd768240be +d03fa2a0904086e1a4fbae8788315c7f864754e63f2399702bf2dca498b2b352 +09ce951389384a9e8ec4f01b207f61112956e9a59c0bf46677b9b1f8459b41e1 +b8323e5bb1ecde22bf2c47938e0e2f548cb02758dc7135004e448d9e689cf431 +11d2fa0a98f3e31b3882cf8689c76d276b85177cb27357bcb2ff0de3cb032166 +c58f25e0ddec5971b6a81325abcad1fc2a27cf0b20332769e80028ea27b841aa +16506f7c22dd55171341687682311e1f884ef87494bccfec13f5b0b217333376 +fb86573ee65386e19628e78f49c6cd9fbe4cfdaf21ab25e6f62a99cba323ebbf +c5eeaa523613eddbf85de5dbb9c66de1748624c271d8fdbc16bb8f9196428516 +f85e26d904878f9da7bd61848e96250c225e09dbd4f15180759e3e5da86d0dc3 +f5f4c5df81625a466d31872b9644afa35c81cd8a84a052b954bbada87c1e50c2 +c39594078c068c9b0aed83074cf941bc7afa3afbbcf3f40f34e4e3d1f133a57e +9c10799313813684dc597fe5ae551cec1f61802dd873526fde81f323b6c62530 +0a5ad9bec4131b9cc9cf26a4554d6d64bbd5c7eb59024b2526f12f3f9352dad4 +7043446118b2339223dc051a4938bc6a2c691029d693b8bd3d35fcc458f7df7d +bc2e51ea969285ad222a233e5331f99ee402eaf6d76403f6fec3114e6315a2db +23659ff88a0cf2738c290fb6ccacc2472bcaa3e0ce03f9e9d8357b89580c95f6 +f97c1ef3f0bad43253b8e97e6613f0ac04f55f2f321b5688fbe4076558738b71 +b378712d45c48ff6ec34057bb2a0aa7086c27716aed9c3e6ca6703ffdcfc451a +0471ae9d6512f0fa82155ae17e133b685717138397757d0230b62cda0ab1ee9b +b1f0bb791daad5f3789ec0f22d13b44143b63250f09ac760e86ce3219292c6f1 +ca0e77313611d8282d8f62c986fd525baf75a8ab194038359f6e0217d1a5fde7 +ec7de056f4fc6893e740dd8c9efcd629fe529d5116db5482d12bf39b0e3a40bc +bf1b3f99f627cbe937656f38909e3924b89ef1478be176320b6fb8a7c750f41b +90dfa427229c900b51d806d959be3b8b2b6e6187fb1bd406fd179dac8af5e70d +be10e747e198dd6cb67872b48585f33aec68a3ca94a22224056a32a8139cdba7 +aa07ea5cecad1d2e1054cd265d35c6b2ec0a25a0dc415955186cffd2c4b6a86c +028129fe12b4fd07dde82836ded99925994f058cf323bd1b362a86a8b4ac5aa5 +dbad763abb2613b41ae6b947fb79a7edf3ad23eb7d732727376a1fa9ee0e8d79 +3b5871fc0e4535563bccef6ce24a71b717f90590a7317652d7978bfa78a72454 +353fcf512ec5e804ff6d2984c3e905401b69246e1b040693c581e794e6d57ed2 +5dba59acdedbc4114116da97b749c4007f51addf7dc9bec79c77cfe29b6a93c2 +61e2007b01a0b8d6f95a9e6c25551a20ed592c90c7ab5071280e5d85200d776d +938df156ecd2d863f8b1848dfbe5d3a40d4b817deab66d5c191b4b05035e0009 +5f04c4cdfa26de785889829564c27377ff1f2518da932d4559017881aa68a802 +5bdaacfd2611e101ac667d3b69e7895337d522e56b4d9698c4c5f9a0e83c2386 +f084f40a75282c72b2fcc12973e5edf34e810fd247f9c0317899fe6efc833822 +8a788d33265883fcb78366ce69783b9a15e8c041e4556293f61c571bcc985d69 +b1761aca9460781c4b9f9035370dda95c777de8d35e1d7aac234987fe1a8ff45 +37888fde3267d97e27c8fb6d95088f0d207e4b8d3e3d689172b2d89b8dc28b34 +43d14646b23e3807afeaf3c83a22f45cbfe9eabdcee160ab7b1a664bb5fdba38 +4446b84b6b863c892a6ecf33f7a569d82df118582e514c11314dc73fdb04be15 +b6bc9b3be801419d90b74cdc52ac40e1342167440621fcaaeaaf9db8f78f9e20 +045d3a26e1b51f2c786b23c09cb94f9cc91df0b5236e3f54062925ce8804113b +c93c3ab041948a2027d00e112043ef82ce54365fe241a2c503fa334df6973406 +3402fc6d246a8694f436b318bd5558f69c9f182746a25aea1bf1993f61ca48b3 +b04074f8a44206716d6a6d834ed3c455e272b41810c6d70133c455f246aa7764 +a104c482caff864d86eebb2e1764735775e78850006f959de537d66dfcea3f2a +45e24e7d905439a59ab155474bb3dc63897c1dcb7e8f298366dd49b9b1e42f94 +816a3c275460375dbdf175ca420b46df137a34bb1ad7983807677f093a05b90e +81fd0ee6b6de147a9813a1a1ec0c7d859777c0b2945edf2901f883b8b54aca59 +814b951e4c97fdbf48aaff19cb9fe7c6c0de6532f656e5b1f03193b58ee693f8 +4684114fdbbc86134a483ba1be41cf4fd823a23f5a52ceab00021c2954e5c04c +865ec7222d33d82f19e09375610ff6dfcea95e0a25a1cd3d6156b63bcfa13740 +63bfe1d8a5e45659b0c924eb81cb3d4e70e59515ca1be45f66faadb5993ec547 +966f70f5d761c8731063422a510984f7b4587efe6799d2f28d90236b49ac10b6 +fbc45ecb7d91017e16e4fbf716709b37120d3586363e33d94ac92b01d1349c00 +18825eddd5cd9cccbf8c70046ca295d885209aa3fb0b6209c5298ef4843c39ed +d64dc504c278334107d322cde4a388a4a079bd303c4d5588be979eaa6cbdf8b4 +942ffd0d27b2ebe1533f1d31b3da2c7fb5c8b663391151fe897cffda8c227d45 +e292e9113ed2538712b40601f1f0c8f3d0d69ccb584abe6db54b4044034791b7 +d7a0838aa9d80c971f45486b4304f20d68b76ebc6e55bb683dc20c356176006c +b1f902f8d0be642da9f9209703c23e48235c35778221689c16d426fbd2903d19 +7fd00e071a1989e8b2ccef17d51e7d73d7189c06adcda120cd3e849c603729f8 +85006337a3a1136ca31e0e41d674620f97f0101a297a1b731b1d0348c51d72c1 +4be0366a2667999067d102d7007d510f31074799ec5cf6ee355e59bb68dd85fe +3e3f553168c337afddf1bbf895c0df509355dd9120735dec0715fac5804075fd +cd57fda443cffeb9e9d8e6f24a3daf1d9523ddbd29532a6c5a79e6b1ea1f2b1e +55e0369cff1bf0c074873ac1226354a6a74e62faf42f1a15c863c0ba21c3c399 +b9c1ddc4ff6e9bc9a3ba58581b6bf67b89b7045b9542694b9c2dc3e185a1390b +67aacd3c344d37467671f728fddce8bb08e2c6b8cd4a8abc60de087fdd560130 +3f40599da3a1d4abe2e93cffc5628e62d972f034681db1c6b07cdd0e7f9963dc +0b146051fe8140004c5cb27f0f0411027ba88646baa9d6f02931a762300a8085 +7aba1853932d380a72753ebcf4c9c24a03fedbb2dc057c6f62f31695d35a7e8d +da73ea4a610f515fb52ad509605b8deed5e44c36b7210dbafb46cf2c5ca7f42e +00571a8a157a953226cc00a87592050135386c5e7fa1c5e3c023edb0359cc26e +96762eff0ea623651b10ff61835614486760930756e59d54919f0dfe0b8fe93b +9b28c474055246750aa1679389c5204657d283981a5cb160e21c1737503ab109 +044a661a3b3d100ec7f4581bf7b67b50970078319890d5a67d133bdc07265d22 +99504698a00ed8c9747feb1e747737e19850d39c03a837f0d504f9b43c8fe9a5 +725eba04ee6cd478f8416470ed154a11484aed5822bf9979b1ebd5e56af698f3 +4b865aecd29c67ca74814b0cd0109767f6d582205574670b0182e0ec6d23675a +11e489fcd58f0965af4c2f2b891aabd05185de26ba4e0a86b4fce3ba710d9c81 +3a97ecb07ce16ba156e2627048da3a2155ae68a5063f6c2eebc0091711290605 +b540ca4ddd10838e2a64835ba38ecba8043074be230baddd628d8b253734397a +a213b0a9bee70d623dd5411eb58e25855209b3648a42e4681f90d51b13354f28 +267d48d1b8aaec412be2dc199ea3ed041bc3edaace1af401d01e56b5762f7c71 +cadaf26892f3e1f6ab0438a4ba0e3f5ad953fb15a7d821f6444efc966c67082e +47e1af0e6e0d199189a994239c9716711f9ed82f6fc2fa1f923b4e3aa45e5ad8 +c0dc71bb5481fa6a105b90a77bf4b8b9b852714cdf4fa814e9d0d89d349ba57e +dce13210f79ceb8733526aff221386f826a435af47f027d81bfd4d263b84f8a2 +a807c55d1bada31a59649717a4ed8d560d4f5b81ae7f6943c66e9b2ba9739c3b +559d49fe652de7c968c64030d91099ceacb9ac69417e8210f64eeb6dbec7ab1e +fe4a3babea0a42ed49cba2e70a6db7018ea0ff1b2b0af498dc6b5e686eecd7a2 +a6b85e07401e08b825457e99d0b5fe48ef13a14fc0ceaea7bd7748b2c7414522 +59ef4ddcd6a12d5e84ad402badb6af6b8d50738250677ac12324e4e3c5d72887 +c3f36f99c04cc898704bada948b431f543765f3112175412fdb80af9850ac5cd +19b65b018df357498fb4255439913acd686e3edd9a3bed54235ca6a3d93ac968 +6ccc1400b8ecc647ad4fb7334eb768ee32d3213b8a30ac2caae37e99ebd9e903 +b319139533fffa9289c29424a030940ab2b43df031c3f72542e7a8227d56c29c +a3b07551a0be3cc4d406d2b0db792e9e72942777388d1dcb4d48704c64a99434 +885c4f4f170294c7179dd43944d60739ba9412245f2c34699d04f9815db6db1e +b3835adbf1d8d9cba2da0d217562a25e0adeaa51bd8258b9b49f1ab66fb1e72b +d0312788da672625511e07ba68cb0eaf05485044acd338305f55c7b67e52af4c +124e54d8e3bbd2c6ec6080dd3e191416acaef07bfecc0e77acc92236749ecd88 +96577190a9e86b7ee306b613e0b19015af7bd544e26c6a3e98c51d98cbef559b +29d79e6bc3ff0966663de38b24b2449d38846e6652159ea825303122ffb55333 +a108e242a05d015a9abb0089a5b9974cffa5eef0de271c243fd9a4f5ebed3b53 +324de92d22fae131fc7676b747460fdcf199076cb5d922e2098446275946481d +681674c97c00466e79ed31008c4f83626ac2dda6b0464b589f01082e5ed3d7b3 +1caaff1052012b1da1e37f3c0049623555b7d1525f44c0824a53903b54d4da9c +083d7acf2717e26be8596a07574661a53c504866959e13dfe3547fb8c5ee9c54 +e4d16952d25f0d32c103c1b2381a3b06ab7a26262f95755e2cef7a028266ffdf +3687304ec78638f3607e1d4c76af0cea8a30bdb7afd9fed23b79acabfe622c82 +9059c90c5bc732c53d8ae7e55f6385ab5d78e0c4e0b55bb9c5867ff9a498d3d8 +dbe4f0c548de9edc0944f1119bd9a2c33d5d1c8de7c5156bccf7d4e52265464e +5e58d93fd79f40f0ad593f50bafdad06a77fbb22982b35516497305e78f50471 +746076b77160149dd7a38f2fdd678ddc2a954ed788a19ddac34ba6ecfa9f0ed2 +f7bcb5f97eb077bf90e7c3852ea49b1a64b3a1e618cc83bffeabd15abb82fcd5 +38b644942b6b9741b3eff1409c67632c6a40d77c42ee0846d8edeedf56100f28 +ce8a9fb58b4aea6fd3fa0345832062d748ede2877fbe30187b635ae95227a7ae +e15f86beee2718058ee928c73d0e6f2bfba3c144d5fcabdfdcd499f8b8db426e +0553781a197bad1798327e3bdd32060bb55c660c24f3ea4e658d4e95f69fd589 +e9b35a2153bd45fde6f56e50a7cbdf803e26103a62824b24ee929b16add5f9d3 +5817264fbd1d0b3171fff576d67bf6aecb15eb25c5bc6024d558725718ea8406 +de77df6446ce372a13fc2d96fa72f65932fc34e7caf2ea065d3c94367070ad57 +84e94fef2858bcaf7c60f999caa4d0a483fcf77bfda5ead04c77b87c69a3bda4 +9e752456a8a91e78c89e72b3d805cddf729c8d13346df0c1150a7e16f37abdf4 +07f8a69b062fa83cc8996e8857d26bb0c09d5a5182cacc745772b78b584cde14 +6f5e78de240c5f6bc995606afd03afb003e0f8f07f4f62478caf38494a162a82 +ecbcedb9ba0d4f074611e68f0cb7bbfb76bb11615cf4cf26772a57d635613fbb +9fae0485183a90656c81750e962f35cb61689ec21f11539df17b2662006e2391 +b5d31851ae55c40d408649349ae3500bd52990f1ad042a09d0f31fef1a5c7c89 +5ea1118ea0c1576b630bdba01bc628ceded0ad35e6decc10c02be1a05be5259c +f318b84f4a0d5eeef0ef8d991e029c55213d73a07306160751c8fa142d010c1b +9e85dce81b6c4638de70603f7dddf7fc3a80540151b985066926c581d21cda9e +9a2a0b9f428fca992ef1970a985b3f5fa6e80e5923db4de6ed7898c508852a47 +439a8c50e416c2b75d7b3c8046513d91af6de66ee4b6f26f6b639d492b105b1c +9049b04aeb7962405871e868f15b6e1a8e8806253672c6eba1d9447c1b453d36 +59860fc02c285f5f2d773f0e76c75d5fb2493a5c26901d9559a9f3550411039c +129fa2d0fb9f5aa4d6a11f490488a08fb3de699fe868ce02120fa973fa0ae84f +fb524eb2d7823fe52ed58ebf40ef5c7609b7b8a5e1d47cdb9f624d53d35a40fe +c7ae7c17bc941a7fe4c9c50777595a97573e3ef83582033e1851577036e02f5a +65aea4282fe5171269ab39a07939b2a71890ca4043102dfd0afcd8688996a45e +7b6a858c30e54a6f32fb19bd71adabd584ab82ebb85535e53788081e553fa09a +d97345c2ff7e6b7dda5093bb78844783002adae6217581860729e94f5455e6bf +8050a1df07128cfd83f682b4d11696a62d204a7d7be0a43a653d1cb6f58a760e +cc565ef2e33662ddd7daf376653963f1485cd1c523d9341b1131d527ddc5e166 +f49f08b1bf9344bf9f7551a2688bb258cf46775a6a31a4e38dd1114fe2e44e5b +3b56d7f3d7f44e3c9f09c6e9e098d425370daf4dc3c638581a3f34336e80e8de +9016f94e65ef7664a4ffc441c52d073d47da7b90c39aea70ee619b199ef79773 +bbf5ad46ce9dd19afdb335492d31fe45cd69650eac723a9d6d0a3c9c00eea011 +daae00acdde96c901f111c402703f7b1732e1527aabdab32fe1355348e76081b +27491e40f472c84e26568e8fe043ae3b0813137b34205d5a005eecd8003b244c +20e0fd57bdb3755e7bed94304a77ddf69a9c6ad5f286bd2e95e4f4f37b6b6004 +b9f7436171c6a17af1136c05bea345577c488112c7c8cecfe7c57f2601265076 +dc5cbfd0d2e66b8587d92d02ecf628c297f4d08c149fb2efd989e9ad7a41cdea +03b48ae9853b03768a1528cef605f9d64045b1c1de64a5e0d26ec5af66ff278d +296f02349a6344767f0b0983530d314a370687f2019ef6c778654c011206e8a7 +c47e5572f904f2946372e8ce442bef2cca4fde1ada3a06580539088c11804c76 +e66c32e076f0e3de041e9c9950dab9d79886a404c081f61d1eb5e0bb4ff05df3 +8412f34b01dac78411e4cd8c6322b956fdce30b66dbaa9e8df62f797e553b83e +e379d96df6a2b11fa7edb9ea2f1fd8ec4b89b5ddf937bf91d3b574ea667a9847 +5737f2bce293b7f9ed9ae06ec39ca2befe1d4378b707e266ee3363acba05eef4 +7a9d71f8a205bbe81569ff184de2e187735829b17680534888904fe67fdadf4b +146c1d80f3453840667908b0bd497d22c8ffbfd1400fbd57e140afe219fa8f51 +c8354af1cb982ef423f250eb9e8aebf30166780d631400ec33bd84bf71140403 +f5cd03fe38b27f08167cbe99bcaa3fbca13d734c74148a4321627b672468905e +c93b528e396a0d2a917ce042d8dfa63eb2575723962063a2487f044c365462fc +907b42eee612f0fb4e34a3fe9ea1a0f168da2cb89cccc1b5422e81f09bfa175e +3479915053e90007ad92ab92a2a0644726bf022737f3b7b0ee7579fb7731ac29 +e7e043175277ef22942a9030e0bf91a1e775f9fa3f6d86ea3b72c8ddb42a670c +68694780e5a7ab25968592d823bdc6e812d19641c1e176e26351ea5355435739 +7f0f92c33c67 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +%%EndResource +/F15_0 /XDVKOU+NimbusRomNo9L-Regu 1 1 +[ /.notdef/.notdef/fi/fl/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /quoteleft/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/bullet/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/exclamdown/cent/sterling/fraction/yen/florin/section + /currency/copyright/quotedblleft/guillemotleft/guilsinglleft/guilsinglright/fi/fl + /.notdef/endash/dagger/daggerdbl/periodcentered/.notdef/paragraph/bullet + /quotesinglbase/quotedblbase/quotedblright/guillemotright/ellipsis/perthousand/.notdef/questiondown + /.notdef/grave/acute/circumflex/tilde/macron/breve/dotaccent + /dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron + /emdash/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/AE/.notdef/ordfeminine/.notdef/.notdef/.notdef/.notdef + /Lslash/Oslash/OE/ordmasculine/.notdef/.notdef/.notdef/.notdef + /.notdef/ae/.notdef/.notdef/.notdef/dotlessi/.notdef/.notdef + /lslash/oslash/oe/germandbls/.notdef/.notdef/.notdef/.notdef] +pdfMakeFont +%%BeginResource: font QYKIKI+NimbusMonL-Regu +%!PS-AdobeFont-1.0: NimbusMonL-Regu 1.05 +%%CreationDate: Wed Dec 22 1999 +% Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development +% (URW)++,Copyright 1999 by (URW)++ Design & Development +% See the file COPYING (GNU General Public License) for license conditions. +% As a special exception, permission is granted to include this font +% program in a Postscript or PDF file that consists of a document that +% contains text to be displayed or printed using this font, regardless +% of the conditions or license applying to the document itself. +12 dict begin +/FontInfo 10 dict dup begin +/version (1.05) readonly def +/Notice ((URW)++,Copyright 1999 by (URW)++ Design & Development. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def +/Copyright (Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development) readonly def +/FullName (Nimbus Mono L Regular) readonly def +/FamilyName (Nimbus Mono L) readonly def +/Weight (Regular) readonly def +/ItalicAngle 0.0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/FontName /QYKIKI+NimbusMonL-Regu def +/PaintType 0 def +/WMode 0 def +/FontBBox {-12 -237 650 811} readonly def +/FontType 1 def +/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def +/Encoding StandardEncoding def +currentdict end +currentfile eexec +d9d66f633b846a989b9974b0179fc6cc445bc2c03103c68570a7b354a4a280ae +6fbf7f9888e039ab60fcaf852eb4ce3afeb979d5ea70fde44a2ae5c8c0166c27 +bf9665eea11c7d2329c1a211dd26bb372be5822f5ea70d99eb578c7befd44cdf +045a363056e5e1cc51525ea6fc061dcebb337208eff729802376a2801424f670 +0e7e6397b28f15bc10b40012b0a3eaeb2693e8f7f627c4c9c7c6c5bff105c1e4 +1b2b9e8f09253b61177e95ea219474796072f4b363fe05fa763777e13b518310 +ac032eeb94b88c7dc8741fef59c541b57b0441c6888237a2b66a182599d1517f +9ec474a9539f1632c9a5a1801fd646b529cec2b430f1cd205feff509b4092535 +29e0b7b372145ddf62052c9c08b7673d36dce58e3e78a8e4788b34e36eb543c0 +d68a36e2831e23c440c3e5f1ba2248633aec75ba8d6c9e7fc0da01af08776246 +9a8009a4f3a93241f2f34c72db3361e701c06538a631f6a8cc47b1b5df7cbf9e +9029d42fad4b90f81cdc2b4cf52c09864f657c7c357180375c0b64206515e472 +c6d71a2c5d03c5143600d0dd439998956b9896ffbcbbb77fc1b6675f1e428390 +144b29367ed224ea9e5f51cb3e349dd118422bda8b6adfe217a02320be72983f +d6fa232c9289e529552708746c4c76df4ff0c7b27fbca194c650679504c0fcaf +0c643c945a2563ed47cd8538edd441bfee93dc4160421cd9efe6cb32d81a8e1d +e1c446eb5ec2a6c855e4449731ed3da1c3ebbc3cfb6553c0f78fe88bea6edb14 +a4abb572eaea91681b7e9f6a2a08005164340dc1983f75b8abe75fc02747fc2f +0c5b31e0f9a8960410d5cc677ea77d0b1b28681ab5e6b3ac11368b1e493f594e +9d037f4fa4c47ee06351cb471af4c1966aad3e51415d70e57eb0d84ec3a655d2 +b0e3a818baebfcc472b485625414c4e20d63b9673b0a0780d8838b0b4004df79 +da0444405db6a534a7571cb1aaff7d4975ea8a578ac37044cb1395a056c7d9e1 +ccd617391a2e852a4d71101cdc3c9350e57657b376cfc7cf7e387414e4a017f9 +943ba9c3aa45e955812e6b8173acbb5e5fd0f0654868def282d134d0b4533159 +c2bf0fb6959689dde7e8e5d22618fe9c8a973a87ac0e853af5542de5b89e7b94 +44ad4496afb696be0eafc9dd7a421856b1c0baf95b5fa887669124ad3698b544 +5e82a4c5cfba4e5083784e52462f3724e7273de6e00e84a1d83b6a8c0e79afcd +1df167b97e2dd796b6826231d31fd02991e990dcf2dbbb0026f9a151c0720467 +e68e2cc0a5fce825564902efd08e2ce18896ca20df47d2df8928baa632825543 +d0f6a5c94630e63411a6adb264443eb7d0f6c3883d195661ca3a1bbaea7bcb41 +d5c18fee8453579ee23f1785112e31c6dfd8e9ecb8681b248f0ce3d77aef339f +b455f3817cf7182d1fb0c53589750be5bd6543beb9c341427d0a4107dd5d6ef6 +2197b85088749f3cafa40a6a3223d4ced495d6228b3398fbbd0d4765cad178a6 +f93c5217bd254777c20cbfbd33673c5ba58e2b021580d63c76bf196391815c05 +d05159b171c9034edbd0e861c5a26f2dd38736457fcd38003882a66a4cf8d7b1 +e2803ccfc1c9fc2abda0271c331247360b7f2cee58ad9cef1b325f62dbe2be6c +babe23a220f662247df70428c1f79c79684890324e6b7166b269b174b98ec8cf +f33b589cc3d3daf1aba6835a22aa2f59f8d386610bfe936a05794242e99cddea +8da5b4e5e56a875c49267e2d48ccae616053235b4b64ae53a573922009e8a05c +a56fe84205488200ac68b62fe4f07572392940638301363c4131ccb86462c242 +afa463e3f7f036f63e622243893261e7ef744ed489397030a6604318da3f592d +037a620fcdc10da51b8f31c816f91016d38efc65b6d463779720ebe8df03be2d +0ec52886ef9205fbfc6563ca80accfecb7c686f0212f85da5024129f01bd81b0 +bb90d58eefd17fb353ca143a4757421323238c5653a3bf9f28cabdce6ff9d946 +867a33fc9ffe0adabd3679b555a9ed3c181d3e108f776e13bb39794cb9f4edd7 +7a607e017fe054811b3ea3f5b02c95343a5eb449723c9fe7857441feab37cc93 +70c285d3d91df0a0e1bb21d022f68f0c0c8bfb311b8efd056f47c67b03b45dc9 +0bd78333d366796421469cda8df6f0095a5eee1a56621d055a5b12d6464cceee +9f5fb6a40ce44ab669786f4f0ff1f348c9d3712761a07eb8aac26c35c694e1cd +65b01b32a2319a381734864a06a349db71a2fba74ddd58010c94aeec901ddeb5 +41e0205df489d02664b4e2fa03a404c8aeeddd6d1506bfe56e2e8a6d3a83f79f +35f2d552dfff754bad59df45582e3aa87e6bd45725b2c44260e651b70af70186 +8b168e440bd70014be5c4ff89028997bde67279b107f9fec9b4b2f2dc112d811 +4dae65205429ffb3c9734df32328ede30565ad65d8a1aa620bd543286908d747 +d13cec2a2f19cafbd2ad480206f8b2b39524a2fee286cea20b22b67dde321e3e +3ed87d8f7d9b253a16c648de1c9c8cd84c4f2304510ee263083ac617954b7c9e +62f397daee458e60e6058addaa14ea573888162b6777c4b5e80c2fbfc8f75ebb +2026c01a1ea38b85c4fca949d15b9a470f36e0b697ef5dcee10c45f01230dc48 +728f50abafaa52ec5f2899b09db8b74f46ed55c8efbd3f54f6afb0691a992b15 +e1bfe3b6fcb6764227aabba94c4450183f139da7e12df63878b0aff0d07c51e5 +21a29ab9fa0482e9dcb043cf704f17bdc1fa1f79bac725d6fb01dda18a700eff +5d691d1573cb0ba677a9b1a62dc483fbbb7e4fb0ee0c87cd631f7145b710d181 +85d5bf85df1cff42d9dda4430a8f6f4b6f6c01d20055d8d9cf1d48f268e046a4 +9bc64bcbd7742d090608a1c025f39d44bad9a05ec2c7b5ea4b48959f1cab0974 +537bdbb8828a830843ecb3b6bac3589cb8a35fddf8a55fe4445ee3419ecb9dc1 +3c9a3045f5fa5264860b6e310854cfec5bf920061c6a4784d911fbd82c6b5353 +72cdc7ff3dba22cbd02303654e4d1ce6c5f03ea5719bb456d1ab804a6a9e08e1 +15d0ddbc46f2ff494f0703fcb9f6c079e5af3f4a7bb5a4546f9ef8d708732fbb +1bb4d11a942470e0a96d5c83d20343876d89fd6db3ae1fe60034cb97659382b8 +03a4c8ee4a01738285c8af5812c4de7a97b1eae85315c9497c082b28990e232d +7603a06ade5075fa217ef86ed78492c31ce4082f14a6952e0d07ca9d8e15589e +7c3f49cfde17055e8695923477b71b4c09986c62875e25576dfc3a3854c1cf5f +73004b97da00a3deef1be0aec1920342613d3e4f805eda2ac121809b02a42d3f +de9e9245943a23627ae0c1c34b5e6bb1504ceb67966e9b6f104fddff62e82b16 +cbe3d401aaff4d9b44236ef0d04b7edf16eb08b7d19862effe88b696d05008ae +ffbfd118722a55a1597604e232416c2190b36c30928f82b208006c26b85d7428 +7153fccc92a65f04229c8d7b2c27ac4294034a051b45f6ed5b0fa3e23af3b5a3 +5f996bb65cf298c4e15e98d228a719e1c968e7d5d0a75a9bc3cdf8b5c4a136cd +a6995d94f5dbe307ae1ca6beb56dfd09a6683bb1437fdcd537e43cb1633a72bc +1e72a5f98497227072d863dee990660c137064f8f73d78d9c5a40096dcff10a9 +4e3c9dff0d2bb80c429e2c135895b2b3c5be663adb1bf39e3125e4017a6050c5 +d4dac24a8149a6166cf87493f766d9706e13a4c3b443722d7ddedf777c5d0bdd +780e839b10a61dcbb8c06caf2246feccc66c6fbaaaf8270e06a4838391d7ba0a +a3d35b278235fff9a707e8da8344c078d88e8eb2b5e2f8cd8f2134d458221623 +1dd96524af97b92662292f6e1759e004e2255dbdc4e0a9fe007e550144af357a +32cd32e348fd2e60d4c10c33d032fc02ff8a897c4b4b5c35992e6caa8bc4c966 +6a520e2e98184efcb59e2d534fa34c428bb51998e68e91dc9382e28798845da1 +ae9d6e418c2e3b05373fe26901654e1e1a7849431681479cf05e0c19392ac9e0 +562794d94316670bdf9afe2d368fdc31fc2a2a98dc8f23bc236690d897e209b1 +c6048724f4ad378857640140a356919180b348fd6ceeb5da8e4b3f9dae1cda65 +fc155e10b53a271f23c65397711cedf404dc45dcfd9d3c87d57c1365cf9e6f9d +64a11df0f71f72ff52a8a4c899879f38e797867570844ce904c3104e28f1b85c +e31f5e4dc09852f5b47b4fcf2b1fb394f4a8c9cc8b807eaa9ad4d8ddd816a28d +7bdea3811e47722cb0a11f3967bfdc501f5f19f5b7f925455da271243465b55f +56030748235d6c1e8cda657c5fb7c1ef58427b148713c569d2fa172a2d32e50f +7440f4cb961d34feff587acfc3009b39005f8ef1b91c28718601d140034b4030 +05dcca93b5d4a0778cfc1a3fbf7e489221c88c27e05652d3c3aacae2cbcd9b5a +439d3687e32bdaa54a317a6f70833c88af86056dcd68e8546832e7662713ce20 +98e5bd9dcfee48545391246e794e408adbeba57fc3a3ba4e18e487abd6f26a3d +085eed9bf8e30a77c85271294eff2f8e3def17482c5455dd60fb942f85dc73ec +9f57db31ce83e7e3574e17004ebe6fd903f485e5ea88c8294ac48ed09afa41d3 +80ea17e2cd33190477a0492a51ba20be31a367e6260d0dbab050cedae7659cf5 +a67d94540d7022178ae1d4463f84630d51af81054a6b7ecf1229d9ba0a6773c8 +e3aa1a9d95416fbeea9ed901f1dab166058080d42f90499b415ad8aafd99ac0b +7220401edb7a32b298bd9b9010679a1f9369a5bbe7cbe04b2c395f1159c2a2fe +b4a85292714a8f491e29c703932acd583f6405828ca8331612f5f580c049da26 +22a27b7aef2806c427af57147beef345e56a2ad82b0fa3662a31828bab7f6b6a +abf00d5bdcf2d595ef576d7da2ea634a82458444145803d443560553a7d17313 +b67ce7fa22fe118e9e8187dae14e79860b371c83ae2ae787210a86a6fdcb95d0 +c05f1b2ac98eaf239af2469397fd8afa989eb8ba0c15412b9f90c1555cbef583 +25c0999b1b10ce4345e6e949b375a91ec348eda0b0d418ad25ae482e02cb47d9 +ec19b444406d720a45986bdf85b4181b8064872f65e7a93bde15ff80ebe555dd +8adfc28b6ab58525a6a72bbe50cde6461edd83ac9359c0042709e63ffda54a50 +a5a6e72058b498b7c494b2a7e68014bf1c354506c4dda52d7173e6530340f834 +7db62785ac8e70a8f560574249630f3f89c159f31ce437b8a86cac7f5b25ccfd +b2fc41fc8392430c296146477d501ea752cf52ec9bfbf462d12b39291f49ae74 +28485eec80df5a1fa01806b3013bda44477e671e87e82f58fab32ffc10c111cb +76e7099f297d6a67a7374e26109f751361768ef8118dca742c8f20774549a2d4 +da72d15706888cec1edbfba70bb8149b54655eba7caaa85529df4bea9ce0c633 +38837abff2597c6b75bd058dfe7091d3719efc3964d1a386b7c6b93d491b02ac +86b08ff115b548abdb68f67de3b6cd280ee1544ddf344782fe30913a21eadc6e +314f3ea2ab3d9a3783d5f9be76c4caed815af7def664098cf1a167444f31cf02 +b9229bfdd8109322df0cce8fe0405d523bd8020753f3d80f49365d5006829fed +63cb9571b219b3869dddfdc2212f0fd468aa3a8c78d06f58fc6be0753bf19eb2 +b014e28d06053e931257185ff8a46b2c443b163f9d9997cd2225a33ec6bef513 +41aeafb9f384bdb7f3c78de5d4adb511c16259b1916b29440fd8cc01dde8ccf4 +e8bf0a4dc53a1e26c020f813cab07eda515e7d395348ecbf8c64186fa5a81390 +7653da3f3143382a374b96398d14bf60fcc5f7603512bed7e8b33e7b20529244 +187795b01754b61d5aaab742be9be4532ddcbe6b88671076aa9551ffd58e4930 +1f3fa48529d85586f1e197dd896f91f0c64ce80bd48519f8c1bf9c4816622cad +d9cbbb97e7628a64f96b6816c5b0312bb98a23715c3de2a797015203e2787aa5 +ef40b3e17cac398805fe76a33819d4825f80654270445ba955779204f5e8fb5f +418edf66b627b992cd3db5f04b18b5dd3f742689b3182d41760bfe95be97e313 +ed97e32ecdc16d3d574a2ba1092408b5ad6c165a39eb148b2513bcdd01141a77 +0720028f31693360e9909897d85bcb5364188d391e34dc98d86d4909fb41a13a +cd4e43c7f943889aaf1d430714d1b0f3302432135a39b11be63f77d04780a191 +cb686729a89c7badec30d3a9b416c32350eb416fbd37104d038b0252a8b91f77 +45b543618155a76f06274dfcc284bfea8726e55ee8b47df6b4760e22c8f2020c +e0da1fbba9564cd974075c1670bbbfa32b5b1598d198a1a9b82d87a7814f5d6a +e5a97d890ae6e9307f3147d78d4fa40f5388b9759429acdb0e20d9ddc923f4cf +f2865f95a8fc0595724b0043e90091a2315ea8c071ab631ccd04c3ea77541646 +b2fae2bd69c5bb80849b85fcc583ed6bc743c7ab0e83634e9625262ca557911a +3715e19e727337fd16171908a75e44fd7f6ba76157167a214f11c228bb1f132a +b6cb965beb1aeb597276e4e1bf52614076a37eb859f9d61669257c195560586b +b567183114c9895464a71774bae8eb31e9de3c11e0011f85024f749a571a3e2f +0fa7d8ce0d53deb20fd2f10895bb8aed95ac89f8956a8c93e809536e9087cca8 +09106a42a59417359e0ec681c5905a6024bd3208fed44320b723392e3f900e90 +767a6af4c4e67b407b215422a6f409d59c309d1999f973fd9b3746d983b0bb9e +1675aa41b9f6713630710faa59328b3659f559a5e547451191d88e336863256e +d43a577b77f81bad982c3d06cbe5a12321cf45da2d300346d8534c4ed6f449e5 +14ad627693dd361913862aa14548113a553b5558f8da4f5fe5cce86ef8b6efec +00b188a5fa1ac6cf819110e6feb793411cfac4f900a379178c2d7990f8adfe06 +4d741594d2134678e7f9789fd72e87985334ce7e531f0855525b9dcac36196cd +2d75d8bbe2b02ad9b20184d54e9ac6bbcfdb0d13367e2b4b4310b9f89172d59c +385866af42d06f9477dbb56e8d3bc8ee8c129849080ced3d7b83d9dc1a32da0d +b79f6e1760b7b836e2d9a0b59dc7312a3cd10932fc771d14f0f2278479e7168f +2f4e058c0177456811b2de2b5358ef33a162bdbd4d908e3332930d0e1bfdcf35 +ebaad4210a5f80a39279c5faad2803a748d96651778d0ce97289bb70ba010d93 +60ca05073141c30ee35fb9b8d9eb3ba37cb97fe42fdeef382fd604a1cccbee9a +65716ccdb777bee502ce3b654612362291ab13fcb507ab797d697f4f32d85763 +39b9cf437eb119eba024e775fe01501a8e7982d266531a5a9316abcbaf5b9672 +8ffdd900cd9814cf82b9ee6e789309cbf1dfc11f715b1a201dda33cf7527da51 +cff0e36d2f4856808b522d5344596058508302f36554419f9654f941ca0804e6 +b38a6d596ca3fd660901d1c3553aa92bcc95703219cdb0cc8bb540c2e60ce0ad +0eaeab36ac18b3ae477967bf586ddc3a45b5949ca5fad78910e834d8c83faed8 +3cd8b0546efd2575a42e8d4e44c80f375c9d960686e6885a6cd283ad3c1f1a9e +8e0cd7ed0590ffcad9da423285a26c04960dfbde0a5315d81e5170ae081644b0 +2aee581ab984fc189b5adbfb155a52d9f7ed759091062e9d2b2c2b03c9272ebc +a0101422d252aeba66664b23a123ab5fb05da5c62e83934c10f7a9489fe6a26e +72ae45fa17dfe3c1badf296c09a375d2451b7b7ed5dfd262a7c74fa4a9a4f5d1 +f431bfd1e79decc99db3f7eddfa78dfc46a47c0881f500f8fdb96aeb4fc4dcaa +ae0f9687e6edb2519ea85fef772477c3e33ddb52900657f018ff227701992647 +c9db8e4802cb0d6976b1cb0e3dccbc573bfb38ecc9db8a95bed9c4d90c97d3b7 +0f87ecba2fc8b03a7088f1eb02875c27cbfa32efbbf38ddfa77ab23c8fb36d1b +ce1112bfc0de7f911f1b096461faf86cc41be0bf61ef31581847b1b478fe28c2 +cf6a34770e43a95e08ba67e429545a65bb9e6e18a6c4dd2a34ca9cfbdba9cfe6 +63826142391f15c543076928f9867bde8b2b1acefe68c777fbcb70707f4f91e4 +7eff73b0c3c26986d1ca582bd05873f4e40179723271d1799dc4fc5e3dd9cf77 +64e41b8aa8dfb907abf53e3a0007a714d6c941114f5beaac82c46927441e3402 +36c2fb70de002ae35627ee5119577ad7fcb9fe5deefc239aa09e6bef15aee873 +db24b3cd614565415a3077b20c1b095a5726ae475c889cd9341c93d4a1984709 +5ffa8e8ef4f31ea7dcf6375177f319a05e551a8905bb47c9f23cc5c0e5fcd8e0 +29b3072632a060e6891f2b77bc1da20cf7da33173db210baaaf8270e0315b6ff +3fd6c2207b1a429577d5d9d66a0f8268d4aaeb29681a21f7319ab813e2a1eadc +39b8eb7aec1c33cc62809a10ef560d2453ed7551f097960efb4e4708858d5729 +6307189fdfd3ab62c75a7c501fada7428e157752fcabfe629902715193acb11f +ca4aff2b0ed13442450e4f2a4873d5cc3689f7d4f7e372326e2f7093bd7df4d0 +ca957794a61a2e813e24155ee3a67c4312a06c72f84acba679e67e6c71f43027 +cdf8a21da3bb5f68e576405c1283016e541a3e9eadd67a20ff9ad7a658a8b831 +2f30c18c451f553c1149960156b201304263eff2f2549fef2e4906909c1b4904 +ced62fd9c0c973b82dd66044bfcd36e1991e0b6b84b6102258e205a458952aa9 +53832d094e6915c3a1669d4f532132424fc707dce60bf9ee9e06d4035394192d +922641adf5777d563ae7960c8cd6175dafb255747737b02c40687953c766601e +caf56e747afdc67f8163de81bec4dbd48b3712c0d24e92747d98d5d1da952de3 +eb9ccb3a132121cb1c9b2de42fe1417bea313043b5aec119bb0d1e3058a82087 +bea4d00203fefed8ac113723b1081e92ca7e91363b86eec7bb5dc2e123e41c66 +577dce271c93c667cd8665372d5d3b906070bd229489a91867551f3127591bca +b1ce86d7d9bbd5f265bebdca4c58af03023e9ba2c291d78b629ef48bdd731c45 +591edf98d4eae6290a00c331780943d1c6671ac237a2844cbb84082c06d39cd6 +b04a2e5819d27a25da749ee7c94488fff5f59eb0a3789522ea85eb999c66f359 +d1ecc77cfe14774fd76b97270e30e95bec696aef56f99123db82304bc662d8d4 +6b342e53171a512e7d435f3009de3613d91a6f32f9ec2e11bc98b09c4dc4d516 +8a2ed64ac351109e5e38a68caac84ab583421eafafee02980bf8d8fc700f1a00 +129564d5efcd4f7896130e76fbcc6c6ad66411285958e3d17c2d408960cecab4 +02c5068c43df99d4de6b9876ec4fa2128d9ddcb0f10aa89aa8935f22c9445804 +4c1b0ce6cd07c272cfaddab0719ef5cc8c597960b7eea7b4cb5a10c826bed1b8 +219d464d72a0be58ae80de6edf876c04dd2abdca41253efcefc0552989dea491 +9605795e6ecbac4ffbc39307ce1fc794d4bd78b64ae38b2750546b8613378f70 +7c5c29640874f1bc3549f9a381ec1d13ab38b1c20d59f90dbd2397a573ffc9df +525a4d4e995618a58148687c5c949e14c0879316236284a571a5a386fc94cb2c +c5f7327f9269996e2483e9c4f22a813db3ba38cd036a454d335497f53d654d6f +e28e4583febc2fe34cac50be37bb6e42b8f92f694cfd4f805c6423089bba4461 +8e36e92d90a06f749d8a1dfd93bd0645dc66cd18ee797ffc06d4938ed9fe7959 +ee2ee5daac4e5f2e15a8b4c311eff43f5ea1a13fb288ac57267b71bd0ae02964 +f1901a7b5005a834e366399eae62532648625bbc13c64c006c372491878ef7fc +645667f249fc7ba564e152012e485320fb3c5dffbfcd936a93916045e0ddf257 +992e927120370994664643e2d57678fb19f0754ec4c483a8b6ceae60d39703d9 +f309e68388cf20bc752caee575c86ba39575a07528b65400cbe9fdae6a5f307a +b199a54aaf70c5889bc64a30d5cce65c2276ed1d9fb30bcdc94a65941a2b0e76 +3940f7d243c8de8120b5b2f2995d2ec3c7be6421aa1f7a5f8b6050c17771c5f9 +d61330fb818df90f3062f9f21c23fd0a59d6ad28e023e0d3d7eb4dfbcf0c6bc9 +9fdfb74f740579c8460fa6755dfc800c5327da99e494d9e18efc6752f1e6eb31 +5e399606ddfe98339d085bf92634d2f557d2a07db440f45fc2e60732c51fc4c3 +047f9f6dfaccaea71a9b14ae1e22223987cfc33856fa6d78be0c8b4cfbd8d608 +96c0699ff248a80af31d111d3d7437427688430782e1e99858a2379852ca04de +bf7d0922b11865b5771d902dae865c3ff7aba28da86ce91a6c031a647b6d5676 +672480a7ea057dd805ade4318482e9f5c7e2592df1672342b98c8b67cf25dda2 +f69d55e28f1c35b070acca2e4c5100c18b102164f534b151375bf8e9ec27cd8e +e43a7a23cca2c5462ea92b202d9eaae4da36f8df69c38a4689b04ba3e6e6a2a7 +8b06763decd52595b21d5348e3f6fbfa775f8b88330a4f35bc3213a5ba19d277 +4fa8c256d06787e6aced43124b422d3ed2ca884c64da93933135926880b21cac +35e222c4b6076bb2b391357e0c643f04d209788fc140c7303c90a3c3faf5fccc +046d3b268154e017f1e4082819de8a5bef0c1725f008b936a243b2eb850d0900 +4560651003c30ae5fd462d8e68e4ae51d17b636bf9d45c7fe07255e470d2748e +f9720203181e528304f71c1fa2fdde7872ccfe55bb77c8a04b529cc5ff114c64 +544c4896f091965dafaa0eef5e8671d258f4303512567dfe2eacc764f0ab9a78 +206ddb0942d1dc868d52241185e7c830c57f31ca9c08453c6a8f35bfd7220a52 +3e3148beb6fca0c2d56048b7755f068220d59d4fc713056bde03b1146e8e4b37 +cb5cb8a90858920236e561fa21f179c12f7be7cb63eba15759bf0b6299ef3835 +b8d41edd37c1f1098fa2bf3cbbfe0f7a98620e7b072f5ce1c90bdb8d5f6fa9e7 +8629f3c6b4bfb047c9ac1869daf234e4a95bc0bb73f036de76595dcfa2d5e856 +22b48bec72edc8a798ae673dd434b01e89019a908f59089c9789f58b8350a43d +b00ca1fe192390daa4e85e7235492ce567dc403ae5fe8f0761274973e07ec119 +1b0ae1cb7f6f31076771d896139920861da5c58d3403a416f243f1b58cf54e94 +f3dbc9351633887e8d7ea6f88fc4a0dc6d2a471a78f98ebdc2a98613499a80fe +b166a4b803b7b4ed05ccabefb2405745f1ff28921a05a0245bfae09355910031 +180305de2f64f071a7abb75a72eff13539eecbc4cf54ff0bc87f6d72d8a742cf +5073aaf7942a137ab2f273e22391ad1d0dec9dafd58ec68553be5fc4e6c4936f +a3e67a86f4ec045cf294a1cb7f9a60ebe5178026fda700042cf5bfadac3d7ad3 +17f9bfb62ebd5946992569e9aedbdce9f3abfaecd6d8fee82559f0888d48f794 +697c54b805026ceb1d708751d88af0e5cf88332068833ceeb24223f5b5025384 +066f67ce49e586ebc4249bfb15074cb522c3626bf2571af43f0164b044b5aa66 +9d8217230edeae2453fe02f018bf8a8043cfd63d744388c12cc8430ca4157c81 +e7018b963021ef43aeb42f1f5246eedde76ad7507e65225430f2ed40877214ad +78a2e199f951e52790e30ca09c0ea8bb318756137639532e638661228e314364 +1b1d60aefb5222a3b724674ab6fbbc3445b878f99b629de47e52e36693dc4060 +9fcb048910f3d70211659cdbce05f0733af96afad264d1841b2fe33f3df5262a +92e98f7a5873f70b931a7c78863dbaacfde460906281d5ba5accd188edb2924a +bfc1c6313cf0cd29ac91d2d374734280adb1ec4b2dac9b53da1134b7ef26d10e +e05685ea4b31e5396c4281ba371b59b12516816675ef303fe4f01f1f84de922d +69edc0d18568c06d4dc79be0b9754b8f88632fc3a74fa418833aa2943c05c912 +b7b60343a7dc7a3f6f1aea9d83011afcc00619ca95cd8f97ea85176570bcb441 +e9b74ce8b100efa22290b3dc8113db1b383ec98f8367eca2844bf1742d752d29 +7cca604ed822c3f7b560300b39afe9fc8d9340735a718b09064157fd10d43dbf +96302c60195fa1d5bde0c68c4f235184898d0381849a6011239ed7d6c47814e0 +a163b82e56389248e7594fb9f4a2522ccea4eca0d36e1295b3ef67aead84cc8b +c297009eb5d21eaad7ab4176a443acadee13915c5ca44ff41ccc2bb9abb47fd9 +6461ec3d38876df77e5fa9993a300c39813f788e17320de56592806658b42a04 +dbcdaf7bd0684f445884e6f1a574467e52019ee8fc129ff3fe74fb03a5d67047 +80155de767defb2964317f6d058d5b8cc35324368469291ebb15cd320d566b96 +c5079d12493a8f84dda5005f8f3fd7038c40d1e704b4faade3ccbbdc7e90903d +fd3da3bfeb37ba41db2557640f2bbd6f3f49d9e37925007cb97f98c6e365d06d +282a433e1aa95dbef41be2facde3f5a08254a366a74b7a2f5c14898881d4be99 +aec4b0ee10022dcc55501637ef6f6570d437dc8120e63045002d7419057e5c15 +6a5539ebefa7d632d343a41df8804a6f855eaa3186b3f97fb7f79fe1377f5472 +04e186f1a97011fb950ecfbdeec1ff992b1ebc6837afbc0d9362c1712b114bb4 +4747c291759e7fee3f81b000f9ce65feaed5c16287f5e812f152ec27815bc6aa +35aaa245c882c9176baabcbb81548b5f271c42169287da48a7c6140af35f09a6 +b82abdc84b8220577cbf0ecf0d8edfd303f468ab9d6a2b89d806b3e19297eb13 +eedade8e405ae9e0e9412525f95e6a7716948fa2ac037dce19d67a156c5b813c +0af189b9b778bbfdf730c2050091018865e23d6cff0ea4fc0d26a0cc510ddf5f +456f6aa4f1c33fe7b40f5f8576b477970d6487275389ce7b2444f09e3fa5c426 +9090dc59354fba985544a261230fb1758bac67e142c4a1e71664d7f66eafd525 +22b83d1f2cbb5f97f04924e8cc4645b27331eae812266982efccbccc4ee93bed +e1e0ae7e88768e690cfaa0abba98973caff66daa632834527b26260e0a4b1655 +3994bdc9c729f2d45f72ba1c510a000b731ac3d9191e1faa5c9cbb7b94056d90 +f65df04c47abd4bc12b9ba0c1f84e4d77081d773a9dd939ba4c4b32785bbb337 +ab4df32d20ce0df7ef0374dcbf88be107e8813b5a769d530cded5649ec7de7de +0f7f373f006ce997b6f7bef0c52d49b8a62a620a37069ee851e7d23244f6a014 +4d50911d347551a63f9ea59cfe0159797af521c09bdf75e12a4a8e4c38ede4c4 +4e7a9712340d42110b7cbf4061ba2f2a5ddcf67a39eef57345975a9198fb8573 +f34b9a350845815873e4ddb7866c702ba7193fb92d21bb74d8bb4c49f2f3c7fc +3b703bcee9e7745fa637a9383786fc2729c73c29d2efa5ea274d9573265df506 +c1ddb510c9f3fdcd3a80c0ab90748651537efa2d8e0bf374472b5c7bb50b0101 +7263ffae7f90a979c3e5f3cd8a5cea478627890536251c4c16c0f63c1c822efa +66a75e01a68758fd97c5928bb2b1df6f2b74d2950015f2eacca793e7888c26ee +723e78f3cd926b1979bdf422bc83b4b51d1a0ae3ce120540e9b653728d769265 +c03c0a3cbee6240c0de90646e7ab730e5e0cf1124566bc16ec17989c1052f8e1 +84590223348e5b4510204322929d8632c4bd136c89169d45718a88babd7f2cda +62afba21cc46bb3207676b96695d911fb99bbf37b375ff4fb8be949fcc4b0481 +3776a3451fe65a47d623565160358c977d4bebce7aadea5648814b8769dfbaee +b8bc2da767da69b10daaff6a50b6a7006ab74f8bd0ec64e5681199b7f3bafeb9 +bd0ebd1a79554e8cf3e5896956d279d4d27202a4667afbc46b84c6b9873e8ef6 +9d5b0777a750a5c8ce86f3d5851cf3203e8b47edaabcc6c6256872f31ff228d5 +7b686b38b35d5dca23c755a5ab9e661630e61d1d376a46466b1f0100f66affcb +fd1d6befb5b196143998848e48119456d6f5791bf1473a2cacb9973bb80421fa +781d90e0c1e6912dcff9ff07ebe821aaff09597bdea4e71e72136c4e37946f0c +146b9d507ee79dc7a715cf4d65db2614cd87c5709112938acf9bb2e01187fc03 +5cea0fd5c2ca980adb6bbf5b9eb427971bed47970a13775be150a7a87bb2b8df +a92f8c86b98a36ab956ece9f5c562071306642d74f177ea0ebc1eadf96cda6ee +4c53703763505ff273c296a11adf59c4919f63c78f9b7c2fa998f5befc631ab5 +4dfec01d96fbd7d076357fd85f26eef6c10aaf99a7639c5111b3a13bd144bdfa +daf1fa9633b69feb2590a878ce4621251a2b860b3e1ad8d7a6ac1a896380f206 +158dbd525bde081e9e7c58f7aba0ba68a22065d3fb7638ab4b2027cfdf4dd926 +0f624b197d19691e1219f705d63781d6eac4ed8bddc3cbe2e7c735f73aabbfa8 +01081532536832bb4455483b827fa9f37d547a4d2cfc98707e5a4efe77037671 +faafb5489b64ea22fa51f2df96a89e8f986b3fa39e113be69438f1a4bb1b5d1f +33ed7ca77228938a98bf47fa54eeb2da8d81ecedec102f71c278d824c2bf5bb5 +37cde6342b1ac156946de7f6c4c12e1d639d83cbe78d8775cce11584a4edbcf4 +59c05abd0b590172401b83fe9cd49b347c01671277ea43400b1ff4212b3d02fa +cc6d384f815d7fdb652ab34d7bacca2e9b2b120de79e3532f81d778b6081d631 +32c88f10184f07abe8830a3f5efe712e7e3cac875f3b157ca3a0dd8a0417d512 +9554ac58171e09ae6ad91f69d3235be00c67d41e00b6988b7df3a07e5d65538b +6f600988178e4c98db360c5ded8f7f8b7866e6d3168a085ca9a823a347519ab3 +5f4fb80774aa4bcee175c02cbe39ea9a0ca56044f50ffb2fd637f925339d30ba +8f4f7fd7ea5a606dfd7b82ba69b4724c960a5cb49ad40f1900a0969cd912957f +345c08603ed7e8292789984bcfafc504dcfc19eadb79ee198dcb6539164db7bd +4d210c9bde5bfe4207c363af21967146511d70f7a0fd682afb045cf22a37bfaa +edf500dc18251dd086a8d2a91ceb979d2a1e9cb45a6b59afedf66174b764dfc1 +1048356c96b585d142f943ec97c62de95f9b8a8253ee0d6b2b0153c445563826 +787921b9a60417cd4075922332dfd82be6d45b581b581c24c4548ac5782f726b +0bf70d2d08493e9a96668054bccea2db3f66cfa6a4d37b36418f9fc8d8058c9f +e713810483a5e75b3f61cfc012dae494dfc2b717cc59e417e25e8c0e21f62186 +acab4158cdf47343ad8b73dc8e43dc792dd29897d8aa1fbb977e9a3dd20fd247 +d0ceb53d2fcc627179dabb49f2920cf8a1fa4d57f39da7e5ca0a94d377cbb20e +2c98445881201bebff5e33ce17d8089f552c3dea96bc70b99cdad2289a3686dc +b5aea099076ae9450c3aa43f18a3d98d711e43835c31f566866ca556b2945738 +f359ef7e7ade8e1f56bfbb0317fc2d08846163cf343c919adbe19686ab94f7b0 +7a06f3d97d5545df781e11a06b06b175fbdd1316580a66af1d94f4247f158c59 +d8e1fee6ecb6ad565e772fdcfead3898a5be123f2d0303ddda02b8e86c7baeea +70eca3cbd43509a85b853eb3286deae9e29921782ed417b13cf1e6775921b2dc +ff5b2424f98bf14408d446d0ab530d88f49d231315c6739ccd0cc8d01cfdc259 +f47bedfe7a53dd893cd5be51674e6ba162e1a8aeb2b21ad54819bd3d648318e5 +4d651933c280e81a327934ef0eebb83b795b3b384a129c16536bdb05bb2ea560 +72241eeb5f35e10fa050fc0f05fe4deb3e2e8eb52a97450c56594746d0278802 +9559abdc108ddd3431c2cea2da1886ebc7a973ef73038004fa13752c80a35ee2 +8e5772676df858dc9ff0d05c735576262b80e3e49751d78f2febd65ae4c1d0d7 +66cb53656583299d2c058bc94f272d398f72728e72368362a69f69af06a708f7 +ceac24a0846496457635fdfae466621eb4e0755230abb71bb5abe293abf7cc5f +8ea2fc15c66a5b2fc6a6d510a6730d9fb678a485616374f5c1c01b2ce834add5 +6f8dba31a95983c97af9e9ec5b8406fc67dc045c551ddf6131834edd18f79d55 +983aec1d18d5fb2209e87f1157df947772de42d04da8085d3691dc7010505c0f +a9724190d9a82611cf435b360971bdcd2e569629d98d439da052bda080ce1e33 +bfa5ebd35ef2e7dd77bd517f1cae2250b13a031c69bfe0d147919c53ad773024 +142ecb1a3ba1ab50a941fb54e63ef49edf844306f7e5d12c9090d2819dc6e450 +42936015482c7bd75693e910eaae10f04385f624083d00276d0499cf9891cecc +d31b06128a7afa49154eed960f37e7fc260e1372f1d4559062471db4f0db6faf +efd3e6e06b578e2ba8ffa1e9c3f5a787124a22e0111ae960bd85fb1d62b6ca5c +b2b3a87e3081470706237fcf936e37dc5b408d0c41299f921d810e01b5052751 +cfcc27024185194c147fe01bc1c4409c520b3e3a5c0f5514aea4cc899ca9e9ff +7834dfe5bb0b4b0b019c1e8163f294fb6ee50b05fec276b53f04160fce3defca +2c33ff34f6b1515705ecaba0aebd40a99fba99942bd8d451e1c1e489655daf7d +39437b97be715b11ff28fb291b972b143da98f5c66b2d02a47850765017bf4e9 +82e2bb732dc64b51fd4fdd3d8144d1231548dcc29bb9927280492da505dfe82a +dd17fb67b02ef0804bc82339d60dcc1c0f8789074747a805a7250f494dd1e9b9 +173110c4b3f2154e865371295ebad4e321f15826b3d3e61a400bdcd15ead2adc +2a5f00bc25e36413e46e195eab01069a35f34fe5c00f46b90d2e444c8d5e8a53 +bfaf1fa61745cec24611b2854a7ee8532b54b40ad523f955a4fa2a9c546dea87 +e6d9e2de21fc4b3b2da747fb3075a641b29f6d6cfc3ecd725f26972e31594686 +111bfe80caba23be92b04171b738c1709bad40060fb0b603d3a2ed6e7d49daa2 +627ea6916d3fc19815fbd0fcbe5d1ec8a8c7a6a7488b465973d3c1991664bf71 +003353d2b025d571348227ec1700407e16fc5bda2cae07dbe55bcd7dd0207219 +f4e61479f22c8b7aaa0ec7281e933379b5d25a6ad9ce46a1c67a488cbb315f2c +08fece286194bb86c66bfcda0fbc668b8b84c2af3e9cc85d065e17f55863529c +d1668f07dcd6e51caca4eca02811c1ffb9a4eaea01a41e8bbb12b1d23cdd10a4 +97d1a6b9ad43927837f9b12b9f703d414070ee06729c1e0f78d5f63629739f5d +95cbfaa9a695db4862149ee51c566b8f94f79ef9a3de87c0ebfd3bcdf4940bfb +314e1bcd17595f3d041b65e4e7765b60a192c4ed917b8361ba0b5fb4fce8f49c +b09412a1ae8f99d878a8fbdd375de3631a63119042e11e6d742f909fcd775784 +1f5a40a168b4da3dddc65d947ad0950a1a275fc72a923422db5fda3d54e4ed03 +a1ae04ab0f59134abf88aa65d6944affa2bd46ed8c5596062e4d32536d2c8ffd +e5cee1bf927d1affbf9dd4e214ef0f323a9f48af8ce0ef87e858edac7a6cbc3f +9ee530f7609cf023032a19298b334306ab3f5ed123b7652aaf77ef421dfa4ea2 +e1dbc68390082b50940aef52f583767e8a5d9eb33142f9883ec9dd26a4c0a446 +31e1b1e55031a9defc48060e783c7a56426e4f690aa6cd006c5a9fa76310d351 +9f8ba5c79c301bb370d30c7b3adcab60adb70e4b4cb9b9dbeac8bb08f07aba62 +3fa6c7805a38a4cf9c5b7f2ddd6dd510b174f7c63b2d5f4e391005bacb81b7e8 +5249518ce22a99e8811376e7a464e22fbdc4574ab3684b416dab3526b3bd0c75 +0acea306c0d448fc4942d2c61d44566f8a058ab93651eb319affdd9ecf2655c1 +d00500943b59360b6c75b780beaa2f1b98165ce2ea6a64aa9435ad5b4d57a089 +0fb6274b5f137ff957e2dc801dfcc8f778fec72a96b31e7457f421399dbd9dfa +c99e611405a24bdf0bdce785d6ade5a5c09ffb66f787bcc2ca4b7e0f5dad5453 +b3d87e5ba383065143952a9364df8cf4063b2f7b3ab30c263e5b92ec64c43c30 +502894c1b01fee36aac472a6e2adbb9b74129074e25e4cfa3c70e8ac2b3d645c +8f54f45ba3ed89629cb4f2f35c418ef74a194c496c4b2518429067932d57bc0f +7569bf4fcac26e621327db71e19eeb5335d8a6f25c99d6aea57bc6ca73238c6f +ea54a43c09c65c83d5319231adc05299a668372a9f77833064c460b312fd39e7 +49426fa209cb1f5d3d90c043603c8f997470de5cded5bef35daf0145f5dca5da +50de2bb8b678e6f36c53643aa97f3fb0bfb3191ef20abf0022d160732455237d +45d23239e4700ca5d7b71231d537bd032c3f2e7fee61b5e32caafd5de34b2a31 +9a4745e6e94da94286497233f66637586af51856552b0430710606bb3aefe457 +acaae21b8cdcd140b2bc4ff16705fcc80d04e0bd9b6a3207d933388b624893fc +349fce3e420690841637e1ce83247d5de15a109350c60944853a42fc3adabeeb +69e78bb11a5143fd2c465be7f72c9478a96883d1369414bcbc5b20bb60457eb5 +22e748594f23e082c29689369e48e01187efc53b3637218a36813cc4da7faa36 +9e29596f5de513074eb3a364b82e1af8a0cdcc513ec66d60f1173dd50937ee3f +dc888950c9a6b86ceebd3bf64b6319eee63db2199b824dc84e53553442b80e6a +6f29d9ed68d767c3d1ae78037e2c7835800e08a67c5be8f57571a71426c25e30 +a80439f9976ba351cc64a15249905b04742ab07e98b867d4985444e7a9096346 +8f70bfe63fe94f0a4f23257703e8793d059ffdc798ef3cf642a870aa311abca2 +c2a19fcbe68054c2bc94e2d030e8bede94db3c839e3d85302c297369903b9c9a +fc45596809d3c3f2be2c287d8b49273640d1dde3c7a4000616cb0821a01ee775 +e7e1b96c796acb7764ce16478e2c98547840df255eb133fe407b5081d808f368 +c575cc039dfd5fcc9e332e629e8565cf227079d25627dcd5e4d6a0710b486b00 +7189b9cc441a094d4be628d1990b63cbc5cb7fa127f49bd2b5ac659115bbb018 +dfb667d4154218d907abe558d4fa3ea3c753aef0e05b94772e6ddba0b88961ce +49d8d6f1d85930efde0fbd9dfa0682c5a8adb81d8d0be2fcd209238765af1977 +dcb18c4f80bbafa42b4cccb09f9da4db574398d30754f0c2870f0ff1d628dd4c +b57e3791ffd27ee4a9793f3ee5e105a917cbf9b6dc9fb7a32c752519b8334b71 +8fbdd41eb77d5e6c5438c6cb200559b914cb5b562cb914d777f889dc0af180a0 +3d2c2036358f8a105ec2a6f6313155cb96c5d792e2dd3c2fec6c56084f295047 +c1ef4ce1317930046ee382913d7df30626801fc5f6d1501fa31e643345128e7c +1f9dbd43ba580ef2bffd9af99a7a325a4e39f02f4ff5d372fd1ad895c3741914 +b1b944da9fefbe268e9a4763767718dae9d44728591c4e60845231f31ee5e929 +30f7c26c3235548323c5d14c3d7bc73033940071739c215441a9e72f2ff242f5 +5c65173ef32f00001340a53936c3f926a54e0818aa8cb28dd6fe9fd1c62ea09e +141fd00782dc1203b43dadebeb2104286082a14af250bf64ec9bc75371a9542a +2d27f971d3ff426371bfaae72a51d2aba44e859625120ccdfb350ba1c7f31413 +4669405f69b8515e23b0e305f3cfb9b0f29b410d26062bc8a1930ca753184e1e +dc97b40c9769450780c4a742ece35d726475e7d5ca91700e23cd325c7853b6c2 +b9b439ea12ea4576d7267e7e19baa00665f42d0cd312715e3b92493bb6a3a6db +54afd1f4c5e7f7bb20be232591b37778de18eecb0d6cfd30d247240b777501c8 +82b269a8959952836bf7d26713019f7677937a97354fd1106f6ee6d09f6c75d0 +296b22831ecac76882f68bb9434dfeef9d18f0d5b8ff6615dcafb348ec7a9866 +6fd749afbcf651be1ed1ca671a6013ce0c183f1ea86566dc9159cd9383b9e5ea +9900ae6c384ce3409aa4db1603fdc010083db0f0ee139b27c6090b8135799e8b +420f8f7b10e7334d53df7a0b1581485bc449776ca4b2678a490f9d0ec5207514 +de7bf64d8cf9711cbaef78b6b599d518d77b4544434b8cd95d04149e1b546204 +32b266a48da343d0704d10661485e4c11d4fd05fb727ab2db4975482edbc7c42 +b9b3af2806828da2173a304f83b9cff0ac4c5d4f553fe7276caec477bef48321 +ba153884a05e23002239cef2f5c95d8f6e99dc9554ea767409ce0108e73b76a4 +273aa49f123dfd32d27fb45f80622c7f61bc3242b8e00e6f50ea21d0b2c35f0f +10308818835feeb760d0ae64c755aae98e40eacb8f0ce744c8aa6d6b5c1d256a +0a476118f5f2d1de2bf12a0dfa68ca2a2e99f5cc0fb1aeb3e56cd8ee3221dd3d +5ad1fd57901727acb63a9aac3aef6c753f57e34aec57d0876b442066c2e324cf +b6637243db0a9cb9d2fe8e82e0dd2d513ad2b33f99bdf99b5c551cc0114da38e +392ac1ba0d3f536963f6e078a6a123f973395ae4846dbd335e30af20c3c23134 +91e2bc5987f44b6d377af7c5242e4f9ffb43517017dc7340f54460977dd8f8b5 +d1461c6707040c47de84d198d4164ddd7e7715a70abd458507fb336b824ba24c +ac0e6901295372b2863c119d0ee2fab224f7c0b56af33c8b82436ba9303cc0ee +3a809129e3c15b8c7a45538ec88fd1597406f696adc7ecdce383d3715325bcec +7563f1f4baaad70af9d24dbe272710dbff77d95c3462aec9e75a1e24e9f0f716 +2f82f1410d4b77344983fcae866279a98112d6718ff23da33bf16255c1b10736 +e8f98e8ef876d73ab139009bda89836d18dd03dfb13e332c50227032ff403ec7 +26dc8fa78d77aaef79bee7e0656275fbb6cc6aba6bec4920167380a1b07f8ede +5fa970f56f530ea2cb06be96def3b5327ff0f35d2d2152d23d712013bfb47b1f +e34f9339712f75c84d90df05f9ba2e8ab689f7804c588e5e075942b6dd11d875 +c56c016d18f48d569ff5ddcf4e323fd9fe03d5c702da6b98776601e925c73ff1 +7943756f5a4867c8d9c3f0a23280e873a891a6371c258e1cca3c4dd8be44e16c +267512e5fcf49a6db090e47da0f7a2f56804992df1c5387639b67aea74912727 +2d54a49823165ad330dd59020f1351f22d2172d018383555b8bd88bd50d5f715 +0839576ac6b14c3d651b54411167189c9b93f44e1783880a4c1b31f671988e19 +be05d3e519b72857420d6053ee7e459e98b31ee77dbe9242fb65d39e7065b67d +4c4b6619bb0a8bf1f860b98111710a61e2038d8ecf06c4f825322a66d327a631 +0bc1e8941fc36ff52d7286dfa8d2c38b76864f062457c198ee7335602cd975ec +1958a3930918b4959aeee256b98e0bbba1c370c9ea62913e9ef33ec799bcccea +de68997283d202476f1f065861c7d611478ffca395677e4152bc82e9686bc4fa +a82c0cc2a7e8b025eabf0fdc11e0564eab69bcdd8c4a05e5c249164c117ba859 +3b0d1c7293455320b0dd104b95afbfde7a03c0ec5b25f9d9ac6accc4de9ce736 +eab4c6726b23a116ff885b29258a57981be31f03ea5c5bf6db8c9ba21b831f37 +41c32223133c36127a0b3ea1d378a31002722f439564eaa70bf9c6465c3a7d03 +da8deaf66b1534bf11654562b6f4ee776d5fd7f3d288b51bb1e78808d261120b +b367cab8ac4ad2e910abe6bd80f9d421127cacdd282116a4bd376ff6999746f1 +4202272291588b6acc250700f32398d7ca3229bdad1e2244fa8d5a93af30fd0b +98f114afb0e4f4f917aa0935f735ec4d5d3293ba3c9d70af980d3fc9b9ba6db0 +ec2d4038a4c9872775c3ff227583bf4a0bb3baa3a14fa3757b01c461b2f6b1c9 +4e549e58ea596670aa747ee95f8b881391593f409cf52daeed278831aaede2f4 +b7dc53a8ea279127c7ac74bd500f97c86a513e546e05b343a3d590b7081df88a +3acc4d21a3c8bb060bd4ac8cf01971a8ba33d1e7828a5e64453028be2731bb48 +dec51bd85a6114c8dbb2f6ee87ed07af749318c90fb75a672b2b9c656c0b760c +ee4c6c462f9d6fae1d26469b37a043720fc710031abe62cf4deb987749340f27 +43a142310687a8b5822724b7b0657e7b291e803d14d2eee8b795b432a983f54e +53b17161d32c7a2d937fc8151c37866d3e25469c346b59c13930312fbbed651b +3019b9f09ef2c2a217780eebe098bb92f43e86c1062e161110d23b17b9b92682 +e32feb15891454b1c6201c375d58c4f66bb0a322fa8cdcdb2ad5556a9b6f0eea +2b3066c1c89a44adf94a7ee1cf4e15d51ae4c17052ac66df51d27e2b1cc36871 +14867d0fc33ea44338e9823c1016ee6263b1bf8365b900d2acdf2dc41b53429c +b64e9e89bf148370f62822b51bc4faf675fac2c9cf47a29f34f37628a471c4e3 +6daa47bc0b23ea7c1933d849ed2cec6eecc3ca56cc93a14a4258ce5148c0dc0c +f4f236316363140a32b91a4a7d78f7bd49e9e138b037621e52dd5e8e30062fb4 +1c537aac83e2e85b2e57cb43102568966d75c37fedd7799108a24de96670fd6a +4e5d9b9b778b6d25d0030070ba7329e482c82696e65df223e0579823f0db7323 +e7ff8a4bbe8ed37afde9a15deb7fc8521a1179e9197e2d3e6640e591c50606e9 +11815ea278b0809d5b7ed1dac77d333638b027e340fb624e9f1d6fdc40ad7cf5 +bc8b03e4cae755be841a9c72c86930024006b17f89f9d4ee22bef17b5baf4cd1 +364f889aecf94c1cce61909dd22f6d35a389136125d44a6b4c27efac337d8e46 +6d657a804eefea97ad0b436468e088a93764365d2481aa2d5e79ab437ecde035 +43f6023c3b75a1eb4c5b1685bf0eb3b9e3944a78c9aa0d410d20f7e366670095 +8f17d09d8b713ba121c46774ce83b09ce675193b845ace5496ed1ed96bd0f1bf +505353ed69f2aab2eef00169531e57f8ae498ec78d5d01aa45f4d7e2c96c486b +e14a1b21a1b61f6e73c970630692e385184d32c08036af05fe240976397d06e1 +18892245ebace16be7ad3445945b9edfd4794f190bc4bdd159813aba09f80544 +58a0c5d5b5624fe081c09dcf2b1707890dbc43def71d3222f8f853a5d169fdaa +95a33d1667b9e9bd7bf5883cdab58f17708bed530ebf7eee4acb2c9bae6b8337 +f1b4cb61b37c32cc0b3e390fdf35df5bb198a2d704ffbee24e27c4c1248f3f85 +606de45396611b4ba6ddbe1e9434e7e48273365ec73dd8df8aa378822e6f1f6f +8f35454c47ac054c77d62fddaa17b41f60997bb9f1ba5b700e7f840f1cbad1cd +e2305a92564e0f4c88bc4f3ccc6ee1175af3b2f83cbc57fcf10f0e63e7f635e7 +1e428064be1542f59407f2a18f70adb7d0eeff6baf6ed415d7a2a0237d17a726 +e84344dd77c48b43f47451142ae90d22b0e90e993715c55d0be8c808944f24d7 +d3b167f8f6f6469aba9fba2bde048298e85784ade8d96fe228ae328a0c8532b8 +1d97be36095fb1a3930417db8c50713f86e647113b607c7c93bfb424316e1aa4 +4f8543880efeb8b9be6fc7b978a4acaae9782a2721757f32173cc39142103963 +9da323208310b292114a62ff42e3cc0c986f709f986e07b9364634fad4a3be7a +8a63cb7b26036eb8515b8ae6af058874ca36054c184f2626ec2683bf21304e1b +5fde01772a0895de5ae8caa031125b614a83b949bf40681252218b10f5d4ec6c +21e8190dafab34551a3b8712b13d195ad6c934cf96b9da70302e84b34e6f8bc0 +ef3d383ccb7adb2e5d67ee464f9b2124cd034dd4ffb20962a6abd3764694e07f +4b4d244fad6fcee6167f5f44f943a02caa9b326726e949a8424496a79f5acb37 +d8c7c3b10d5fec76b568ee77b02061eec7bfc67c9e75ea1784e15ecaf2bade6b +48a80532beea72fbe2ce5062da978663984b2cfcf067ddef4de6155f60a6c34b +b469c3db6fdc40e5f79f3562cf6f8bc43ff8032692ec0f95a03263e2cd7cbfe7 +5b2f4a7c4dc6b8445dbecf16b800f43a6835ba3226b5b112cb09a18bb0161210 +4ab91a24919291406a436f4cafde0ed998da1b99718d003d3afa3729203b5999 +a87df0b91c5adda6e678039344bb36495fb1b5e5965fcfc86f6f61763d48c0d3 +7c55d221b1fded8a9a359371f8c08c778e269334c2af994b75186f3b75b7f61f +6d6d48def0aa6856962f7b9c468c795abec3b622ed16241f4c506963acf2cb36 +29ab91296d06193741f36343fe0f315877a090df94858d93c527d44670760ba5 +68b61609a3d750e4153c0f17dcd5f870b3a38b7d2272ee60a24668afc2b54084 +63664a6fff7ebdf7d2bdf9b1636b17041bb12f49ee3cda336f84c77746fb5036 +61b18775cf02fbb4c635fd09886798b09085b8cdb795bab93438ad36f4e9c23b +b30e1fcff1bab17fe49566f755ff904cbc11da5e966a545c6c7d7259ba4c729a +391ae47953a99bc4d500d68420204e23a07f6c0e137bd1a7034d670e1e9d8804 +1bc039653a023a6edcae8f73c93ddcd8a2e85396f5debed0d0565be384f21c5f +1171e37ce2443cd8ea5b20da6bab9b62ce5e8f1f485a4b3fd7fb22ba4bdd28df +f76493059c56b7a5c65209ee98f2e81ab6e25cd0a0f81cb511004e9da7fcd65a +8e73b549ee33577db68adc05e0b24e820500cd50523470eb760844155d4ffcd1 +759d5f50b803888f3bb3a616f99aad9a18a745fc6c248684c2b0df40e38234fe +1d21017d2a7a1def67c9dd2884d2239e9e1790910a8486e5cd001d2aed32e05c +bf6fd016f4e70e6af610330f47048bfc8d0a490e60b9e27cc75098a74147b30f +267ca6983b5940b8ce47d4fdbfc3a7f89f78ff4c35ec0a50228aed5907e05dd7 +ea33ef10c079981b1ab1c361d78f58f78fcbb3d9d4a569e0c8e1f86067bd61a6 +cdcc34c490078ea150b792d466b7a6a1a4ed7c46f4ca2e46800f5498820464f2 +c88c8e6ea79bac3535fe2c12f9e121a07588426e60067e13e77999939ac6e36d +9b63c024d67d2dd1a1e7172a6441a051b2e1405877aea4ad0e78cabb4cff67cb +82535954d4ba25bbffaf67dfa0d2a889592d2ba5718168b3a620ed8fcc10720f +b25da0cabd8265af47ce144b68c6058350d643d8f0746c43ace3b7445efebca4 +8d48d6f46c9154a95a4f4b8962fe1392418ab22e84ffe824554c74679bfd6662 +09b79c6d147858aa4ea978389503c1b8f0dd5ce10af89739f19a42a932c3cc14 +25882a16c505ddd2547572b93581ae8f0eea2c7725f91b8b2bddfed70ce9b39c +398a0beb2d83471822dc81039695f6fda204907ea0078d854dc4b86318921169 +c744ac7d846af8980e123b6219f8663b9fdbaa3416e6cba8ae367755309372ee +84b812650858053cd0f7f2d4e62d8905b0cd349112adac19953517ac36219044 +3cfb831fbe6e045dc567c182337d4148036e6e715a366a7e2be5bf0da704808d +7bf418275826e99d696b0c296e7b5a15f5e63f9c90c5ac093822290c8d254e7e +828104afc3ef7c5a8d8fe631f191e266434f34d9e10619a7f4b7df6566c86463 +a86f6dfff94f01f8b4c7688e999f306a65628679ab9123af6dca39e88808dfe3 +e99107b918a8dbb02b1d5ed0f6bb82d115cb36889e5aa14c9cef78bf09d3b429 +c1e3cf2ff96d289a6279d186130ec5cfcdd5a7dea4d23124f012646dca173108 +2ad555c142a587d98fca7b8308cccf3856b0901dbb3ca53082b368cd2850613b +32da388cffd23ab28d932eeff2a7388295286539aaf03746f35eb28338ad23f9 +f4fb3c91c79ab2fef1e061cdf2aa1f2a991b39fd0afa1063cd54dae5d31d2f44 +516cd6be0ee051bbb0201cc747a04d5b171d4f13686e77b9ebf9ba2236886c4a +505461037b7a5f2ee8db790e6fdfd047033354f60786c1f2c00aa6847c8fa0f6 +3ab3215c78229d47364fc91ac88f98eec9e5d96ecaf41c0aedb88dc216964a52 +54bf9f88a7bc9f5ed16fd210252dd2f8e7f54ca4b4ef4a7356023556fb69a31e +72df664882f57b786417d6955b17783e9c206fd33064f6d9a9e23ca274189782 +1c18375d12d1ee22e74713f6911c3ab08b1d7f35f00f18f5e9b669ad15d4e1ad +0831fb8edaa74fc257fcc5ab9ade88ed85a19cc22d32b2a9e2ff3830e76caa2d +15f5c1fe3fc21bd1eb96d1d35e8966ac563d1ea40d6d3d2b79a9c602bafadceb +31cc10aa90012955cef8982620ae3d6d01ce14bc184f5dcdbebf94cfb5b10c42 +d174ae261dbed22fb969fcf1bb64f2bdfe0e43ef54eacce5fb5e537e872eb1bd +d7070d3bee6768186c4bc824cb828830b8696af783d3410a62fca2b996aaafab +4ee639122e65f121b941485cfb581c57df7e0c5b7e4c912b75eb6409352ff5c0 +33b1c7e4dca272245235cd8b23a5e9452652d212fad18eaa899935b90bebf320 +3c50b223eb1caaa160a4ce8469a1311c69ba2ae787edc9ee304f32afa013a0e9 +092d80c29dde16413909f3d00f9844e86dc234442748128e96b3ee0d243ac8a8 +00d872aba50e81604e5270aa9972e57b021dbb1eac08a064d250df6acf727c6a +098c99b2074af3b4bf14913fe867707fe0f9b058e05c38205d1603925f7fe1a2 +54eaa39ce49ff00bfb494cbfeec9b738750b53feaead8bce2bfa1e20cedb5e2f +d815755c40352198c1daa5d092c700d3745eaf183bc281b86e7762985bb5f730 +baa1ffa889dbb0e2f7aee08d5abc2180466eecef7c588a1c0f78453685526911 +165bcbf5cf3e9e +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +%%EndResource +/F17_0 /QYKIKI+NimbusMonL-Regu 1 1 +[ /.notdef/.notdef/fi/fl/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /quoteleft/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/bullet/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/exclamdown/cent/sterling/fraction/yen/florin/section + /currency/copyright/quotedblleft/guillemotleft/guilsinglleft/guilsinglright/fi/fl + /.notdef/endash/dagger/daggerdbl/periodcentered/.notdef/paragraph/bullet + /quotesinglbase/quotedblbase/quotedblright/guillemotright/ellipsis/perthousand/.notdef/questiondown + /.notdef/grave/acute/circumflex/tilde/macron/breve/dotaccent + /dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron + /emdash/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/AE/.notdef/ordfeminine/.notdef/.notdef/.notdef/.notdef + /Lslash/Oslash/OE/ordmasculine/.notdef/.notdef/.notdef/.notdef + /.notdef/ae/.notdef/.notdef/.notdef/dotlessi/.notdef/.notdef + /lslash/oslash/oe/germandbls/.notdef/.notdef/.notdef/.notdef] +pdfMakeFont +%%BeginResource: font BITXNG+CMMI10 +%!PS-AdobeFont-1.0: CMMI10 003.002 +%%Title: CMMI10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup +/UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /BITXNG+CMMI10 def +/FontBBox {-32 -250 1048 750 }readonly def +/UniqueID 5087385 def +/PaintType 0 def +/FontInfo 10 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI10.) readonly def +/FullName (CMMI10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +/ascent 750 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 45 /arrowhookright put +dup 58 /period put +readonly def +currentdict end +currentfile eexec +d9d66f633b846ab284bcf8b0411b772de5ce3c05ef98f858322dcea45e0874c5 +45d25fe192539d9cda4baa46d9c431465e6abf4e4271f89eded7f37be4b31fb4 +7934f62d1f46e8671f6290d6fff601d4937bf71c22d60fb800a15796421e3aa7 +72c500501d8b10c0093f6467c553250f7c27b2c3d893772614a846374a85bc4e +bec0b0a89c4c161c3956ece25274b962c854e535f418279fe26d8f83e38c5c89 +974e9a224b3cbef90a9277af10e0c7cac8dc11c41dc18b814a7682e5f0248674 +11453bc81c443407af56dca20efc9fa776eb9a127b62471340eb64c5abdf2996 +f8b24ef268e4f2eb5d212894c037686094668c31ec7af91d1170dc14429872a0 +a3e68a64db9e871f03b7c73e93f77356c3996948c2deade21d6b4a87854b79da +d4c3d1e0fc754b97495bcfc684282c4d923dfeace4ec7db525bd8d76668602ba +27b09611e4452b169c29ea7d6683a2c6246c9ddcf62885d457325b389868bc54 +3ea6dc3984ba80581133330d766998ae550e2fb5e7c707a559f67b7a34fea2f3 +bebe4226da71af8b6e8d128c7ae0b3dc7c9aa4a1faef312fc9b46399b18c437a +776de1f67caf78e15d4cc76d6fa57dad7abc6d35ede0d7118e8c6f3a201f9ea9 +eabf8a848d182eba8922addbe3c488f51eac02906400a84ea0abfaf48116cdc6 +6fbc00330a76a8818cfaeb7afdeb029a204e0a70b47a05aa50153b56d2bf6736 +c7a2c50b023ed92cfff13eba974f804a346d4130ccfd5233b6d6b92a14c87bbe +2ba216bae4123911e1856975e5cf4d94e44f400f687d2d13db288e0d821451c8 +83e9928f8cbc41e0f4b99f8b29d3b11bd4ed0cbca83d81082e39a9e79cebf433 +671b1af39c3d0e1f5bbe5f1fff62ff6f5f15f0421c56a4dffac682cb07b6f257 +221fed1902e4b69d9bc2e061f2e96f5a46734f91298494a425ef6432f2b9778c +4ebbadd3483ef5447df5f008db9d91c559950ebcedb4b1316a5aae8367a80e06 +bf3162beb99c4aaa617c60be688da7627f29c1775983ef635b26306a94f0b258 +003779f8670a1398681953b785a226057f7d1270fe2dd2ea66d65e2061fbd65f +0ac51b6c347a56e9f3e86e52f3e0bf1d5f8d6540afb32a027a7c96919557692e +b739cc298ec7999b4286538edf7333cf8f8f6ba02c5e8c62929af07acbb90861 +0bcb85345f4206e3ea130512dcfbc6cefa31ef2bd1da11d3010fec57b5b232ca +706f9c44fb9cab8903be783eca66d748b3fa5b1f5d5445f6c16a9a52c88a7e2f +2bfb0be4e416ea209a9810dd6c38e47a58dc9270b2f49f9b9d482156f7dc8164 +b621b6803b6434a2a354a50fd9353a2ce3fa761423634b8f2adcd63b2b7acf15 +07588caf127a0d6b2017a451d3df77c53e6171c66236e5318d49fab9ce4b1026 +853f65d0d5f7913d88ea66b9b63cf06a4bfc8ed3246bb86cf6de255ff46d245d +109939e32dc483a0e5176b614ccb7f1adcf99854cf50317bd081131a146ea089 +8ed59e46da7b6254bdccbc660686e2eda0ad7b894cd2eb2688c0c00aca589d39 +e3caa6e0faf7eeb5df3e3f8113dae4b454a0d8c86fee52779ad3e13a0a871e9b +65b9ef0a2ff20989bae81d1cc1181679fbedb80e7d84a08774e6da58a283ba22 +3780f2717484e066fa7dc012e6d19429b08638045352d358957917123c9c73b4 +326a954f5ebce183ba1025c00c8f559dba85e07b3ed48d2fa0acafa9436d6fdf +e530ce25ac7da170db1764e77b6816343e8a128a075e7744a6f0406551f4640e +c403ea61696459d15ee040bfb53f08700c69333b1cb28142c5b9411d65fbfb1e +c7f4f50c03d122ad4b63e9e65f0a0af43efcc9fc546fd13da42a1c13b8c9cbfa +79a480d923701306249955ce1c61a680b2809d3551325a333a189db71bc83c59 +47d17b31f8ff63564919b00336285f724d22f889748564808083ddaa4eeb8632 +5d636961e1f634f3ff3def1dcd7299bb7679dbaf685e2ac1484bd9b17c5cf4d8 +59897713b51a4deba3332c2ab5c48a76357d2eaaa539a617b09f223661bcb411 +0e6559e99a7d900336a9327d4b8330ee5f56b016cebb8c07dbcc2fa736c07ecb +8930f26b429288c6fe6cee3e7792de58ea3ce248598db0c604787612bd137d80 +e4462d249b229b62142128b57a6b44515262743bb3c70ee96aa4b8c49d6b0be4 +4e19f634add30634f999f4dfb3dcff6a412a9b6067d28751aab1b20928a6e73b +cb81b0510d551f84437062e8cd403bf8c343003965e926465b288b0aa2fc85f9 +90f9a63fce188d72008aed98bcba5ff4ae850711d2664f0857ded002e3a89fa8 +75f930ddf7918d6b2f92ae26af35f50cc9d2a8f9b5d5d80981b12ddf4c59565a +aa62ec34589e5bcc3075cc6a163e45d46bb280b22158c5c04c90beb6f8a1c791 +5597b0f69be3204d876cfa54481cc86ed2fe799bc46555c6c6fffc73854104dc +9c8a6f85331fce7c5d1f20af5d99e4e61b7ab981dd4eae26951a9447d5553140 +b5862e2f39023bc7d14901eacf467a9424a6be8055d82f4b02036cd766367871 +e0a01d09790ab2777db18248482fb32a25fadb62956b93affc59b1796f78d0b6 +6aaeee9778a3b253bd98035c79b5296e173fba9e56e8824ab6191ef9062b1fc8 +1b6b6185a05b167adccc6698b1801297d766492add5b66193d024d121633d329 +25bcf1a9ae109371aaaeb64f2805bf5c2d5a218c191e9eeb4ac30a48291c7251 +f690b51d5135f6a37f5418624c7d2f3ece356b12ec18f73d5177a24ffe371635 +fc88231b3a95d72ca2555f164c503f91b5c7ca174e43aee6534df6d569efd50d +da3e950e11c6cff788e50ce5f1332ad76a2357c39d44ea38e88b24f2d37cf29e +21b7468adfcacc8ab8fe1ae9da4c933b5f7f0a6451964a4924b6ba96c359c828 +d818166d5271e813f7a34a5b18927e66d61003392c96ab36b3e2175f31faa3d3 +7e77200bbbeba91c532c053f318f3f83080bf3d641d4c5df796c2882e34c01b9 +cf74bba01f03ef559012eeece809c019ab6d40d22a16fb9054143990db45b902 +a5574f672dda96d6c18c0fb048e970e6180e6148061e22085c7aa4fdc2102fd2 +d31e84456a56057b9d3189f331cc8354b195564cfdd23579574b7c7a80d2f3e3 +97f07cdab67407a46a4264e985563dae7ad933dac054d64a7ebce65bb2beb5fe +d53360fd76a0fe706e7283550c4d5657aa9bf62ee713592d74e89998e9b0adb2 +327a9dd5f19184a500870a3c53367431b56cc4dd60bb629ae68a009fba0049eb +16d11d5f299d5a99f3d45f6510450e53740da5556335eccd43e1408b826fc535 +10c7784c44cdbf41988ab67ffdc54ea61dd05208204c8bed9c66c678e6324428 +9682cc6ea0b2dad69cdb69dc8daacfd1a98c730dc3d9bc8d83e2fa2e72de08b0 +031ef3455ba92d03acfdb7ecf50ee883a8817abd96e58f72ae050feae0d224a5 +42aa0b4c022f8a90e73ab84216f520d6ded72680471b9ed2ce317536305d7360 +810a92f4957c9aba9328b116349fdfa728e9f042b2fd2d116bbcbbb99ec6966b +a5e1f4fbbb4b1eae6d8bdd40de5fa44127e6d7c05abad3c012082c245265096d +d4445b03ad8dc08d707ecbf0aef0890b0658dc9341fd386d417ad9f5e79c0464 +be4e3b22e4997e1806d192a8be70dfbcf69715b8194347a60e80934ed09fb08e +c4df7c3b204b07ee3610c041dff7d4c76060e4be6a3a2f0b0217005ab38f80ff +fe55a6252afa361b5cd8f3b642e6e193da913ccaeae5508c2470036aad80c0c6 +e977c374852b69a8de69aea44aaad49eb7fcd420bd55a5c5cbf073e859ba9d6a +857da20a5cc2744843ea07efcaf91e992f0a44e1e520bbca097b6965c4e30c99 +03ac3ca1af1bbeeacffd7cc22e7b9763b0876cf8308ea38828a716da7f430898 +2beecd1cb81cd95ab8fe70242026f11061a70fb42445aa9246488d6d0029df17 +dea43305ac74df52e5699b6c243025786b21fd43993a8039e9e75fce2dbb7d6b +7e4cd140e7edacc20dcb473dc45eab68d8ea296baf9bb969093862d391f84073 +5e17f87847ff2e9186080feb184ff7869a5a8bee6aafe3461454dcbcd00d2c24 +61ef831a52dbb0fa736694b4a3a4d85c6d80636b316fb12be67f0887cce6df04 +80c145ea8762ef8b2c43ae71f3c32686fd5813eb49a39bc6d4980472bd5cdbb6 +c282c9ffe2fb52656f607692e1ba726417703feccfd4aeaf9c66d543ce1506b1 +a9d6b95705f67086d4f36b06a283cec841a01f1028d95d4de419d7110f091014 +f6dc905e81add1d54f95b16cddcfd0793d1cf4a85e7a35458c81197a24fe82cb +63edde30cb6b538a708fbd41f00268a772730b85bd8860054acd93fe6b8bbcb9 +cc474568d426e83f15838520a313e0ae1b60959de340398b21986f5c404c9361 +54975d52740bec0f7abfaf271a2ac1f7553b862d45d11ae585936fbb5462e2dd +bf35e4afb7bffcbd3294be3eabec4b787133c3a5e0c95f74a71dad9be990d07c +d157d7258830a3cc3de6459140afba942eef325ee072b3a53a9f281d483eac65 +e8da50ccddb3d43baff7d8c7d7a1847d6d579ce92df1b54de141ce7a73607362 +7d909e8cd9fdc373b840145f9373bc2f02979ee34688bf840f4f9245c2ab976c +ee8bde685c47606201f6611e38a49ab72428def2c85e553313af719ab4d4f5ef +e3f3430522abff76bf8bb8f56afe11008d3f989ffadccb411dd3b7e6352ea873 +3abe5dc71b3b4832ae85bdb23f6cbfb4b2631412e4fe0050a5f7f4216508a3db +ea2d74318ed82f1a2fc791623c869593dcfd6bfb2fe57bdf06e9d1946f9bcea0 +13848fcdc603e3eca5384725118970cebcc9ebc6b74df13ad395fa6efdc22463 +5380eb1b3521aa929eba30958ae2da40852196b67ee44409d323383b0c7fa1f2 +b4fff373041d9f5eeab03d6743f0a291b481dd3ff9e8ebd77a073b8d5f5d93bc +727e6566204893af892f74fc0bc3f3e83643a93747678eb998f9c91b3a0ff942 +3d3924f507f1c7eb18249b2ab73691f5fac868720ff52183091f65ac3be8cb0e +80d257c52ea8647ef747fe304598e1ce0900a4de4031e4b6a58d7869b08a56aa +710c91ccb8afab94ad10d670e767a44e0177795ddfd65c9cdc7332716deefe3f +9e2ed8a54bb6faf63b7bf5f554b934821086c09fc28fa74ea2efd410e006be6b +ebe0c464e078c14968453dc783a788a55d925d72205492c07d0dbaee4982fbed +9b32dd19ae230da5870499feeac55b09b0970ad5926375fd79b95552816be003 +90515262b5ca891babcd81bf86847cbc5850d4a056bdc528e97aded1ea6d7b76 +bd8ec34e742a9fccf19a6310004499b1cc1a920b5f3b746bd4de2d9b9dea341d +25a7a7b60546a8f9ef99190cf8ddedb21a0103414f9f28ae8673c966b12528dc +fb70ce44db4822322605982d708a0b4bef7eb08962e3f433213d7545f351e994 +970828eb443c3bb36ab0c4cab7fadfd949e5f93273141da2b6dffb41b4678647 +93cd4e53c78a63c632d4fcbad772122e86dde337d5438e5e4342a0e18be8b014 +3ddd7290d16096f2149c6c71ad28325dddbf994e651b9d4be89430b31dec3fa7 +d2703196f7f10b5e8d98f20e14151160507e53ff1f3d4bddff3f45f9e64b1b9b +9b26b32bf389a3725c243209245bd78c2f78d67033be00ebe25955a1ac718305 +b52a0260a07220a9f7410bad935538c6c7c56f902a70730c1cf90d45a5f66c6b +a762406e512bf3cc3b52918c6e9e92893279cf86af1684d9b67d1ebbe84be9d8 +4b56548323ab381ae18c9e9570453abe77ca9d9ed1164563120b939fc3acc33d +49f5e989a74ac760f0c99458295278efde92e99003c4780935d12eda68a82308 +ba444819ea9fd930c80263b57ec1b9164aa50ce386b8ef81a53a710416c6c868 +794bddb4fe463b3c59ff9fd085fc7ec37cf2abb7df09d41113f4542f72bffda6 +1fafef41c462eabcc7a3b4fbe46cac256c7af4309a617e73e7934450434e344b +5cb6ddf2e63f4523f1526ed2f79522eae16b23dd9ff4924053a0fa7c4a0b29ff +f4485c041b06147d2c94d276553f443c2980cb96ef5da49bfda4ee95bbf092ac +e2dee947d0c711c1930500b79a5424e8494df6e1798b009a3816342f4d1d7cb0 +b7bf239f3d60361ac605020591740d13ce386bca1e69a2e8063c62f9959c9fb9 +010ae39f18882b1e3b3d0d9b0447db7f7f7a3810375372702686b224896bf5e4 +cd40e308b5a6988b614d8088c296171423cab2657cfb98f462afe21e990b0c74 +4c8738d1b13097ca887ccfd3eabe4f1e29df71d0e51046957409964f9f02a33d +78b2a5bac5058bda0dd8a65fe6c53dff9310fd2b97afd24f39e586417dcc18a1 +5c0be1795e0f2c3d785f8cc1ab5505bb8fc0dfa1364f08876a42dae3383f853f +84e7e54405bb8d00911c5b8ef4794494d9bf076d57a65f2392628b61ff967c77 +29114960e00fadc36961617c61c673bd2d2e4a9d54702233c8414026e67940bd +ed16e2d3822f06068502c0966f2ff68f74d11a0b780b95f3f52bcc162a37b6ef +48cf5ff8513cf4183176734f80b9835401b3db6bd53597645873fa96488eb183 +646b577037e5717952d23cc71ee1780b3df42d9c768804fc47cf147db059b9ee +7a6399d4f4afcf2d296902f16d56d6df28ac4c9a96e357678ba901fe72ce3d2f +b10fbf263146547d455df1bc33a1dfa753251c264db8798da35943a4940962f9 +e3b8a68d2b094177154ba30af7bd201cad919c09a34536e41d6c5772873c0634 +fef84dca5f1a5d5488997e279876af1dfb3f51790a6ae085d09ea4e1947fc10b +987c2db0634c100484f4b45404119fee7a7ec81111029cff1b4cfa1a8637d4a5 +ad472b5ac0cb9f428cb1df8abfea3db8082a26cc815437ab387e7f87902398d2 +e0c6bf6c95c2381f15b61fb2c5bdb8684afbb7a6c1a01ca2286a8dff62e52a16 +3d7c748c1b2c63d2933012c5306cb7efb0b4cd733c56ba7700acc731d294f7a1 +1f2a1f8f461983f2972da8c3dbb3f9117f7a6f3583c8a5dcabb364ac0310457f +93fbca26c31482d806c6a7a4f87f4cb92e3f30b4dd2dd5e3da5360430c008237 +7165549aa416a73c62a50b707074b2b7ded2b07454574f60861cd2f0342e4f78 +24789278e711f18ef858b819a0accb67384b47145fee30b32181d66ff47aa657 +83f0cccb693ac70657bc2bf204974bb3bcbffcd6540477e7a973718754acbe68 +823672daeaf24c93263a57598ac4bc999120e367aaa4b54c643e8c8987024b07 +9b0d40fb33d55cee534e3a38a1a316276704e9a6df08553fde29e4d4526225d1 +fbda6f8cb78098e83e8a360de3c4c77e2998094f920aaba9c7587735cd2f22cb +e17c6b99a8286519242f18de4aabbe470bb8e0931ec7f5c19e1c304df56f2368 +70d154e925c4f2e5012d52a0283ea52acefa09d2a8ecc832358868bce8efba7c +492e3575c1605150a3f7d6822960f1a9975151c7b6e928fc07f73493351895b3 +5ea783de8482144ddfaf6f881d0835472a603fcd52464da80de0c380fed5cc67 +e38eea70c066dadf026e03fe00be35c6310f64aca4b991ed4bc4eb125b4c0a79 +b87109b442c0b624c340271988ca36e92157ebe00ace90fa4515b6c649b9ef36 +f82cfb4954c124878dfece799bd987ee930148967069b9e6ff5663689e5d186c +26dbdfa146c3dd3ab9c2104fa4e92423c88a0821443aa8008b11008525290207 +146118e39b4d7893fdc8c7225f4c97fa3f1cc264122afa3a87d630ef325d3778 +28ecba34700bae5038bc2a1c2e0476351d9e73cb623cf58eb35d4c518630ef2a +f8b64bed95d72bb7403e652e2dda6faad38fe8fe4319ae190f0496a1c6806cca +10efc6d15c7e19522b152476c36f9644a599da6786df08fe7981f9eaa0e8611f +880ce7444e6e72e82aefccf6ae7aa0ae68f883d9f85b8126a6c52687c0ffe6d4 +fc712eae8bcaf81dbfddd0a58717c4cea5ebc76c94567833f5549daa0cf6254c +627a1a0662537ad3b43c6f3a90d553bd6e7e841769777c502e4dd5fb8b15431a +61ad9b26cd69b5d7d2b28776074e7b7beb25da2d5b8ce39e2d982b9fb9122e6f +401cdba8684365458bd82680150de4ea9c386dc6666e613f4de18bcf4540ce5e +663a6f3de86e8ff97339085dd62fc33bdaed076740de76c1830a14618ced99f8 +07519a5526f787b5f96e8086ff187ddc36ab3b385520dd23ceb0b0a779c97537 +496cdcbd8b82bc87bd2473acc490c6a86a6e6f85496a2dabbe2c92f4394c23bb +714c0cdce7c02a397f2a66862ac165931eadc3dd374873357e315c8cd99f00b9 +20d3c62c04401d15413d4c640c2aa4caf5fa5db6eecf4ecf43478b2ed317e06f +cdbab783a6921463b346d8bf72e98a4d7fbe011cbe565cb54a7157af3fa4d5c9 +d6a36c7600f5a884595278efddf5085f74c3d7d8e9beb3be3f7f6131e8233b08 +4b16dfda9cc778dc10adda42786156d707750d12c920cc297e8f58578d5084a8 +6d68a5180a +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +%%EndResource +/F123_0 /BITXNG+CMMI10 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/arrowhookright/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/period/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef] +pdfMakeFont +%%BeginResource: font ZWXELK+NimbusMonL-Bold +%!PS-AdobeFont-1.0: NimbusMonL-Bold 1.05 +%%CreationDate: Wed Dec 22 1999 +% Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development +% (URW)++,Copyright 1999 by (URW)++ Design & Development +% See the file COPYING (GNU General Public License) for license conditions. +% As a special exception, permission is granted to include this font +% program in a Postscript or PDF file that consists of a document that +% contains text to be displayed or printed using this font, regardless +% of the conditions or license applying to the document itself. +12 dict begin +/FontInfo 10 dict dup begin +/version (1.05) readonly def +/Notice ((URW)++,Copyright 1999 by (URW)++ Design & Development. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def +/Copyright (Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development) readonly def +/FullName (Nimbus Mono L Bold) readonly def +/FamilyName (Nimbus Mono L) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0.0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/FontName /ZWXELK+NimbusMonL-Bold def +/PaintType 0 def +/WMode 0 def +/FontBBox {-43 -278 681 871} readonly def +/FontType 1 def +/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def +/Encoding StandardEncoding def +currentdict end +currentfile eexec +d9d66f633b846a989b9974b0179fc6cc445bc2c03103c68570a7b354a4a280ae +6fbf7f9888e039ab60fcaf852eb4ce3afeb979d5ea70fde44a2ae5c8c0166c27 +bf9665eea11c7d2329c1a211dd26bb372be5822f5ea70d99eb578c7befd44cdf +045a363056e5e1cc51525ea6fc061dcebb337208eff729802376a2801424f670 +0e7e6397b28f15bc10b40012b0a3eaeb2693e8f7f627c4c9c7c6c5bff105c1e4 +1b2b9e8f09253b61177e95ea219474796072f4b363fe05fa7637750ee32abe88 +6f7c1368d9ce6c8e0c490dfce9b86d093c646a926013616599be4a08eeab1ef9 +4d9066aa43407ce8754ca1bb33035af23db30794e2d3368c4fa14ccccbdeaf01 +2caf3cd75f4a9430011661c1bf054a530ddc57f032ecffb56ef20be97a76074d +a40f2ab5f5ca4b83c12482c76211aebb54d996a3771a33008145b436f16e5100 +3c766da4e9fc3ac88ac60879f47b0d72099a606f615cd397a05aed4a92a6e86b +6a9685a3fce4cb303371639026c74f19dd67a353e70a7f40b4d317f830c0342a +9f2fec7a3304e4c4009e2bc3f0dcee97c8381bc7682c6d3f80d93a69ce5d74bb +b3ae9b016bca6cf044056c8ab210f7f1ab28c6b4c457d0184278951c4e2bd743 +41f9c9c8fafb9f11da77c2ce9f820e65ba3b7184d08598f9ecc956d38ffa3d71 +0ef485905434474fbb7cf4b43b193a537efe076c26a9251d45d06ff575a5b9a6 +20ec66effcfa67a9e089a1a78ab7331d3841898dd7476d70a2a97c8f6c283fae +4010a9eb770604ba65878fa2105d063a44c56e21bd4847b542af04cec1cfc7d5 +ec2b1ee2103bd35e162f2dc6d1f224925a0d7eb5b883a6eff782245605bb8fcc +1e0453694af4725205d9225ffa329bbdd4392fcccb8dac6a0e8be2059177757e +2fc359426f4e1ed2e19ca9b5311c2e77ef9f97618b0c337a906ff39926d2b0b7 +883abba6508102d9f4fb0387d88d82973b53718c98d58c9b83d2a62386b74c16 +9cb5c33dda965420dd78aa19ff23f88bd2355f93ebaca543d8b18ea36b4ee8fc +b5924e01f73a9501819be812383107d361fe8c805163a6957de6aa4af7fa6963 +e77ac8e5d39349be33448d2f6258da61aaf47917c66c7c5ae99a990b727c6c70 +20f14175225efea39202b489cb6623c51f41fe9a5f6d3be27796e51be6945774 +6cdc1ec49ed6114400f4724ecff05fe0bed476dd3d5650ce735475ff6f232456 +5918f9ed222319d2a544aa4a74be19f45cd466fcf191e7ea641ea38f9d3133f8 +872bafe19691dcdf0bce48ed6fd0e0ee9a81faa6dff8b239874ffe2072a73107 +0ffb5095f90a653a1690655a9b4287545138b8049e04eeb928256a05a73edf71 +4e0c8692f37cf1d7e3defd43b2b428f853f35bd79f3811fa7bf788d1c1cf4a61 +65b8eebc60521fac324403d3bca11817c9d15012e0be84e194435fd27361e68d +79b52b6c9a96c1a40596f048a31c49088b883ee21d9bd24b48e4d1e03e7378c0 +5b62dc00623f9c5dbe5087eb9122de23199ac72b491ff847674d6141ca7facd9 +6bdbfc373e1e1f87881fd7bc3a7d64292c55a687f3837424612103bd6be8fe2c +0b3f529ff61d27d3fe8cbb25636f48e6a41f205d04a802e50fd974cfa67f94ec +19c3ec32aa714e650af284926ec5f2e29bb880efc696d77d210536d7d1148ac9 +ea9263bc02d2ba97369f2ab531944e132484c3f2c2638b01fc97731f1b39a492 +4822b5265773a5e86a17a41e7346b7c4c48029f58450663e0d09836d75ca7f8a +d9a78eeea4f41976945501f32bb383455467d217777e642f32777bbd74cff9c7 +97041d0a982ab1c0d4999077201cc9ab52a92cf959cafd2e6790ab45f6927c7e +96f24481280a0242e823e22a4e32669bc829ef1b7ec3fa34e9cdd920b0f7e2c3 +8f138ee0922fbdd3d7bec614805aa562591c3969760019c54ede008db2c2f8af +bc66034e5810bc32c823b819eb39a15c0f25be8f2dfe5a01b90848a5adcc95de +49241dc602f4b71f8901fbb38725ee7ff097f769c017f16598b835a0b93cc6aa +c437310f1a7d586cc05048684af27ef3c09f72ac62adb2f4fe7f99d1340d27c4 +479c144afdc37e4131d8fc6479afbb1004ba15e3e5d0ee470b9811a0f51294c6 +dee3fa7431267cb6ec7a96c590ebc1cc7333a103eddc21219f392ddbea601d6d +dce7a8645953235a0ab6d46578e8e438ffc41be6b509b844b73e586131f694bf +f0ed77a7847f7c747410cbba2473f5869eda83ec8118d800f3b2a7b5ea03e16b +204962bc68ac47bcc5d29f88aee951c2452d22aa967d32c3f37a91ba88baad3d +bc74cf2c7fbf0c76faa4eb347390dd08303b439cb1f1a3363d265fec5734c81c +bf1af913f88820cc29f4a3b54c712e006e1d6bd993668999c3ad54676c71fda5 +e29df4c794a4fa812b13ad32b28bc57e05c7908b8334bd4fe842d57b04423fd0 +db3a43eb047f86eb925dfe31a012031f36d5f6099187724b0e2203ca1da764db +623d1e0a59b9fe47d7d4d67c241d297bc5a6641770f5e9f75c572675ae6e69e7 +ae37627c1e4d3ba60b95605da55c67c5f6ef7ae2049ea3d1246a0c03309ebd39 +951a398883fc919a711e8e891d914459d4296bc3a584610663af1c2ff053c137 +9f447f918ca55c5dd4a52a060d1725c26e6940371eb4fd9d254749d04ebc0f11 +06f62a30d3f714a33e4f65f4dd0b20daaa10aa02b9a6e6eeec07fd93d19f9c0a +6cd6bde1d7ccd1a973bf297fe6a8821e03a381c468b9adfde87a4b7f484a55ff +a5b83052ac23f4b3644234d935485f912cba1c84227a609b32509552ad1d7ce4 +6f564f7f9da1e131d9921befbf53cad1adfee699702cb6bc949688b30f0b4f3f +d3afc9caa04a796e5afe2aa8f8e14a7959731a74dc4b215d7ec095ebe86a3863 +ef6d7975c3d2edc2e7c2f5d2c8cfc5f6fda37368a54dc07a7026ebe9e2d290b1 +eedfe0322838aad2f5be5c299a658f47d0487584b1f9e7def39aaddd212138e0 +8a8d2479be76477e5193944353796d86aa5e2ebce0a453bae8cd9bc976a14910 +93b30d44f25a29808227330b98bb42bad91b4964f6832f2946b0ff1701853c49 +dc522636d5b7fb6ef764097a17da725c3af793585d24c91627f49e83271b7498 +cbd67abde015c94f5f24579852564ef01dc4ad98f15d522bd15fb9043b241350 +2b1f128d874c1d119798ebb0e11be341f78db622204aef7778aa81055bf4b7e8 +c455a6398d7d5dac94a5007b4f76265bc8875392b5354bd38ddc111dbb8b5b92 +15beaf72f041f17d55b49b81f3d1279bb7a5ccb1a9daaf125e79d5ad7dab0595 +9e694040bce7da09f795dd3cd508b405c6bd07cc7ee9bfe298156ff2620bc3cb +cc7b27d9618e04a2ee6e3744d7a344f6554e0baa2290b2082f996026adc420c6 +76ad5978868e062323522240a388179de4d224f19182ba7a35c3aa952844df49 +f6c532d429e5c86f89d1e697fce1b50861cca95504dd63423bf603b14459b7c6 +91bf64bed93e5ca158ed057c9bf9160f61584608ee366e3be548bf2dc46c219e +9e0acdbaaca1a5b02770bbf21dede6a80f3af65ae92a9089683dce3ec5e6ec68 +9de2dc208f7304afddf88f35e1f428dbe74e7042766346ec02e1eda87b8c246f +89a0eb22d1c6fdb17142af0c8c0b565ab6db819d2ae2bb3bad7c7778c53b2686 +72191116278357d8659bcc81753c2906eac08fc3fb966aa5ded522da2a5edf40 +9a3eeb5735617e77a7a77009cd38c2b62bcb89ab73052cce4526f4f02bbec777 +e6ca65c90ff5931dadf03da48afb8561fc2e71008fb1d1d4343512ada1b78e71 +0a10079f211faa5227eb0b30588e9e03fad6d901dca2b6bac956eb8cd2ccfad8 +80e8cb37e31fa6a8206f6a9a2a9e1cfff1205345019a0feaecde57fb0fa418c6 +f4cb83025e7180e50394f52064d8ea0383b80482e48ac91c24d10c7ddabe98b2 +13eaacad917275e916fc0803796efc1f9597f8952547d27dee1fad9ac1fa6d10 +27127514e0f2dcdf9ca30393cefc7cda027c85e53d10ce53796529fb13b079c2 +0c7402109235a0c25965b3b7d741e90e500ec2476c5dd11dfae57d6f57b218c4 +b9cce956161aff0a55a52eb58a59d7a62d90b110f9a0dd26b8c902122271a38b +7923957a15d11cf1427ce56323c7e4428d2ee1ec6b1c465be35668b0a7ac8eb8 +af1f080a993c3c74871e4b7bdb2602d07587aed96ddb05374c2aadaa24486f9a +831ba1179b2ea3602d071411f1756b58168f9ffb572d787b2ffe01bc07c04d48 +f893271ee576454a86a0c216b224e0de81d66ace456d352a5b2537eb96be26e0 +342e4165d30208448c9314ec962ac31ee36f887d0cf61a575444b31180850172 +10ce125407e77e5c63c947fa320845efd26c85ae8813a99e518d679137ae1dfa +9e9f19c49b461da073dc1be4a9d32f6ad62d05afdcdce4e33091132d471edcae +38607b7f5a17e7340b4e1a110bf7ed2bbbb9ad9b8ab909430f29f87b1db0a04f +a4a80796d144bc1875a846990df6fb3f14a1457be695a3cf1a5c16878d44be38 +107e327ec4096cd66caa90efb30bf9837ad04d995c4f9165b1ef14d394b71ff1 +281b0d67d4d3cd375c79603efa6e0830183be17f77e7d5423dbe0776fa1387d7 +df0dccfbda67f6ada4d87dc8c6325f0460690be677aa6db7e0250b5196b420d0 +cc8d66fec329d81a7584a5d001c2c3e42350eb22313f036b5ae64868fc6aeed9 +af95ec8f2aeefe4a95e69cc77f321fb7e7aeaa45b2f56d92d0956bf321ad859b +d2e2bbe984b17fe9303f13428a68d6a1959288ffb63d800c11ffb6226920324f +6517eb5373f2b8f058be35adbc7ff15a2b0a81683aea4ff11071451a49efd1cc +f15664182fc26672cf89416da86a3b8cfb45510e1ebbe11060963434bcb7581c +4816bbd63c6d79dbdca7dcf26a4217bff8060ad7955402af67fe4743997a028c +c33d49847b57712e0e23a1c5b72da33198426130a132be52890df4423fe21d4d +2625e646ce72588478bf941f1f74e875812f7d7ac9c54d0ddcd12178abf50bcf +f5131713cf9c42d0faf6cde696534896406a8a5234a8ac19bfd531ca934c35e1 +576099082701fce199811dd294cc46ca147d5a187c3737d3d128ee8d437a2afb +114183da45b49ddc768c31e35c395c3bf67a79f8b1ac292f38ab2ef721453256 +523e9dc08e80bedabece9bc9af135276c819140d7a0e966156dea6e2f7aae463 +c634c4de83feff86407b556651a455077d64b52c5ff4b80250d312dbdf83dc0e +b9ebd541aa9fbfddef1f775be0c411788b054aad44c85d8723ca7d2a6b00cca2 +4ac55e90ec48e4acc15be17b9544bb71ad967c4b8437470e4d020fc6e8677251 +92e2307b51148b2cf46fc1b7f2b149ebc1ebb02c33477b4c56e56a9f06566377 +d2de31c00d90ff5ddb509f8ed457e915c6fee8103da73b5d782bffad7f7c029e +12e1930e95fd7b7bb37c48b7cc48d99dc9aa79388c90bf6c7c0b83c7f7fc0935 +8fd5f673dcc906c7e0fa7711abe8258828289ef48a40723e39b7ec79f2d3822c +6f45a6ae0745413ce860467d7cc0aef52c680b8cf1767915d3550d9813b5bde7 +1c21b0f7b7119bb0e1eae6a7874ff0588adf14626d101b4e117c63f2e7a60627 +dc40cb9ab16032434469f390804b9039e21f1afc9380f26571e3b2c64a86c851 +74fc32a61b787769985079d60cf71131977accec6954da9032b1333396fd5450 +00e364e7e6a79bdbc9f1e842e222ca480f1f22089a38079692312519392296ef +08f00707ec53e1cf114795631e3b14687b9e351f1b7bd44d6f7d41ac91e8404d +8ae952c3c78e4a6bc9ad64ac1baeb952053c409cfad43a877a7c420006ce3e9e +0278a33cebd6d9d9737432c982165ed82c45d26f55c133162a41be27005cd6fd +e60cc41bc098314a5a1619dedc6bd9acc637f398219f9a3c543f8421ad4c4e58 +9265d23edb6cb45f2273a908ca416ad8c32c2992d9efa95d86e631ac8fad778f +ef9936c2dff4053cfb253c24c65bd20fd534d6509c0c141a358d4ad95bd9b5af +8abb5cacb94788cbf6c43bb54d52751d05a1a2e6848c33ab9b769ca9bccd8e3b +ee742c0d93ecba4c5c31c1d32a567d4213522f2a5687b014351cc01a42c14208 +69ef5852aa703ba076abcd4c6653fe6c4100bfbe047e34d4d6e9c62a6e5532e3 +f9ac9e7cac24e076546134c226f38ad0f51f8f2dd8501a001b5c0da65d9286eb +3560b947ee38fa27a502e87f8c99ffcd54b1d128096360be6c5b6f3e536c57e9 +1acffa0392e87026f5acadd1d81295d54155ac6154e247d95bad5d9ace11215a +e0ca996979f6dd8e94e7567ea17b8827ea4d5d5c9a8484ca568332bac134f993 +91505c7fbd8ba336f9c37d6dedd17261483c232995658b078fe8f1a312cf74ca +de87453964bc73a936a0ea09f74e9b0822b8336cc888f0f1f399061c342c8b18 +1d93b17a0afe2a2a69acf2f91ecbc8441db2aa35091968a0408b2abbfa35e4cc +77208f81b76a199312d8b3c3426e49e08f8359e6ceb694550f4b8fb113f2b977 +937eb20585083e72e0abd60e60ca4ac0f216b65b7a9bcbe1005c5b8bbddb702d +ca9da36f1fd416315266905f3ca5ed221be1ec496c5b16070bbe38ea094ae5ef +be93eb0eacb95603d7c36ba04f606a11ad22580b1ee5498ffae48f218108b774 +d71bde64b7de26f696d95abd3c13853aa368cd2582f2b03be9b7ac59e9bf0207 +df0ad55054c594811c5e89277d3804d058e1fa5419b15d11605066742d284108 +7411f111e7375c6710060d26e0b60f6aa8387f348cf2bcc5762c16ef320e24c1 +755f88376f5f2ec00b4121861518c97145a7105bd0d571454c177da407fbfbc3 +4a93ee4852b09cb436f682f9f84da4d61ecf72f8f801a548a9304f19163d6bb8 +12f5de6e1f2b4ccc494015627416d54877ee71221b95fe357bf67271242a8f17 +a4eb4be3b7a649c234524b2554a8fd24210b7acefdecb2198265167b8bb28593 +07ed7a654e9a6e2119e6dd14fb33faa084c71e930b8035952b87fe8b4a297dc0 +e4a89d17214cf1063caac03d4bdd5b4fd62bfa6897811c3494ec3018c558282c +2efa94538edde156727152eea21c6e3f88f68a0176aaee333b79e6b37344bfe2 +77292544c72d4023a3728c2e39d2841c2450465852d02503fe0a871700b470c1 +a73d8c1db644db39e9c1ce3ccbf2149625e915599ecc3091e15e0a74768ed5b1 +8271fc242e10bd83e73b4636cf874ca6e6d756e707e671d99fc43d61ce6bf80c +3a3be178d9f5d3cb32ca669cf99b70b10dad7d270d0cd85a9865d60df07fdd94 +cd +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +%%EndResource +/F335_0 /ZWXELK+NimbusMonL-Bold 1 1 +[ /.notdef/.notdef/fi/fl/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /quoteleft/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/bullet/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/exclamdown/cent/sterling/fraction/yen/florin/section + /currency/copyright/quotedblleft/guillemotleft/guilsinglleft/guilsinglright/fi/fl + /.notdef/endash/dagger/daggerdbl/periodcentered/.notdef/paragraph/bullet + /quotesinglbase/quotedblbase/quotedblright/guillemotright/ellipsis/perthousand/.notdef/questiondown + /.notdef/grave/acute/circumflex/tilde/macron/breve/dotaccent + /dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron + /emdash/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/AE/.notdef/ordfeminine/.notdef/.notdef/.notdef/.notdef + /Lslash/Oslash/OE/ordmasculine/.notdef/.notdef/.notdef/.notdef + /.notdef/ae/.notdef/.notdef/.notdef/dotlessi/.notdef/.notdef + /lslash/oslash/oe/germandbls/.notdef/.notdef/.notdef/.notdef] +pdfMakeFont +%%BeginResource: font FRBTTO+CMSY10 +%!PS-AdobeFont-1.0: CMSY10 003.002 +%%Title: CMSY10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSY10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup +/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /FRBTTO+CMSY10 def +/FontBBox {-29 -960 1116 775 }readonly def +/UniqueID 5096651 def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def +/FullName (CMSY10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 32 /arrowleft put +readonly def +currentdict end +currentfile eexec +d9d66f633b846ab284bcf8b0411b772de5cd06dfe1be899059c588357426d7a0 +7b684c079a47d271426064ad18cb9750d8a986d1d67c1b2aeef8ce785cc19c81 +de96489f740045c5e342f02da1c9f9f3c167651e646f1a67cf379789e311ef91 +511d0f605b045b279357d6fc8537c233e7aee6a4fdbe73e75a39eb206d20a6f6 +1021961b748d419ebeeb028b592124e174ca595c108e12725b9875544955cffd +028b698ef742bc8c19f979e35b8e99caddddc89cc6c59733f2a24bc3af36ad86 +1319147a4a219ecb92c71915919c4ab77300264235f643a995902219a56d8626 +de036037defbd3a2c6bb91c73375b5674e43810b4f7eccb675b36f35d63d9ec2 +def21c5fe49b54f92f0d18b89289682cb097244225af6400f6ca98efaf336c9f +c304161e2006b3bedbff4dd36fa7a8f7594c02dab68c077e83335ee6d018f860 +8d9a9131325d953d6c38c7e0a34236506c1e70cb6657dafc3c9520131a251350 +49034e216ae175cb232c2ef5a3c569ab581f936ef4e8b8c8bccac287f06f24ee +1d15d2819058bd9aebc4ea91b74935f6d411562a453674b14bd76fbf5f298f9e +8fd37f529f9e0450bbbe473b5a4039d8d0228f56330fa15411d7544ce700984e +09593a854180d3100e136beea91daedaac36cca03d82b83d953880307edbd0f0 +014451ec8f10b1e30b51c2f9055e906272f02f32085e4b9fbe5a6860a74e274a +74349069b6eb90fce84259d281f037d6de9f42fe557f5f13a87e5c9f668dfb8e +f5e7f4b5ef9f5841b3885a6c8994bfd27fe35fa3cc1dbd5ac68e1c98c0d0ecc3 +bd2795e77848b5faf604f01362ca473ac72284a56cabb68f35ba43ddc6158955 +5bc6614cbcf4b80872c2cc66b6f4f90c315bf73b34e481705ee8b54eef70fbaa +71424420120f27d8853933e3ad4d8026397b040c88567f440df538120d61d0b5 +8232d66e2e006866b60ae46c3f4bda16a2eb5b248bb88a11b3fa4770f0f6c31c +dd13bab11c2f4ac77a63f703a5824638fb765033dce02f584f36c879416fbfb1 +ee7eebe75d57711b44824db906885934dfa7f386b811a2598fd5cca2585045f0 +4cfd32e35f32b90badb9a96f48957b0a311778d21914c9ea27bfbc75197cbb6f +0df8f6fa574e1f1d529a4594f2a6ed99b98fd302f4fb2694e3986c1f46ff165c +7f4c1102526831ae1e469e62f1a6adcf7d2b876c0d43f85d20a6a5dbc2280884 +1c7666d56f832b66cf189c4debed1fb37df76c3f1c632ade8822eead5e7f52ac +e65daa6d86e410d469a7844baa4fc9d28e21490b8cb2d3b2fbe718f55211fe5f +74d3573b99bfccf198c775402823aa742acca713d30b55a09c7b7ce3f5f5517d +6133e546a86c0395bef3387804ac1b07a4d27492485741a8c2ade23bb321da56 +ded0fe0d43baca1483566fb397db76ba9eec923fc2b3941f3b949cb13dcbdc3e +2c84c6e3a7abbe5c22abf9b6959a17d152ed0576524395d8a5049c5144680a19 +0ed3405f2c9ec716cb9c0fbd6b12168d62666ce74149f8505e02aab39977d99a +13a66449c9487a6b2863f7338378fb901e8ac981ec53ca555049b3667b4bcea9 +cd731a850ceecd59afbca1ed2fec76c18fcf5ba1b9fbd81eb84c254fa140eb99 +48838693123cde50278e4aa3cbdb7f7691d52cc624b4226855a74d3ff4b3eb3f +e193702ad68437760ed7173ddb5031737de3470f9340a44e92355ef033958954 +e5b33866ba86201a7951a68783b94f2984b40dac3037d3e6d2250e850984470c +a4fa92527aa313f3f366e97b87d05e114468dcf43ce4a27b9999e24295cbead6 +7dfac0c6d99e7332662743f379dee2b05fc7aed3ae405d631e3893b16e1a3771 +278319e6014b88fc346b4f3d17edfeab40d6552092a8dc6c2cdd506f458bde17 +e66b02d4992a0e370871035bda2106ecf7fab7ced8e8d35c6fbb825ed724b726 +8ce5f3f25d11386c958fe4b773b9268484c12f90e2e25e299a2154e5c480610d +f302e1aceed9d0b3e11681bd5322a13b8fe895fc755e0053890a4135f2993642 +3d11dba2766edb9954e308ad998fb1cfbc2285d1f7a9135d2f06cd2d7f7d7b88 +d1c6c9409fd3962b8b1c9a690e01fda96361ce706ec9dbe3b4d3e0d57baa0d4e +a98200ef682573f9aae9f09e2000b9d7e14ea41682e4e5ac56dae4cec783bf61 +a99a5df4e83fd52c0c02edf26274a16c939868103691ff4f8876c25fa70652e9 +ccb3399053205e0350ed215170f709c1901bf7b97236f7bcc13ba5b35a96e8bf +c6e476d81e396b0c79118e16b5489279703b1a44c9d7e320936a19ed319cd03a +f052845dacdd9b627a47433f2225827c65dda57721e8b196cd368dcba55250e8 +24e6b7b93affbdd429c9bd8e4523d8e8a56427acc3e5bf1b2db9b60cc832002f +1bc52025f18e7d87d9bf1b8cd8dc170c6dcb85af5afc1ac4a24c0e38cfc0f4d9 +8d63cbf3b5cf6f14d902ac8a9b4c48a5d4ba4bdcf4f3b69e2998f507719e2bd7 +db63597995c5cdbba59f9b010a135f4dcc8cfd602d40b30730125606fd1b27f4 +9ccfb1d0f6a97453a8c9a40f643fddb1581504132883598385c4f76b4e57b559 +c0ed46d83ce8427db396e96bb3dbc307df52ed28dad5cf5e32d82510300241fc +fdec6d84bb008cce0fe96c7c6d836fd3c8eca9341951e5ba15ad84a1799d137c +938fda761f12ef2b7e90a49f1ec49445b5638ed4b2d903924dc6ebd72fadf61d +16eb74d88503fc48659a86d95043b4e9764eeee72247367d0ca6ec0dee079f9e +5db531a1411790c08c942b7ce7b028e4b956d5f1df8a47a8ac6c37824b661b57 +147ade729f5fed3dfb47227b27aa34cb86584d20a628bf18c395b186ef197a2f +dcb3b6d97ad24cc35a847cb98944011ec6342d0ff9e13045ed70b68a1a5a53fa +b8f341c7e187ac0888b3c8e119d8b841e494b9c1bd746cbeb1ce48fda15b0054 +817873ce4da21d8550892ab4a06565a98fa666a6be00776bda87181ef8483129 +3708a88f69228dd0c3ef8224301dd8fe81b4abc3563f69bf1212897af3e738c6 +c57cbfa53e64ff6a79549a8d81c3b5566dc7e697e11971a7cc6743ca1991f391 +efd8c0ba9a01397a05bbe5548843de7f2fc4747eba91c5988605a76f1d2aed97 +398cc672cfd5498ba16f6aaf55ed4bf613786aa1ba2e092c06cdf82b6231b0d6 +b2f10cc3499b6c444cef515a033381f7b6502d6e6ff4bcf2bd273cd059bddf06 +652dec312ff80e8c9f37818c2a453523976487f1a46f8e967b5d43aa3e24fe03 +46097a6721d0882aa36fba00d3056a8ad42d4efb81edcda5cdad6ff2388fc54b +775167dd8d709c2a315e130e822ed68a889dcec2ebb10c4c56897ef4c8fffcf8 +6d0d146c61ce0d5d2514ec2e22a66090bba95fae51b7691c7f1ae470c0f6c58e +1eca070773920235792e58838f031cd2cdae29f1e61ca254a1ed00a6f664314b +9fa26bababcc8a6add7faba2081b6e307a17aa47ae1de11f7189b78feb61a957 +51e9257a84d3184ab2b9d858a41aa2c23374497930c4bea32e04d32389c55b93 +23a41d83442345d482927070af462aaba8f5b1de9876ef724fd364ce6e376e0b +a411d2036639832aaf1bec583af5bee73ec7bc9a3a2acdde4c1d6602cd8d15c3 +39922661926a3b2b1d7b15bb30870929d0da419267c3b04b2aea81584bc202db +56b6277ad95af3cc411dda29096eeef6cf0bb3d554bc9411c39990db4ccedf0e +4aebeff2e95e4469a8fd5ba6f03a733c9ddcb832c221f114de5587fa7c9b0096 +2306f9355684eb66d1558aea7150817df7fcd27c3dff8c9abbbe47c2354f7c50 +c306e8739a39f1a71e8e7de4e5932a0a1d2b677041802cb02cc13d7c6aab3235 +1143c982379bf5d50c92ef96afb597d81c107f2ee92f46a81b1bc9b9cb30a296 +74529ce1ba8a022e221c77650c681a19bf0e5080a065e4d66d70f2ee4a876fb4 +40b0b1e29681ff5ff0ea41d27f33a7e25115e9bf421e56f47e24f03945a2ba16 +906a3d0a8b5d3f20abe89d7b7705af5f0f3533f7a546ee67d3bfb3349d4299e8 +e49bec41a8ab12e1bd71b2cff0cb0f1fdfc0ded134b5078a1e87a490d0ee31ae +506618d409acf32cd653c59f36f4e3bc051ca072a4a75b91ddc17660e00cbcb5 +b1fb8d17f4bf7f78f74724ff9f1b84a5eacf2e7da1b9ce0bcc94b7a817dccfbe +46cd999463b0b19a91823d18adc1662117011f2acbbdaa2e062fe77706c48952 +38ba2840d9d98b9a7a0d63b8bd40c34e26496d979edda33e5821c86d9565f1ca +40ce6c160e57ff22d2564348e8f89d38d46b17d591053c79f89c4e750d619407 +eaa5a8bdc52ea6c6ef02744eb4a5c4886c32b210b86b41495d8729174df80f7f +b653a2e6ff5996d96eb51a828d0606998fd526a82a5e8e1dc79127fc6340000f +e218fc26b7c97c3cdfcec5a497f7be1ed11aedb012ffead9aa2b94630ead80b6 +3ca17e79276dec733c9955e9813970215fbe02a751bcdaf5e427a64e9b47b4ef +e105983e0e02c5a8cdc06a5db4126ef333583e4aa17a3fd944ed803d4ef88501 +bd626e0d1d8d7b71176259283e22d9382ae88bbec9cd6ba87933f86fe28af800 +dc2080f38948e3c20d8f4477e2b9f85da4800cbd1b9015eb64a07b459215caa5 +c38b7781d919e199112e241556e1e7681a749cf67a6b246b6b245d34ebaf1504 +f06366b8a1faaf10bb4304579640f2cbf3fb339df697701f6c51afa09351e699 +890462e1a8152f70f301b5f3a01c549371be46d138045ffed5411192bf6eeb13 +51d407ffa26d4b8e7b267a3b3cd5bf9e06816df2e35b6937cccf16b4eb9ca3f1 +272a16fd71588054016ef2743c1bd58c6bf22f083fa9326d19299ecbcf66f4b9 +afed95e1e2a2f8792328e3af6025da7baa1b10a721bc511e9c2f302673df78b9 +f466e742ab2bacd5728bef45dfef5b74d1da674f4b1c8d51a324fa24b23d141a +e082d79c3fea6440336329105d33aa1a960eead51cd500252a4d7d481cc31a99 +e9a59e3b4364a3e19805c97270bd19b031146afd9f46111a10bf886385731d74 +95ed4727f7e2435c96ba702904ad29f606fe9c5f1f9a11a229b1d528b9fa9ba5 +b50b4d4dba0ab5b3840d71c67626b6afcaf743dfe5334e00b64c5a73b3775450 +757b911673bcbacfb0f8509e8b2b2d9dada9a1558b97b146f555f85022bb4bce +86862babbcd259be6537133f30ab2895f60869641b1b9a4cb43b676b0739c112 +2859492d908c6c60aef5ee3b60d515e7e641d008483ab4aea0e159481d623193 +b5e2bb48c77bb87783c7525e59d19a190e2c0aa02446a8d4964844d9f2561a3f +70f20779d197b91450de25463dbb82c2c7c6428706f6d9f6a1474bd85068b37e +4eb45bb80449ca5fea88804308f054167aded26609e7093cd396948cfc810160 +347c6d834531d64a27bcfde1dd24607d5209060f8207da7f5ca88011e24e326b +66a261f36f754a37339d7f10eab4f276e1eabff47f4bdb577b9c4dd3de333fd7 +8f8da94df25df93a57193b1411761f908510980558e23b0584421f920989a758 +138f2e50e1493b3f9f2154a488202e0bb77316ec03f6555de4ae83923dd1588a +fe0bfd9235b4c08a8072804d743e793daf862ae381624303be7e5e0dbd74c51b +4172b1a16c27b6f8c5a695fcf3015cf4f7d89fc91c4c8102eb83a15093263774 +740f02f675477a3b4b6734daf3d18d1e3bb7752922e9b33bfadc539596c276bd +cbf0fcf5437eb33fbf4a83bb2f92462236552eb0303ee70602f42bdc4b51d384 +301922cad3abd13deb81f173e9deed83786f4a5de1d7aa21cc77fc364fdd2e7d +8b9e8074ebcb7f3511f0a256e2cba9b32bac11a5b7acadc0fc1d378ab3557382 +9aaed6a9c679e7e5cac49307549f8c4335fc477267e25506c41035cc248f8797 +8c267cb08fb5bf8a087e95dd47aae4d8389e97ea0da1af064d76e5df286a1774 +a783e3df200df1cfa26ef1ed9b5dce5dc55102cc5718854fd8911a886d0e2e8c +a38eadf009525bbe17d0986f4e3c6a23e608fe2782e7c4bc31ad13d80ec03b7d +1f0ff0855c4d7f9d63d6283ad8658fb13ff68586e3135a99341e4b88678704a9 +c5e8a4c2a9e70f13408c9c54ac9420d52761f62225c64b7c60514b7de0a2c8e3 +f27544869c93890e7df32680fdc438392efdd6a7bbe7621a7642632b7f45bf2b +3f0cc935a688266c39f458b9503ed06e67f4094946e73a3fc27494d890065355 +4fce63c60e6a32436d5ba5e0ab4f373e816b57fa6ba5a2a9bd02cb58af2783b2 +ee1da6169c0f15c23c55a7b2d74edb384c6f646adb73d70e3310873e0c99231b +1af196d1742758956415392b4537b1f04ee4060899648c387bc55df28c6db99d +2f87190bc6f1109ebbd78e15a5641a76198b590286065996f6fe1f776f7013f4 +e999219945c4509d37463f6f18cfc46a500f39e2f2ad229bc16793428a9d8cce +c5d950ee8ef43b425e518f4fa99333f9bf2a420b33b383756ebb0324b7df49c6 +0eeaff9f5f4f0665fe60d40a1f9824c0df60827d2d3915512fc4a5e54db36580 +9e3fd8c1c7c9ead2b0b5011e10ec68e4035d8aa662f0bf09fde9bbeaab5fea32 +3cd1f8cd96c62b0410ec741cc2aab05bcf9cb188194aa1fea94f40a4254d9149 +82dee90d74a6b5d876068386d55c1ab92f62e3d1c3f24d564615ca3035ffce2b +6b49e53257393e66967da9b72010d0f8c4b6f4337487b6abffbaa16aaa86a6c3 +7c22a7b4e6f4ee90d60a9fc7c95b15d34c8a689f028e591215b329d86f35376b +15dffe9323257f0748925c002cac78ce7cf473af7378eda5489e3c464b11e3e4 +87d805cded68a70bb95a36d01885006d2cded168532d575a128f0e03ce4a1827 +b7b0f7ca3da8e4dc774ee59db3616caa3a8924f84f35df50e48477c35fd08945 +308a214bde3389d0cb225ee5d1f96771fe3930b16645c6283b70223dfeca6663 +d72e9b6b4773edd543cbeb81e38a094ff9f1eb6012ca08a77092987bb8dfa849 +361743964bfd43032f77b09d6d1407abdcca53d424ae51fb1ed1434cf4a2f391 +b81678987709e0bea61d8546b8de9b05260d7e2284e445933ecd867cb63b6004 +0fc50c76fb25f81fdaaf545bed63d6065def8265028a224797551a6a8ddfab06 +84798af0747678d53a7564519116755a795f14b254642293aaa3622be7c14f86 +5dd86caf78e0273677f2e33658b24310bf444b1e4f0719c187669b286740775d +66a65699cbc25bea7f7eeb8c3146f9e91e5e0f413376ac09c7e24f9b76d2af1c +b63201760c0a7afae554b8defacb30d9dd146223f69b015b9b7a79cf92d52404 +6531acdb6bd53597645241ec6028c585407b903d0579573ebff088e43efa91af +e77940e6c5ffb955e1fa083b949cb13dc3483bc7637b96f03c79426237a96c21 +26788fbaf00540a987d4ef95082d64a104dbbd75e4ea5c00c2cd02e622987ff7 +2775eeca7c15213edb33fb30b48d17c3bca35ed5ae941829d5992d7bb74f8fb9 +b04fd6fa321052a8c2b40f78c8e8eb081f8851c508f4774267d091e2bcfd53fd +bb9e9b22d7aa6c9b62f0f67a3bb9b1984979d55c45d705c1cbea897072a86b4d +0cb7400640c26526c0a03395986cc3ca897453f7e6c4251d81ed29e82f7052c7 +f8ded9c0aa221832b5750a9845659235f82bc4d9b073a75af2271a0814b1b9a7 +f598e0e7628851b21af4f0b0536c129f6ac5f62090191a7a0776190010de80e2 +7e252e134b7a5c4e14a18a84e7fce3f71645ea072ce3655632d2113d4d176f13 +29142d814a63c756e0a43ad21a55d932d1b83ec93188d7c893220fbf5157baa0 +834ffdf5d191342a4f7afbba2e63b8f36a6394ab5926fcdfdcd8d8cf138fecea +3deb371294591899b4f6f8c8f0ea2c41356eca49df468a952f9c3ffccc8a99e1 +0d5d61732eb44e2ae7b254bab320d13990ffcdb63f3d541ed21ae022e86ddf20 +1eac6701a072aaf27664dd4e7874c4e428682c44de9d9b14c25fa8c2e8760acd +79f11c13e198602be9d9573f6f04643b80abae1cb6269e00c8ab419d49c3606b +11b1f8f46e7977789b19ee83c5bc35bfc48da6d32dd4d16c1303b0799dfe98fa +0cf8531205195af9e992dac76c6cb79ef51865e6b012f29df6d3333daae56b36 +8ede2fc26a580344fdedcdf9c61366f5887fb1e7300f7898e38de35b4dac436d +c4f79f7b365cdf9b6a32d842b6f8494b7b6c91c122af116dd8a3c3c1a35a21a9 +509f5c0c8479c5e57b2c0e175fbb4a85d3b52c927a20fd0cfdf3e2273ec8726b +58c23b0d4f56d69ec2c59d8ce896ea7dd86cea423c2f7250170a09991fdba4f2 +40a6df094cd170ee83bab69d4b8706441730cf417284c8206c646b5105d592da +9274bc54d07e141fcdcd130e51bacc353ea2e99dfae63ecfb9138e0aaa07178e +de98a4f4d365375190585c8579e73929b840667afbc659f5ba4b9f25fe55c75a +2a42fe330a4b90f3a088202806baa50fa1e99fb32973f23819fba8 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +%%EndResource +/F430_0 /FRBTTO+CMSY10 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /arrowleft/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef] +pdfMakeFont +%%BeginResource: font AMYDOG+NimbusRomNo9L-ReguItal +%!PS-AdobeFont-1.0: NimbusRomNo9L-ReguItal 1.05 +%%CreationDate: Wed Dec 22 1999 +% Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development +% (URW)++,Copyright 1999 by (URW)++ Design & Development +% See the file COPYING (GNU General Public License) for license conditions. +% As a special exception, permission is granted to include this font +% program in a Postscript or PDF file that consists of a document that +% contains text to be displayed or printed using this font, regardless +% of the conditions or license applying to the document itself. +12 dict begin +/FontInfo 10 dict dup begin +/version (1.05) readonly def +/Notice ((URW)++,Copyright 1999 by (URW)++ Design & Development. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def +/Copyright (Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development) readonly def +/FullName (Nimbus Roman No9 L Regular Italic) readonly def +/FamilyName (Nimbus Roman No9 L) readonly def +/Weight (Regular) readonly def +/ItalicAngle -15.5 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/FontName /AMYDOG+NimbusRomNo9L-ReguItal def +/PaintType 0 def +/WMode 0 def +/FontBBox {-169 -270 1010 924} readonly def +/FontType 1 def +/FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def +/Encoding StandardEncoding def +currentdict end +currentfile eexec +d9d66f633b846a989b9974b0179fc6cc445bc2c03103c68570a7b354a4a280ae +6fbf7f9888e039ab60fcaf852eb4ce3afeb979d5ea70fde44a2ae5c8c0166c27 +bf9665eea11c7d2329c1a211dd26bb372be5822f5ea70d99eb578c7befd44cdf +045a363056e5e1cc51525ea6fc061dcebb337208eff729802376a2801424f670 +0e7e6397b28f15bc10b40012b0a3eaeb2693e8f7f627c4c9c7c6c5bff105c1e4 +1b2b9e8f09253b61177e95ea219474796072f4b363fe05fa7637750b770d7b13 +99fd7523816e22986f43b17ad2f9328028bba7f383ce5c429773b3d968b4307a +efc6f468433d2320871c85fc9a377c8146b0238e6386f2f010e4c23bf50f301c +95de2b4a559abd765880f5b3d8960d7c462f28339aec4978f261a05761583468 +b73b46da2852db1d9b0b53f6427551b6e87f1a1492a19dd774ccc6a1d0bf8d1f +afb24bc1b3a56e452791e8fb9206a2c9df1677e848a67c4dc754cd0833116c84 +25127a919ffae922f6ec724252ae53662f3eeab1dba230a6ab6ad98cf27afcb2 +6837487ece5214be13a113d27d5ec449ac017cc7f12ff7b731b6aea24462f3bf +e743debd18a99eda36d085ad3602ee939e3c2a40fb9551f4e5e904578e8df0ae +a6e10910d5205c917b45b0d0f44caa993ea6fc2e17ea43b83e62abb31717b3cf +d783d25486084caa1c642a4d9719906889510d7e60c8ba0b48b9d40222d36a01 +1aa4c8148ba57f165bb7181534df0a597bcd1df98fd644fd3e3a09a21bb018bf +637e620e494eeb843c575bdc71016214e19d0d3d030b8a9eaea88822ee97d8ba +ffbd2f522d3ac2f34927961e189b0c163c365ebb410088e95a5bd200e62bd5b5 +e846bdf4c127018a54a78bce6dc744c4c1aec0087df470d72e461c8079f1e8a5 +12794d770d391a02d428fccaaa4fc4ce3eefcf12b553d8fc59588b922565aba2 +c179b29dcecea5254dd73f388bb94a7ea4f16c0ea0278deaa11f2be56dadb4b0 +43bf781fb5151a4d2491bfa2d439082e8cf7a05cbc84393aa92f1d09af1e69f1 +692065dfb293c7d7bb552469bead4b1479ad1b75e552af4c162d37027dda9863 +5e1ff0b4c3ba9cdb41e9c292e901446d40a10906ca0c3f649f7968b4ffd2c653 +650bb2320e55fa19938e4c3775f286a05a1011cff4e4c7f353bfdd88ce318584 +799cd9350da919e462621dc3556b48bf53edce91940eab01870741f0fbbebd2b +c6a26e593fd78e7ab5d05af43231c262477a5309acf964c0fbc114419c98df24 +279612da5ae02b2db3eb07c329891aeab0da742593183a92a619912d6e53b33e +f9489dfb011045b4f20c79a7038e473f435dcc8dfed5b9071acab5a322d4e4b9 +f225eef68b8281688882693085432c16d81dbadaa3df3c2ed508a5547c4b8b18 +2cbe2aab5bfd98acf80d5927a07da8a3aa987a899e28e69a49aca9aa960b45b0 +53079246f09b1f8be89a5912784ef566497df949ac722c37b8b4c641f602217d +e1c7fcd757c04c263aa2a4a08d7e08055e5b922d850c2a898cf32baf2418e0a1 +fa6e54e2459ef6283fbcdd406b9079950669763106c9d8b16d0aac8815fe894b +e1c7af9702ca13b36325fdd90110f1b8a03ce3e7aff614a0a2b1b15a1041800b +b72ceea17cf4a939410c53d5bac0b89eeeb9e2f9cfc6bcdfd9a438c109784adf +9d2843fc809a040b9287f0c71d93f7c2b3273d39c5ed535a8e130b46d3c97f4d +e0bf14ef07eec07f1c747a6b5d294cf4d47ac12f1d9282d2de0f808a4c609e4a +0e2a68646e9583b6b9a75c95840bab3fe259ad8846a82af91f44923f25bac677 +3c8ad0a810731fafb0a95a5445b5800d0be0378909aec60f544c3e7438760b6b +feb2b9b16652caab36f65ac444ce9358670e060a90cc422043b8ea8f0b065446 +0b4ed94690003cc77027d8a3c0a06a48bccdf5d6d6770402b4f44ed2673b1329 +06d4f88bf12a3445794fc9db3f1bb4afb8d380def7dc1dc78624c748192fa321 +c96b32dc26b30e54dffe770165d1759d82a5542cfc4a772d8c2cadcd2e2fb1ca +1517ac15deb0bccf94ce83436e989adba2903489abb6b2eb9f977f3f4d690b31 +e8f6e27faa56bde2c4fd331ceb502ad286857dd67d898f8b86e13a98044f77c9 +ef13c7b14a754fd0e07c68a90940f3fe3594afe83c605102c08ccb046b807975 +e69c165c9b833f41da40d17653b80730495803061fe194ca599d53a3367ba3c2 +8db6183ae68f6564178dc0372c58a103da58de056b7b0f8795cccb1cbd4239ee +a2b6af7eeec2f7da99f12110e07d663dfbdc0645dbf9e051f91924855405f022 +13933f1c51af2ca7a39ae3204ed31d68b15f2b74914bf86548d87316170a909e +e9638b25282a209e9d8bbea3ecfa3ed46c2dba5cb3b38d8fadd66baf9417f5cb +6b3a9186e34d1710c011e3a16fe8f9dbc207edeaa72c2f7d4b7b7112bfdd1b0a +1330a7f88ee867f55c828a9154dda3c57b6e596b830b33ff636e46d8d00fb39e +cc497f82e037ae6f7975a36876d66694e3dfccdd4a5f9ee70883fde704969531 +9cf38a1bbe0c7fbea056326e41636e17d93850a1df92ee50089f30f3c4ade4d3 +07305271d998208c7ac0f998b96ab3e3e182e29b819fd861e52b04e00f9b6be0 +8f5766fa4f3557d0ccc9edf31bf84531d664fc186ae2e7f9c81fe8c4f9f1f2ae +3b9560c9df5fe69d969a0d6c120a6621bd68991fd5593f3197223c9f09613eb7 +1ae0c78d9ffad6be1e36df5885f657994ffb6eefb5e0949674c34768f001827f +12f1ba77ae821657e3e96f17de324f9355152cd28c7bc3bb93b0bd0d40d17d35 +2b303f2518e05cfdc4dfa697683ecbd6a949a2eab9cce57b8b14c53ba2265a49 +5c28d22dab35e36b5b02d2fc02738aa6fa7c4cc66c88f5bf25b2be88a4987cfd +39ca40be4ebe0174ba827e7dba9579fe52b869142fe488f9ea5cff30111d6400 +ac3cdd3e1476468fb113f2b977937e70b7214069a06007d987d0f3ade59460c4 +35361b9ee2378b0b2365178ce4fdaff19dc8e52a4eba7cea25387a2e330bea1f +dac191c9e385c837ee253220a279f05876328864c9c2248258814f7a16030c60 +5a0da56b130757b262ba58ab68340b32d30ba67ae01efd748994a6510bdfb15b +50c31f5dedaa1866ee9123cfc235591e6516e8210dc0157687a8f081c3aae846 +7481d16e8af6d8caa9c8596c801dd5948cf7361cafb8e01268eaf0cb40ae29d0 +de3bb879970e06fea94930ffce9d4a15ff822de7486a4023fb6bcf27d496e0a5 +2c73d409ed6aea6923de8e6ddcd7615d76b5af4f2be2cee210bb781fd622574e +042b2fa03ff6e45cbefae7dfb53447fc56da42938717098806352776208567e1 +f07e8372e0bd8a19332de3a09320e82dfb6ac58689a65ec1fb97808e3ecfc84c +1173378bbcabc629bb8d4f2642cfbe1bfa1a25137db295526810f349baa1e4fe +9bc755f32a1ed330171ada792e10540d41b177bffbd9b94c2c008ff74a20138b +eb2d0b23fcdc136e434d7fc5e7710559b91756ad1171ed3bae249960384eb4b8 +4ec4c71e91d872b1db3b7ee412aa9b4e66c8e5a03d5f1d98de47ab51dd77014c +2926ab5e994a095d9ee5fb336746bba506603279bfa91724f6cc868abb2ce5b2 +c145dae2b6128e6c913c8814a5a0b4134c30edc7f97908ddc6e7bb65cf8a58de +88ffab9273afe5819be1d31040559f763e95cfe230d48681d0b4103ebb92a3f8 +01177bde9bdd61e288e9c5dbd18163eac0a67899acfc1c386f8b261fabd320ab +89fe9be450e41549b3753c32e2cd3069e82101530513728dc24d8c2c25b06ae0 +91db97dcde55f701a63895445c0bcce07ccf4c82b318494f42c776d9482c8c19 +46fce4e987e770a4a7512b5276e36ec3072c6dc9812e56e11b34baaaf9bed596 +e52d1ac1768e8e0a8b20b94f320d56406f4ea3202920fe665809102ba71932b5 +51ad5c83f6f34b1e87272e8ac300761cb99c9104a20557c09df9cf7ac51625ab +05c5a60689321d8cef7eb8edd092b9feaba272a94e133aa84a9b7cded15c6824 +3f7ef11eee530323afe1153fbd6285b2302588252609824ed75c05416beae011 +98155779dec43c2e7fc92532951a1ce0dd6613afb3f9c73055f528f993a342c2 +3ea326391cb99feae1d61d95af36536b1c53d0a2c19709f7c85f07715f95a98a +cdb7722e297692fc187c000a9e64bdfb0c56852bf7ff946f932852d3931043f2 +60b7beabb6b6faf76bd8ff3f2a6fca03fb36ef04f59a9f67d26da5ddbc23bf20 +d82e99326a41155cfc7b4fedb80f69d361c31826743ec395b7aa83c10f9b5eed +80044f3c258d7e2052d2cfe08f6046189bd0022ad8e6e7890cd31848b2477ecd +095ba2ca9f4e9ad4bc8c7b2dae33d20d4cd01885c2f172052c1f8bcea593fff3 +4821540e79f626f4d7fa64c0bb4cc5485309e67071d0277a61369645ad3a4d8c +fbfb1722ef6011fa6b2095aa4e5b32746f64c16af093df2e9bc175409949d440 +795f6f2b72a69435be1621154ade8d4dfb1bfbb0e28da8f08c76cd0521ff176a +d2e7dd44916af6a1dfa3ecd6194189190b428cb56e2ef4a1bdc5d739ff1cbefc +39eac4b5934d3707bd30caf67adb3612b37056151b45e9eb73c3bde4b4350148 +23c3ea6ad5be04886842418ea1872bc169f92a890670fe0b8bdd86421400b49d +57e5ae8fdded5d706eebe573a5a172004e59b9c81fc990d2cf7036344c4335b1 +842a5c879354a84cc837d76b2babf981d4e60c857649054fc69fc59bf14aea72 +51210ac8babc95d58f4f3b497d5db3395a638fe339c5149f284b8dfd340c0b0c +1984d43b5951b7bdb82423182dce8af2baad5eb25e037c5d976b534a3459f742 +751b5ed1c5bbe4915a7b281d1b1c806c58bbf900d5ca092fe2119ce099e52872 +0e5c8231dd6d7ed8fa5d2c953bd8bdc13781119d2b31a94bf39948d4b3688e58 +8aeae48e2d66e17935058ed16528d28e50e37bbeb1d155450364517018b1b44d +bb0703befedb3681a2b609063302129628fcc24d88653589b431fb84e4ddb650 +c2f783594de613ebdad8a1324574cad1fd05a37844799928b4da778710e3a4cf +b85afd46ed46ccad840106074f69ae7c306abf4cead6c66f4fbc0fdeef002570 +25305004426efca887ed5b4f2ef6dcb912ff552089f383d270c1312811b510f4 +11622aab22c5add53e1979fa80a9ac5ab80b3255c901cda700904e4254725a18 +6925971163b35469c55ddf9d36d2e690c988678e2be17e2668807c0fee64d264 +5a8f26899ceae3abc5553bc58674333d43f27d0ead9297619e8169554512d7f2 +9984c12dd44285a3d8a75dd20ebdb5280b95471bcbe5473447fcf750c3b061ba +bf491a61adf487ccefc79cc514569978f12a7a3420ee046e1c28776c96c550e7 +fb0e2b46b3e57b2b8a6ae7d306fd0eaeb026beb5b13b8c980828f78905369fad +aa7ac9c3b91df9a4d1be00b3aea709995849ae4ece16c126b99c3d0fc0bdc084 +f8486d70022e0d5a8e50a27e9439e37d3bc175c3a3bb19914a4bded2feb81ec1 +fa7e274b027f4f4bfb331bf4fcb58fcdd1b999a775bd2a9002e846d7fe61c6d2 +e29fedf3121af6edcef90f23f54b128efad5fcc3e2236e1f9f59218994460d1a +f21eb9a2999501fc489873e9eafb986d9e9e780b4eddf332aa72697ec956f63a +4307133ed0fd2dfafe283677469b7b14b155b17a8da4a81cbce56da716149124 +bb3b20fa7a2b64b58d6eab90dbaff1d560e5e5492f17615b7308cf7670f09a04 +6115d454937c733ed45b1156c2e7d0ed43c093d6416b91533637d5d5f649bca5 +50a5ca5522b0f8362042caa30a4bc87a4a4339710e2de9b2c0c84baebedd073f +25cacf0e4c4bdba46f4c545e27d20536827ea4a4d5f5e19518fae6ba2d45b5e0 +b247f20752a795594d9ce548b5c0217ef480cc5a0be6794178fc7c017aa8a3bd +74686310f635ae6153d9e18a0514882d4ccfe9d7dae9f24b393985e8da776880 +1d9a6515ed7bfad3cabd1e13f2a9be17d42dda60f38dc5dd5412b03b938bed86 +0f9cc900eba7eb281e619edc39b5413af1e242ab56171d3a01203c76788d9024 +2f72c89b7adb10f5caf6851acd3a4369972f796d5a1a9816023f5a454dbf5bfa +5ea34c00df81a76fd79a0198e91ea01efbf7d89d78f9da5253250bb29770c4e8 +df955af85d48c33fbdff3845d6868920a3b09ceb0b7de798354e80d1f3ec05d6 +3ceeb37751ab5f9d5f7e682958235c0fb224551296108eeded2e000bf86193ad +5f290f698375727743a699633867f03f2d7801b18627f25628c0b65ace0e766e +ed22bae384ad0305bbba6a3cbb913641106259e2947e77caa437856febd8b604 +7621e8be93bf909cf3893cb2e0b4c75afabcac6ee9ebfa30dc6ba5e9bb572318 +ba844429bd3b5bec550ebf2b7a3776f11dcb71c930489a792bbad9f6a1679b6e +22a32048d0652fe2e3c1dfebce17cf97281087ed892b5d02d83a97dba1b3b221 +4f52eaa45592670902f979905281d7e92e9bbeebb909d5152f97aa49068d3b2e +8ce26b784b48936a3f8e569e5d96d8f3cf19335c7ca5f139815f26b62ef0be05 +2f436d3d7ad037451cef14021a15b0b10a07048ffd4cc4b4ca987cde5290318d +7100cdfb146fa044c694c79f3ff3ac98f1067bcdddc054cb3867af0b7e340e39 +81cc10ba0763901afa3f492590664fbddc6fe2ef568d6765579eaa5ff1501a1e +6b6b303c415557a70b4d60994b9841785a8791b51814f08ce8f0b048c690dc05 +fce223f392df0b93c030960e7a4717203c957f428fa52cf5d206eac92a7ec569 +b1353585ae6a14877eebbd8c402163bec563feab67ed764809e5205bc3f50fcb +557af616a430215a7f9915872478572a2335fa3817abd8ff113020f023c513b4 +202a3015e22d173b07d87e6d6eeeb3e0b0891c00831843c6a2613c15bfbcaf5a +8bad5d9e69a88eed3a1965e1876b223b74dedd8f16a2302c7f70ed7c8b5e60e2 +25c39cd88e4b559888007abc4f48955fe377c69b00be16bf9eec8248ebeb6808 +5a80b2f60ae03c29fa29b91f30efb4ca29bc51fb2bc09a7343d0b107ffd02a03 +b26ffb1c6b1d2b5adb3647d37bdb45420e8a115beadb142e3aeedbcc8d0ecd93 +8777fb9ee661d5db7088e3faf04e91f1865418e2723565fe2617d2d8e106a230 +a2dcb6a4502528d22457a4399cb7f9e4f788a03d6c8b5757cf59267fd86ac4f9 +21675f6da1a90156bbdfa77facf6df331491cd2cde707e509b8e5d03ba1b6781 +eacd2ac3eeabb5f5ac4d0d8f5b10676e7357557c23bd6412c625d7944302c969 +561c704f937fe5304e1704b20352a758d6237e52c4a356a08f9893743a5c20da +6a817899bb2edbadbf4234e1ece52b9b3f3e29095f0975259c931b67595f0ce0 +db8e4ccd5f6fdfdda07663d252bd05fd4ca58fa54a9fa6acceabd97f2313c59d +195cbc3bfb55f9050d5e3ec4e42f883635f18d17efb2a0ab333e09c2521705be +aa147b6717c816e57d38adfb2f4658249a3a345b337251b7537cd305c6424dbf +b204417f4c36086edaa8da348dc065aa5a7f68a0ad3e3676a7c240e76ddc8786 +96b56cd4e70c28c3009185ae13ad4e96c8522735074ad649cabf39201903e974 +12967a45b574790d727dc68222dff726fd162dbfee4964afbe6549abeead5264 +a033fb29e70f1d17fe58934bfdd5ee6defe6056ea4a0e39a39b7fc1a6da06713 +f952bc20c689bdddb94bd67997f60f31fa6239387089deee5b687455a5c06fa9 +fe941781f0d9835d8d020cc6286c2fb8ed5906eccffacadd71ee0b7c7b67d8c7 +aaa95f9cb24fd22bea989e0e0919a4ea35fac630a9090346da895bb5b6e1c1ba +ff90f1e16665998ab7612444979edefd96f1f701d13950e0ca2daa7787735fc8 +4b268e36cba6d7de0506dc5353f3d13ad666cba8f8c56e27e44b57873adee581 +fafd1f33a85b6169d4794b1d73940c134f11dfde03ccc5709f6d806cfffdb6fd +f9361520d0023ac6aa3c93b843d8cd8a652a665eb31d6b75d752e7679a9e1327 +d0adf92820acc78b0793b9f0307c776c201a408a883f99f9d2ade3960b1e62e2 +db5d6ca4115a028f87f77651c95bd71456ba087709827b05a80ff78746cd3c09 +72eec0baa7ebc8a05043e18e63517fb66e333973dfa6bc796af520e8efbae640 +a2f4b94f244d365b76fb3e229726dd7c61478dff4d616cdceaec1ad70d9cefd6 +0e9e6affa41f34b777da7174b3281acda204977bcedb3f5f9f0c5d77607237a6 +9d6780dd18cef875257fd719d237a35864498978239cc0933a9ad0fb8ac74f3d +869fab0c30e8001a2df0ada8f56de43c5e9a7dc78220720dae05f0fff948adf9 +0e8319eafa3fc8e936c9c040b1498e7eafc36f03bb4cd11a6fed37b7a8d05b1d +00b5f36799e9556526f5e5f2205dd641ee39a4bd6c8ec20a36473eadfe1a499e +88284d2fb544b7bdb637868345ae4b3dca6bc0754bad59df4558d2d608faf166 +68daeac6bfb73db431a3146628d371c2d158a1ba65c8d2d47ceec7addae77864 +042ef587a6d6c04dce664bf83492d164d2fc00c1313c220bfdd7a30dede201c5 +1e84d9573c79235a8d847d0a4c231fe009058f5848c775e343c61835c7c8e025 +44dbe77ccfff9e9c950ace49091771604234e586c1335904da22349a847ade3c +060aec69c2987eb1f3332d8b66e59be53edab3da137d59cc6efa0f579f8a1d03 +882c720c27834570c10bf892f79b30340ead8535881b11171b2040fb6637140b +e927369f803a4ff311d78d7e68f4b5f8628fdcfa2cc376442d78e6f47cb378eb +31f079902cd32d6aec688f02a7365b66797de1ea022afec2f3aae36fe01a3e5e +6cc49c79ca23dc10ed8071eea3a0f8924a0dcc610f842e4e30c1104f859ac970 +06c7490195599c65393be11269c8dd7247c96d632523256f59edeb144329b8da +b35303c922432e92394a95196dad464e35858f00e6a27320cf515b7b8af90d06 +82e89f09afb605862d14eab6a99218b3f66f11ea2f345629c402bd9aeb25e3e9 +8734a0ca4a814d824ee4ca5383c6eb8ff1458c767dd9b71530c5f01be2d2611c +f9644c28f3f52ac748749b54eb652f76630e3a62b63a3562a54144c306beddfd +557e154c7d4931bafe9a9136c3aae071b00e7204150cece0d45e10bd736b633c +8abf3817168828ba17b23c8ef8ee35119c43cd7fe068e1f016aadc734d4338d7 +8abd60567f307d6ec471f99b03cc7b5e8140dc07f726303c2185590f9f2224c1 +52bf01b038ae1e963098a309edf98ce5ba1ab235e1190ba23732e42841b2bf69 +36560701e1653df36a29c8c3254d402d0140f5ffeda15ded4728c176e3f39c35 +48b5a2be25266587b52bda256f255c940adddbfcaf37ba2500213239f12dc7e0 +0b61230190a4380917962c18effc6774f6db08b799c5966ca7133fadfd7e2b25 +75116286d1c2a40545f973870cbb5cf97691afe304ca7b586f198c426a71dfa8 +cedbe3d94bda4267b9b5ff1454ac7d54f59c5d94588bb274601cee186b9ee892 +5f359ec5bc402442bba33b2663d564461ca130d7f1405b0467027ec1e27bbec4 +8d51c674c81b66ec733c4c57410956520f9c16708aaee0d9ae34f1050f6412c7 +7a23c8c3364dad8e407319772c9b201c49b75dea4685566d9c912acdb47aece3 +f9786e47398891c07b0269e74e2eb935991c9d7a835eb88bc04eb2b195ddeb02 +38dcd1e4bb773e269ad58fa9e2f5482db94a661f065bfafee3ccc1c812e9fac3 +31fd70975e3a0c72d37207d6c90f998103a821c35734f0153950e5f72ff6a8ac +cb831f57267142dcc4079c915a4d01807fdc883e15a15b67e8cea1ef8d26e4fc +b55c69418d7a4dcef51473a037050cc43e204fc7de2392905800993bbccaf459 +3bd84187fd1c295d111867930dd068988631f5d0abb9adc48b7ca8134f8a3baf +3569f5ffbf19291022b3e13fdabbf0ddf64fef601cf97dc70ed2e4355de38f1c +0ca81966adfc95cf03e794d875025af92bbeaacd9ee58b49c3f0b67d72b13a0a +971076819781d91814c47a0a3b53f767b7630fb55df3d2706d834b127d56fc95 +b9b30ab934839b8324c9ee0147f0bbec998eb1b2939a2102c59c896b9f57c9b2 +fc138cfd94fd5c512bd83e30e8356e983cceb0de72224f78b3c8a98359e46f22 +c19ab808b70c4287397eade3b28a311244385d3d49fb80adc4f90f32366fcf42 +eaea8d05392164a48f03184563922bcbeb78376f512b9a289325a61c0c357e40 +bb3dbeebf870ec12ef096a8997bb6ec55251ad55bd881ebdda84056556380935 +b0b8eb1f74ef96bf02375a30dc53795da638252a12a2e9bc18bfd7ff5aa7a8f4 +4a6bb4a34f1c94a781a129fc975823bd16a6df7c5d75b7f6dff55ac5f82e3e2f +572f339f48024e93f0c59fb1fc95bacf7bf5fd7c683c9b159c3b5d937c3a2110 +e78889021ebbbbe76b1f984317d310ea61f7b5cdb4ed1754a35adc9c6924c3e0 +2e3b157261eea5092e0e7a914a259eea2b14192343680a18710db9f82e54c920 +369587bcdeed8f8acb72d2565ca89ea92b6b58bb861012ccab7270200ed5cef3 +9bdc58f4831161e8ce4ef5c6fc839deb8216482d906d60c1a3292de191b40c79 +85529eae01de8fadd442ec8bfa775366070a9e193138a4c6f6eca7ff554c57a0 +19346015d6ed5dfe8b9dd876a207e7247deaa1e42a41c3edccb32d47e5fa97c0 +9bf3f8324a366856d6c6df8f295da2a9164a99b6e66adf4247dd79bbf54525dd +bcf518651fd8b374cbca6ac532ed443a1c952ce148a67cc655d92b670ab76c64 +cba90089f1d252ab55d93cfd0ec1545e79b65c5337fc57e46ad6ddcf5ca56204 +867e467d3982d77c2e603fee7ec4b57bd8718e5be9203666459815b7428679b2 +134188b7c2c89f64b7426e0dde73f586a7a86a4cc4136bcd5b09b2482aaf3ea2 +6a9c99cdc852ae0a7262b57c06143f1a6528b02cdd69b9fd5edc635873997b4d +7c5644daa467783e154ad0a787e72bf5a627f712267198d9368b480a4e764627 +b268d7f1500b8e155615bf9e59bedc125774802dcbe33451e222f6a9ba24afc1 +92933742c74822f138baac4bddcfbf447dea77a4e913028db069e802014b5d57 +b0c7d6b7a727742eebb6a7c7a2231c94d63fbe66fa8030f3b378006027ceb4b2 +74d8d75d001c7b4d0225ec9cb04ca7f5e1668b44682847a8b14dda4ecd87fda2 +6b1694a2810f90537c403ff242d0accc8b73fa0088d668fb4fd50c4a0b0aafe3 +0dddc6e893c1bb127147fd1b35254e2ef659f023cd826cbf5e400dfba85f4df9 +f70b30a42df485bf5dd6c620e37c82bedef5841131716bc5eeb40aefec8c0379 +f9348a1d7ad0618a422d85300bc0f4208a5b4baf9dd1f568da943f0023eec988 +21187716ec2104282a7fed77b0c5b01e78d5d9d5d99994a9f232859ce68a62a9 +e6960f557f153d7101dd98b7836d7841d3180be3b34a99d4434af82db181de42 +e7f3fd86d86678ea86c4ea4d0af845955141ca4f9266f3ef69c2ce9b73ae1558 +9dd98a8a0802572fba00fc509918a64f1dcabd06286039e75042d53d472ae66e +38ecb6e6795e3dd12757255e786909f306fc17d14ed432f5107aac6cc50236b7 +d381ad2c4da239669d94cb276610a846e991f508a75e1a3a851be789b9a3f75b +f5d7dfde15eadd55e7710d79b5a4127b5e9f85f6bceace031aa9ad412541848d +59dd3f66886672db5d90f51fd15334eb973e64baa4181186cc3c090b2a5bbb70 +e9e1fd9420a31674e9e517b1dc0196fcb5624668785a65dfa60a0944386beda0 +66e2a3d871913d23001c0b5f22c4136fa48e6fbd636fe0bbc104cba53ecd15b7 +0034db9200070b7924ab31ea318cffc35cb44bbda45e04f64516b48bbaceed37 +56a2aaa5d5c0a2d06f71a5ca689c8c8afc991638fff960d060555d9ee7a13868 +434853e22d4d9aed6231039517aa713e67e7c08467c687a21bfb00e6c99c9b15 +51859fb8f437c77bca2b0fc97a36ee9b552645b83ddcd2ae48049085693c356c +53b214b9216d5466852340dbb92eadc60bb6225d9c08bb9f5e9f50e40dfb7c12 +2b5126c6e11393d04691831af2707bf11e0c4e887511a59442469df76bc8eb2e +d2e97d09b6b2f1b533ac64d85d454f57702af92cc88d5ddc46388d6c203ba06a +f57846d420ef1727d97d964da29018245d91f1e37e3e3f9f04e02d997b0c28fe +4c99293e87c978606c3a0c7ca1d121c60ac58fad627be407057eae2ebc2074dd +fd2bd9fb017ad048ead3d1243b7634701508034a934c81a9f63a05b7319676d7 +bb9af94fbe826f84d4149e81b46424e482c8c1c655affecb4393177d768eaa24 +a68a71e4faf578e57865b15f459315a26ddf6e39bd3d16958a3a8cbeab793eaa +533eaa3d89e78d292fe37f0c23e32abfd50b2c9fba8261331c66458340bb4cd5 +4e7a7cac3df5ca530fbffd93789357877ad2fe127377b899340416d6100e2165 +64c62ed803d484656ef5ff7587902285671f280de39228b9432ba46c3ecbdd23 +46222998ef3c528cec6da555eb72092d97664cf35ea21e31ffb70e8b8102ddf6 +0203d3dddaa7593a8dc0b1c6af796d891e80860e6bba501e4c38dd5c6b5a6f35 +a38ef0c7cd4ab7cce0e17fae913eec2572565070169cce8517c37b21699fe4d3 +58439dcec0066047253d42a74ba564d2fc7ccf34b3b4e77fbac09d950c3c134c +5671c64b9964c124d123a299d2070826fde61b7f637bf87739e7a0de70ef82af +c901821eabb31969a27596e9826dd506912d05918ddd2981d5fb153526683f83 +04bbb13678af6d8a65aaae58240688caf7a8419f7bacf078dae7495ab646fc40 +c9004cbabf4c76143e33fe49fed460a102129b9f6cdda0797e53df9b9db99890 +7dc89ecb49ee18cd7556b44b096c9337f6a5618b589c6d7c87ea0f292bb446fe +c901b120180e3b514e3e7e32e52028a30cfd6879068a68b7ef5db202f575a6f3 +52748c45a3509d747d672b446efd09b0dcab7b3f8808c011a0470eb5c9d8d632 +0f413186fdf227c7f9c45c403ef93db5fb63819de4ca368f1b9387dfb0f039e8 +2c47f56fa0d3073c901393803ae628eba7313821a01b07918efa4d901aca044e +90d0227813c537cdc2c906e44140bdcb8717e95b7597ad7c01b51b7dac732e65 +fa3870fe8865ae6dbc96b5a984e2e363c4b67a3a07fe4eb42044112ecfff74f4 +09329f03a55e1f57656f88a08e597bfccb97a2b0bc0c26db9aa5bc5f1d1bafa3 +65f32c6ae5de5f798233ed6878583d8335e8988021438e992be94f6b73608413 +b83693b45e539261664f851652bd9458e643bd60628d0acb48a0edd350749e13 +9e480bb10cfb50b4fa0e37348d2f5ebc3e3f3457128b9793ef1359076da9e92d +e3bbd59ccc0c0327867bd7895a19cb93fdcd6ef8d459ccabadb1e0bc6896b456 +b13cab755da348b349da1b485947a23d05e9bb5dfeb8300f8fef30d7f09d288f +681ee6e23d21f76f806440680e7913d323a264fd6d69d4be33527e050856f8d7 +20fcf33f81e5021271c2cefd7b1c6a2dc9e207140be0030fd866fb65e33cf5fb +8879dd70eed5e887537c45d136be8bb191bd9dc4cea400137903a12b66dcd359 +9b6c2e43306759110af0878c8f37c8daf847657c2bd68d5c3ca105b332d18d5e +03269eedc1ae92f4e45c79915981c1f32b5a39c46c358708460301ca4298bbb4 +5b91e0d45fd1de756c6885545bdf5bce1cd40bb0c92c481a629b0d8dafb6b895 +995c6777d9355af0b03720d3c7456ad60eaa5a80549bb54c0820e000eb30a3e6 +f81c1cdc55b70d902a432d13a233c63ae54f98718d6ddae3c6aabebc65760e59 +d87abb67a5171a4ec2b2377bb5a39f +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +%%EndResource +/F496_0 /AMYDOG+NimbusRomNo9L-ReguItal 1 1 +[ /.notdef/.notdef/fi/fl/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /quoteleft/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/bullet/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/exclamdown/cent/sterling/fraction/yen/florin/section + /currency/copyright/quotedblleft/guillemotleft/guilsinglleft/guilsinglright/fi/fl + /.notdef/endash/dagger/daggerdbl/periodcentered/.notdef/paragraph/bullet + /quotesinglbase/quotedblbase/quotedblright/guillemotright/ellipsis/perthousand/.notdef/questiondown + /.notdef/grave/acute/circumflex/tilde/macron/breve/dotaccent + /dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron + /emdash/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/AE/.notdef/ordfeminine/.notdef/.notdef/.notdef/.notdef + /Lslash/Oslash/OE/ordmasculine/.notdef/.notdef/.notdef/.notdef + /.notdef/ae/.notdef/.notdef/.notdef/dotlessi/.notdef/.notdef + /lslash/oslash/oe/germandbls/.notdef/.notdef/.notdef/.notdef] +pdfMakeFont +false pdfSetup +%%EndSetup +%%Page: 1 1 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +117.435 701.916 Td +/F9_0 24.7902 Tf +(bzip2) +[15.146812 +0 +12.3951 +0 +6.891676 +0 +15.146812 +0 +13.783351 +0] Tj +-278 TJm +(and) +[13.783351 +0 +15.146812 +0 +15.146812 +0] Tj +-278 TJm +(libbzip2,) +[6.891676 +0 +6.891676 +0 +15.146812 +0 +15.146812 +0 +12.3951 +0 +6.891676 +0 +15.146812 +0 +13.783351 +0 +6.891676 +0] Tj +-278 TJm +(ver) +[13.783351 +0 +13.783351 +0 +9.643388 +0] Tj +15 TJm +(sion) +[13.783351 +0 +6.891676 +0 +15.146812 +0 +15.146812 +0] Tj +-278 TJm +(1.0.8) +[13.783351 +0 +6.891676 +0 +13.783351 +0 +6.891676 +0 +13.783351 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +90.493 661.631 Td +/F9_0 20.6585 Tf +(A) +[14.915437 +0] Tj +-278 TJm +(pr) +[12.622344 +0 +8.036157 +0] Tj +20 TJm +(ogram) +[12.622344 +0 +12.622344 +0 +8.036157 +0 +11.486126 +0 +18.365407 +0] Tj +-278 TJm +(and) +[11.486126 +0 +12.622344 +0 +12.622344 +0] Tj +-278 TJm +(librar) +[5.743063 +0 +5.743063 +0 +12.622344 +0 +8.036157 +0 +11.486126 +0 +8.036157 +0] Tj +-10 TJm +(y) +[11.486126 +0] Tj +-278 TJm +(f) +[6.879281 +0] Tj +20 TJm +(or) +[12.622344 +0 +8.036157 +0] Tj +-278 TJm +(data) +[12.622344 +0 +11.486126 +0 +6.879281 +0 +11.486126 +0] Tj +-278 TJm +(compression) +[11.486126 +0 +12.622344 +0 +18.365407 +0 +12.622344 +0 +8.036157 +0 +11.486126 +0 +11.486126 +0 +11.486126 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +179.946 503.285 Td +/F9_0 11.9552 Tf +(J) +[6.647091 +0] Tj +20 TJm +(ulian) +[7.304627 +0 +3.323546 +0 +3.323546 +0 +6.647091 +0 +7.304627 +0] Tj +-278 TJm +(Se) +[7.974118 +0 +6.647091 +0] Tj +15 TJm +(war) +[9.301146 +0 +6.647091 +0 +4.650573 +0] Tj +20 TJm +(d,) +[7.304627 +0 +3.323546 +0] Tj +-278 TJm +(https://sour) +[7.304627 +0 +3.981082 +0 +3.981082 +0 +7.304627 +0 +6.647091 +0 +3.981082 +0 +3.323546 +0 +3.323546 +0 +6.647091 +0 +7.304627 +0 +7.304627 +0 +4.650573 +0] Tj +20 TJm +(ce) +[6.647091 +0 +6.647091 +0] Tj +15 TJm +(ware) +[9.301146 +0 +6.647091 +0 +4.650573 +0 +6.647091 +0] Tj +-20 TJm +(.or) +[3.323546 +0 +7.304627 +0 +4.650573 +0] Tj +15 TJm +(g/bzip2/) +[7.304627 +0 +3.323546 +0 +7.304627 +0 +5.9776 +0 +3.323546 +0 +7.304627 +0 +6.647091 +0 +3.323546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 2 2 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 709.534 Td +/F9_0 14.3462 Tf +(bzip2) +[8.765528 +0 +7.1731 +0 +3.988244 +0 +8.765528 +0 +7.976487 +0] Tj +-489 TJm +(and) +[7.976487 +0 +8.765528 +0 +8.765528 +0] Tj +-488 TJm +(libbzip2,) +[3.988244 +0 +3.988244 +0 +8.765528 +0 +8.765528 +0 +7.1731 +0 +3.988244 +0 +8.765528 +0 +7.976487 +0 +3.988244 +0] Tj +-542 TJm +(ver) +[7.976487 +0 +7.976487 +0 +5.580672 +0] Tj +15 TJm +(sion) +[7.976487 +0 +3.988244 +0 +8.765528 +0 +8.765528 +0] Tj +-488 TJm +(1.0.8:) +[7.976487 +0 +3.988244 +0 +7.976487 +0 +3.988244 +0 +7.976487 +0 +4.777285 +0] Tj +-766 TJm +(A) +[10.357956 +0] Tj +-488 TJm +(pr) +[8.765528 +0 +5.580672 +0] Tj +20 TJm +(ogram) +[8.765528 +0 +8.765528 +0 +5.580672 +0 +7.976487 +0 +12.753772 +0] Tj +-489 TJm +(and) +[7.976487 +0 +8.765528 +0 +8.765528 +0] Tj +-489 TJm +(librar) +[3.988244 +0 +3.988244 +0 +8.765528 +0 +5.580672 +0 +7.976487 +0 +5.580672 +0] Tj +-10 TJm +(y) +[7.976487 +0] Tj +-488 TJm +(f) +[4.777285 +0] Tj +20 TJm +(or) +[8.765528 +0 +5.580672 +0] Tj +-489 TJm +(data) +[8.765528 +0 +7.976487 +0 +4.777285 +0 +7.976487 +0] Tj +72 692.319 Td +(compression) +[7.976487 +0 +8.765528 +0 +12.753772 +0 +8.765528 +0 +5.580672 +0 +7.976487 +0 +7.976487 +0 +7.976487 +0 +3.988244 +0 +8.765528 +0 +8.765528 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 680.364 Td +/F15_0 9.9626 Tf +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(Julian) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(Se) +[5.539206 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ard) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 663.427 Td +(V) +[7.192997 +0] Tj +111 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(1.0.8) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(13) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(July) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(2019) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 651.472 Td +(Cop) +[6.645054 +0 +4.9813 +0 +4.9813 +0] Tj +10 TJm +(yright) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(\251) +[7.571576 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(1996-2019) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(Julian) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(Se) +[5.539206 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ard) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 633.938 Td +/F15_0 7.9701 Tf +(This) +[4.869731 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0] Tj +-250 TJm +(program,) +[3.98505 +0 +2.654043 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +6.200738 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +119.151 633.938 Td +/F17_0 7.9701 Tf +(bzip2) +[4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +143.061 633.938 Td +/F15_0 7.9701 Tf +(,) +[1.992525 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(associated) +[3.538724 +0 +3.100369 +0 +3.100369 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(library) +[2.215688 +0 +2.215688 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +2.654043 +0 +3.98505 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +216.768 633.938 Td +/F17_0 7.9701 Tf +(libbzip2) +[4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +255.025 633.938 Td +/F15_0 7.9701 Tf +(,) +[1.992525 +0] Tj +-250 TJm +(and) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(all) +[3.538724 +0 +2.215688 +0 +2.215688 +0] Tj +-250 TJm +(documentation,) +[3.98505 +0 +3.98505 +0 +3.538724 +0 +3.98505 +0 +6.200738 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +1.992525 +0] Tj +-250 TJm +(are) +[3.538724 +0 +2.654043 +0 +3.538724 +0] Tj +-250 TJm +(cop) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +10 TJm +(yright) +[3.98505 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(\251) +[6.057276 +0] Tj +-250 TJm +(1996-2019) +[3.98505 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(Julian) +[3.100369 +0 +3.98505 +0 +2.215688 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(Se) +[4.431376 +0 +3.538724 +0] Tj +25 TJm +(w) +[5.754412 +0] Tj +10 TJm +(ard.) +[3.538724 +0 +2.654043 +0 +3.98505 +0 +1.992525 +0] Tj +-310 TJm +(All) +[5.754412 +0 +2.215688 +0 +2.215688 +0] Tj +-250 TJm +(rights) +[2.654043 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0] Tj +-250 TJm +(reserv) +[2.654043 +0 +3.538724 +0 +3.100369 +0 +3.538724 +0 +2.654043 +0 +3.98505 +0] Tj +15 TJm +(ed.) +[3.538724 +0 +3.98505 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 616.404 Td +(Redistrib) +[5.316057 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0 +2.215688 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0] Tj +20 TJm +(ution) +[3.98505 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(and) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(use) +[3.98505 +0 +3.100369 +0 +3.538724 +0] Tj +-250 TJm +(in) +[2.215688 +0 +3.98505 +0] Tj +-250 TJm +(source) +[3.100369 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +3.538724 +0] Tj +-250 TJm +(and) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(binary) +[3.98505 +0 +2.215688 +0 +3.98505 +0 +3.538724 +0 +2.654043 +0 +3.98505 +0] Tj +-250 TJm +(forms,) +[2.654043 +0 +3.98505 +0 +2.654043 +0 +6.200738 +0 +3.100369 +0 +1.992525 +0] Tj +-250 TJm +(with) +[5.754412 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0] Tj +-250 TJm +(or) +[3.98505 +0 +2.654043 +0] Tj +-250 TJm +(without) +[5.754412 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(modi\002cation,) +[6.200738 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0 +4.431376 +0 +3.538724 +0 +3.538724 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +1.992525 +0] Tj +-250 TJm +(are) +[3.538724 +0 +2.654043 +0 +3.538724 +0] Tj +-250 TJm +(permitted) +[3.98505 +0 +3.538724 +0 +2.654043 +0 +6.200738 +0 +2.215688 +0 +2.215688 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(pro) +[3.98505 +0 +2.654043 +0 +3.98505 +0] Tj +15 TJm +(vided) +[3.98505 +0 +2.215688 +0 +3.98505 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(that) +[2.215688 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(follo) +[2.654043 +0 +3.98505 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0] Tj +25 TJm +(wing) +[5.754412 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(conditions) +[3.538724 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +3.100369 +0] Tj +-250 TJm +(are) +[3.538724 +0 +2.654043 +0 +3.538724 +0] Tj +-250 TJm +(met:) +[6.200738 +0 +3.538724 +0 +2.215688 +0 +2.215688 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +73.993 590.899 Td +(\225) +[2.789535 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(Redistrib) +[5.316057 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0 +2.215688 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0] Tj +20 TJm +(utions) +[3.98505 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +3.100369 +0] Tj +-250 TJm +(of) +[3.98505 +0 +2.654043 +0] Tj +-250 TJm +(source) +[3.100369 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +3.538724 +0] Tj +-250 TJm +(code) +[3.538724 +0 +3.98505 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(must) +[6.200738 +0 +3.98505 +0 +3.100369 +0 +2.215688 +0] Tj +-250 TJm +(retain) +[2.654043 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +3.98505 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(abo) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +15 TJm +(v) +[3.98505 +0] Tj +15 TJm +(e) +[3.538724 +0] Tj +-250 TJm +(cop) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +10 TJm +(yright) +[3.98505 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(notice,) +[3.98505 +0 +3.98505 +0 +2.215688 +0 +2.215688 +0 +3.538724 +0 +3.538724 +0 +1.992525 +0] Tj +-250 TJm +(this) +[2.215688 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0] Tj +-250 TJm +(list) +[2.215688 +0 +2.215688 +0 +3.100369 +0 +2.215688 +0] Tj +-250 TJm +(of) +[3.98505 +0 +2.654043 +0] Tj +-250 TJm +(conditions) +[3.538724 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +3.100369 +0] Tj +-250 TJm +(and) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(follo) +[2.654043 +0 +3.98505 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0] Tj +25 TJm +(wing) +[5.754412 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(disclaimer) +[3.98505 +0 +2.215688 +0 +3.100369 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +6.200738 +0 +3.538724 +0 +2.654043 +0] Tj +55 TJm +(.) +[1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +73.993 573.365 Td +(\225) +[2.789535 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(The) +[4.869731 +0 +3.98505 +0 +3.538724 +0] Tj +-285 TJm +(origin) +[3.98505 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0 +2.215688 +0 +3.98505 +0] Tj +-284 TJm +(of) +[3.98505 +0 +2.654043 +0] Tj +-285 TJm +(this) +[2.215688 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0] Tj +-285 TJm +(softw) +[3.100369 +0 +3.98505 +0 +2.654043 +0 +2.215688 +0 +5.754412 +0] Tj +10 TJm +(are) +[3.538724 +0 +2.654043 +0 +3.538724 +0] Tj +-284 TJm +(must) +[6.200738 +0 +3.98505 +0 +3.100369 +0 +2.215688 +0] Tj +-285 TJm +(not) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-285 TJm +(be) +[3.98505 +0 +3.538724 +0] Tj +-285 TJm +(misrepresente) +[6.200738 +0 +2.215688 +0 +3.100369 +0 +2.654043 +0 +3.538724 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +3.100369 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0] Tj +1 TJm +(d;) +[3.98505 +0 +2.215688 +0] Tj +-303 TJm +(you) +[3.98505 +0 +3.98505 +0 +3.98505 +0] Tj +-284 TJm +(must) +[6.200738 +0 +3.98505 +0 +3.100369 +0 +2.215688 +0] Tj +-285 TJm +(not) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-285 TJm +(claim) +[3.538724 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +6.200738 +0] Tj +-284 TJm +(that) +[2.215688 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0] Tj +-285 TJm +(you) +[3.98505 +0 +3.98505 +0 +3.98505 +0] Tj +-285 TJm +(wrote) +[5.754412 +0 +2.654043 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0] Tj +-284 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-285 TJm +(original) +[3.98505 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0 +2.215688 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0] Tj +-285 TJm +(softw) +[3.100369 +0 +3.98505 +0 +2.654043 +0 +2.215688 +0 +5.754412 +0] Tj +10 TJm +(are.) +[3.538724 +0 +2.654043 +0 +3.538724 +0 +1.992525 +0] Tj +-828 TJm +(If) +[2.654043 +0 +2.654043 +0] Tj +-285 TJm +(you) +[3.98505 +0 +3.98505 +0 +3.98505 +0] Tj +-285 TJm +(use) +[3.98505 +0 +3.100369 +0 +3.538724 +0] Tj +-284 TJm +(this) +[2.215688 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0] Tj +-285 TJm +(softw) +[3.100369 +0 +3.98505 +0 +2.654043 +0 +2.215688 +0 +5.754412 +0] Tj +10 TJm +(are) +[3.538724 +0 +2.654043 +0 +3.538724 +0] Tj +-285 TJm +(in) +[2.215688 +0 +3.98505 +0] Tj +-284 TJm +(a) +[3.538724 +0] Tj +79.97 563.801 Td +(product,) +[3.98505 +0 +2.654043 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0 +1.992525 +0] Tj +-250 TJm +(an) +[3.538724 +0 +3.98505 +0] Tj +-250 TJm +(ackno) +[3.538724 +0 +3.538724 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0] Tj +25 TJm +(wledgment) +[5.754412 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0 +3.98505 +0 +6.200738 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(in) +[2.215688 +0 +3.98505 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(product) +[3.98505 +0 +2.654043 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0] Tj +-250 TJm +(documentation) +[3.98505 +0 +3.98505 +0 +3.538724 +0 +3.98505 +0 +6.200738 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(w) +[5.754412 +0] Tj +10 TJm +(ould) +[3.98505 +0 +3.98505 +0 +2.215688 +0 +3.98505 +0] Tj +-250 TJm +(be) +[3.98505 +0 +3.538724 +0] Tj +-250 TJm +(appreciated) +[3.538724 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(b) +[3.98505 +0] Tj +20 TJm +(ut) +[3.98505 +0 +2.215688 +0] Tj +-250 TJm +(is) +[2.215688 +0 +3.100369 +0] Tj +-250 TJm +(not) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(required.) +[2.654043 +0 +3.538724 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0 +2.654043 +0 +3.538724 +0 +3.98505 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +73.993 546.267 Td +(\225) +[2.789535 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(Altered) +[5.754412 +0 +2.215688 +0 +2.215688 +0 +3.538724 +0 +2.654043 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(source) +[3.100369 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +3.538724 +0] Tj +-250 TJm +(v) +[3.98505 +0] Tj +15 TJm +(ersions) +[3.538724 +0 +2.654043 +0 +3.100369 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +3.100369 +0] Tj +-250 TJm +(must) +[6.200738 +0 +3.98505 +0 +3.100369 +0 +2.215688 +0] Tj +-250 TJm +(be) +[3.98505 +0 +3.538724 +0] Tj +-250 TJm +(plainly) +[3.98505 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +3.98505 +0 +2.215688 +0 +3.98505 +0] Tj +-250 TJm +(mark) +[6.200738 +0 +3.538724 +0 +2.654043 +0 +3.98505 +0] Tj +10 TJm +(ed) +[3.538724 +0 +3.98505 +0] Tj +-250 TJm +(as) +[3.538724 +0 +3.100369 +0] Tj +-250 TJm +(such,) +[3.100369 +0 +3.98505 +0 +3.538724 +0 +3.98505 +0 +1.992525 +0] Tj +-250 TJm +(and) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(must) +[6.200738 +0 +3.98505 +0 +3.100369 +0 +2.215688 +0] Tj +-250 TJm +(not) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(be) +[3.98505 +0 +3.538724 +0] Tj +-250 TJm +(misrepresented) +[6.200738 +0 +2.215688 +0 +3.100369 +0 +2.654043 +0 +3.538724 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +3.100369 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(as) +[3.538724 +0 +3.100369 +0] Tj +-250 TJm +(being) +[3.98505 +0 +3.538724 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(original) +[3.98505 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0 +2.215688 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0] Tj +-250 TJm +(softw) +[3.100369 +0 +3.98505 +0 +2.654043 +0 +2.215688 +0 +5.754412 +0] Tj +10 TJm +(are.) +[3.538724 +0 +2.654043 +0 +3.538724 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +73.993 528.733 Td +(\225) +[2.789535 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(The) +[4.869731 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(name) +[3.98505 +0 +3.538724 +0 +6.200738 +0 +3.538724 +0] Tj +-250 TJm +(of) +[3.98505 +0 +2.654043 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(author) +[3.538724 +0 +3.98505 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0] Tj +-250 TJm +(may) +[6.200738 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(not) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(be) +[3.98505 +0 +3.538724 +0] Tj +-250 TJm +(used) +[3.98505 +0 +3.100369 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(to) +[2.215688 +0 +3.98505 +0] Tj +-250 TJm +(endorse) +[3.538724 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.100369 +0 +3.538724 +0] Tj +-250 TJm +(or) +[3.98505 +0 +2.654043 +0] Tj +-250 TJm +(promote) +[3.98505 +0 +2.654043 +0 +3.98505 +0 +6.200738 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0] Tj +-250 TJm +(products) +[3.98505 +0 +2.654043 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +3.538724 +0 +2.215688 +0 +3.100369 +0] Tj +-250 TJm +(deri) +[3.98505 +0 +3.538724 +0 +2.654043 +0 +2.215688 +0] Tj +25 TJm +(v) +[3.98505 +0] Tj +15 TJm +(ed) +[3.538724 +0 +3.98505 +0] Tj +-250 TJm +(from) +[2.654043 +0 +2.654043 +0 +3.98505 +0 +6.200738 +0] Tj +-250 TJm +(this) +[2.215688 +0 +3.98505 +0 +2.215688 +0 +3.100369 +0] Tj +-250 TJm +(softw) +[3.100369 +0 +3.98505 +0 +2.654043 +0 +2.215688 +0 +5.754412 +0] Tj +10 TJm +(are) +[3.538724 +0 +2.654043 +0 +3.538724 +0] Tj +-250 TJm +(without) +[5.754412 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(speci\002c) +[3.100369 +0 +3.98505 +0 +3.538724 +0 +3.538724 +0 +2.215688 +0 +4.431376 +0 +3.538724 +0] Tj +-250 TJm +(prior) +[3.98505 +0 +2.654043 +0 +2.215688 +0 +3.98505 +0 +2.654043 +0] Tj +-250 TJm +(written) +[5.754412 +0 +2.654043 +0 +2.215688 +0 +2.215688 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0] Tj +-250 TJm +(permission.) +[3.98505 +0 +3.538724 +0 +2.654043 +0 +6.200738 +0 +2.215688 +0 +3.100369 +0 +3.100369 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 511.198 Td +(THIS) +[4.869731 +0 +5.754412 +0 +2.654043 +0 +4.431376 +0] Tj +-401 TJm +(SOFTW) +[4.431376 +0 +5.754412 +0 +4.431376 +0 +4.869731 +0 +7.523774 +0] Tj +120 TJm +(ARE) +[5.754412 +0 +5.316057 +0 +4.869731 +0] Tj +-401 TJm +(IS) +[2.654043 +0 +4.431376 +0] Tj +-400 TJm +(PR) +[4.431376 +0 +5.316057 +0] Tj +40 TJm +(O) +[5.754412 +0] Tj +50 TJm +(VIDED) +[5.754412 +0 +2.654043 +0 +5.754412 +0 +4.869731 +0 +5.754412 +0] Tj +-401 TJm +(BY) +[5.316057 +0 +5.754412 +0] Tj +-401 TJm +(THE) +[4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +-401 TJm +(A) +[5.754412 +0] Tj +55 TJm +(UTHOR) +[5.754412 +0 +4.869731 +0 +5.754412 +0 +5.754412 +0 +5.316057 +0] Tj +-401 TJm +("AS) +[3.251801 +0 +5.754412 +0 +4.431376 +0] Tj +-401 TJm +(IS") +[2.654043 +0 +4.431376 +0 +3.251801 +0] Tj +-401 TJm +(AND) +[5.754412 +0 +5.754412 +0 +5.754412 +0] Tj +-400 TJm +(ANY) +[5.754412 +0 +5.754412 +0 +5.754412 +0] Tj +-401 TJm +(EXPRESS) +[4.869731 +0 +5.754412 +0 +4.431376 +0 +5.316057 +0 +4.869731 +0 +4.431376 +0 +4.431376 +0] Tj +-401 TJm +(OR) +[5.754412 +0 +5.316057 +0] Tj +-401 TJm +(IMPLIED) +[2.654043 +0 +7.085419 +0 +4.431376 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0] Tj +-401 TJm +(W) +[7.523774 +0] Tj +120 TJm +(ARRANTIES,) +[5.754412 +0 +5.316057 +0 +5.316057 +0 +5.754412 +0 +5.754412 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +4.431376 +0 +1.992525 +0] Tj +-401 TJm +(INCLUDING,) +[2.654043 +0 +5.754412 +0 +5.316057 +0 +4.869731 +0 +5.754412 +0 +5.754412 +0 +2.654043 +0 +5.754412 +0 +5.754412 +0 +1.992525 +0] Tj +-401 TJm +(B) +[5.316057 +0] Tj +11 TJm +(UT) +[5.754412 +0 +4.869731 +0] Tj +72 501.634 Td +(NO) +[5.754412 +0 +5.754412 +0] Tj +40 TJm +(T) +[4.869731 +0] Tj +-304 TJm +(LIMITED) +[4.869731 +0 +2.654043 +0 +7.085419 +0 +2.654043 +0 +4.869731 +0 +4.869731 +0 +5.754412 +0] Tj +-304 TJm +(T) +[4.869731 +0] Tj +18 TJm +(O,) +[5.754412 +0 +1.992525 +0] Tj +-305 TJm +(THE) +[4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +-304 TJm +(IMPLIED) +[2.654043 +0 +7.085419 +0 +4.431376 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0] Tj +-304 TJm +(W) +[7.523774 +0] Tj +120 TJm +(ARRANTIES) +[5.754412 +0 +5.316057 +0 +5.316057 +0 +5.754412 +0 +5.754412 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +4.431376 +0] Tj +-304 TJm +(OF) +[5.754412 +0 +4.431376 +0] Tj +-304 TJm +(MERCHANT) +[7.085419 +0 +4.869731 +0 +5.316057 +0 +5.316057 +0 +5.754412 +0 +5.754412 +0 +5.754412 +0 +4.869731 +0] Tj +93 TJm +(ABILITY) +[5.754412 +0 +5.316057 +0 +2.654043 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0] Tj +-304 TJm +(AND) +[5.754412 +0 +5.754412 +0 +5.754412 +0] Tj +-305 TJm +(FITNESS) +[4.431376 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0 +4.431376 +0 +4.431376 +0] Tj +-304 TJm +(FOR) +[4.431376 +0 +5.754412 +0 +5.316057 +0] Tj +-304 TJm +(A) +[5.754412 +0] Tj +-304 TJm +(P) +[4.431376 +0] Tj +92 TJm +(AR) +[5.754412 +0 +5.316057 +0] Tj +60 TJm +(TICULAR) +[4.869731 +0 +2.654043 +0 +5.316057 +0 +5.754412 +0 +4.869731 +0 +5.754412 +0 +5.316057 +0] Tj +-304 TJm +(PURPOSE) +[4.431376 +0 +5.754412 +0 +5.316057 +0 +4.431376 +0 +5.754412 +0 +4.431376 +0 +4.869731 +0] Tj +-304 TJm +(ARE) +[5.754412 +0 +5.316057 +0 +4.869731 +0] Tj +-305 TJm +(DIS) +[5.754412 +0 +2.654043 +0 +4.431376 +0] Tj +1 TJm +(-) +[2.654043 +0] Tj +72 492.07 Td +(CLAIMED.) +[5.316057 +0 +4.869731 +0 +5.754412 +0 +2.654043 +0 +7.085419 +0 +4.869731 +0 +5.754412 +0 +1.992525 +0] Tj +-576 TJm +(IN) +[2.654043 +0 +5.754412 +0] Tj +-287 TJm +(NO) +[5.754412 +0 +5.754412 +0] Tj +-288 TJm +(EVENT) +[4.869731 +0 +5.754412 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +-288 TJm +(SHALL) +[4.431376 +0 +5.754412 +0 +5.754412 +0 +4.869731 +0 +4.869731 +0] Tj +-288 TJm +(THE) +[4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +-287 TJm +(A) +[5.754412 +0] Tj +55 TJm +(UTHOR) +[5.754412 +0 +4.869731 +0 +5.754412 +0 +5.754412 +0 +5.316057 +0] Tj +-288 TJm +(BE) +[5.316057 +0 +4.869731 +0] Tj +-288 TJm +(LIABLE) +[4.869731 +0 +2.654043 +0 +5.754412 +0 +5.316057 +0 +4.869731 +0 +4.869731 +0] Tj +-288 TJm +(FOR) +[4.431376 +0 +5.754412 +0 +5.316057 +0] Tj +-288 TJm +(ANY) +[5.754412 +0 +5.754412 +0 +5.754412 +0] Tj +-287 TJm +(DIRECT) +[5.754412 +0 +2.654043 +0 +5.316057 +0 +4.869731 +0 +5.316057 +0 +4.869731 +0] Tj +74 TJm +(,) +[1.992525 +0] Tj +-288 TJm +(INDIRECT) +[2.654043 +0 +5.754412 +0 +5.754412 +0 +2.654043 +0 +5.316057 +0 +4.869731 +0 +5.316057 +0 +4.869731 +0] Tj +74 TJm +(,) +[1.992525 +0] Tj +-288 TJm +(INCIDENT) +[2.654043 +0 +5.754412 +0 +5.316057 +0 +2.654043 +0 +5.754412 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +93 TJm +(AL,) +[5.754412 +0 +4.869731 +0 +1.992525 +0] Tj +-288 TJm +(SPECIAL,) +[4.431376 +0 +4.431376 +0 +4.869731 +0 +5.316057 +0 +2.654043 +0 +5.754412 +0 +4.869731 +0 +1.992525 +0] Tj +-288 TJm +(EXEMPLAR) +[4.869731 +0 +5.754412 +0 +4.869731 +0 +7.085419 +0 +4.431376 +0 +4.869731 +0 +5.754412 +0 +5.316057 +0] Tj +65 TJm +(Y) +[5.754412 +0] Tj +129 TJm +(,) +[1.992525 +0] Tj +72 482.506 Td +(OR) +[5.754412 +0 +5.316057 +0] Tj +-299 TJm +(CONSEQ) +[5.316057 +0 +5.754412 +0 +5.754412 +0 +4.431376 +0 +4.869731 +0 +5.754412 +0] Tj +10 TJm +(UENTIAL) +[5.754412 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0 +2.654043 +0 +5.754412 +0 +4.869731 +0] Tj +-300 TJm +(D) +[5.754412 +0] Tj +40 TJm +(AMA) +[5.754412 +0 +7.085419 +0 +5.754412 +0] Tj +40 TJm +(GES) +[5.754412 +0 +4.869731 +0 +4.431376 +0] Tj +-299 TJm +(\(INCLUDING,) +[2.654043 +0 +2.654043 +0 +5.754412 +0 +5.316057 +0 +4.869731 +0 +5.754412 +0 +5.754412 +0 +2.654043 +0 +5.754412 +0 +5.754412 +0 +1.992525 +0] Tj +-299 TJm +(B) +[5.316057 +0] Tj +10 TJm +(UT) +[5.754412 +0 +4.869731 +0] Tj +-299 TJm +(NO) +[5.754412 +0 +5.754412 +0] Tj +40 TJm +(T) +[4.869731 +0] Tj +-300 TJm +(LIMITED) +[4.869731 +0 +2.654043 +0 +7.085419 +0 +2.654043 +0 +4.869731 +0 +4.869731 +0 +5.754412 +0] Tj +-299 TJm +(T) +[4.869731 +0] Tj +18 TJm +(O,) +[5.754412 +0 +1.992525 +0] Tj +-299 TJm +(PR) +[4.431376 +0 +5.316057 +0] Tj +40 TJm +(OCUREMENT) +[5.754412 +0 +5.316057 +0 +5.754412 +0 +5.316057 +0 +4.869731 +0 +7.085419 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +-299 TJm +(OF) +[5.754412 +0 +4.431376 +0] Tj +-300 TJm +(SUBSTITUTE) +[4.431376 +0 +5.754412 +0 +5.316057 +0 +4.431376 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0 +4.869731 +0] Tj +-299 TJm +(GOODS) +[5.754412 +0 +5.754412 +0 +5.754412 +0 +5.754412 +0 +4.431376 +0] Tj +-299 TJm +(OR) +[5.754412 +0 +5.316057 +0] Tj +-300 TJm +(SER) +[4.431376 +0 +4.869731 +0 +5.316057 +0] Tj +80 TJm +(VICES) +[5.754412 +0 +2.654043 +0 +5.316057 +0 +4.869731 +0 +4.431376 +0] Tj +1 TJm +(;) +[2.215688 +0] Tj +72 472.942 Td +(LOSS) +[4.869731 +0 +5.754412 +0 +4.431376 +0 +4.431376 +0] Tj +-360 TJm +(OF) +[5.754412 +0 +4.431376 +0] Tj +-360 TJm +(USE,) +[5.754412 +0 +4.431376 +0 +4.869731 +0 +1.992525 +0] Tj +-360 TJm +(D) +[5.754412 +0] Tj +40 TJm +(A) +[5.754412 +0] Tj +111 TJm +(T) +[4.869731 +0] Tj +93 TJm +(A,) +[5.754412 +0 +1.992525 +0] Tj +-360 TJm +(OR) +[5.754412 +0 +5.316057 +0] Tj +-359 TJm +(PR) +[4.431376 +0 +5.316057 +0] Tj +40 TJm +(OFITS;) +[5.754412 +0 +4.431376 +0 +2.654043 +0 +4.869731 +0 +4.431376 +0 +2.215688 +0] Tj +-360 TJm +(OR) +[5.754412 +0 +5.316057 +0] Tj +-360 TJm +(B) +[5.316057 +0] Tj +10 TJm +(USINESS) +[5.754412 +0 +4.431376 +0 +2.654043 +0 +5.754412 +0 +4.869731 +0 +4.431376 +0 +4.431376 +0] Tj +-360 TJm +(INTERR) +[2.654043 +0 +5.754412 +0 +4.869731 +0 +4.869731 +0 +5.316057 +0 +5.316057 +0] Tj +40 TJm +(UPTION\)) +[5.754412 +0 +4.431376 +0 +4.869731 +0 +2.654043 +0 +5.754412 +0 +5.754412 +0 +2.654043 +0] Tj +-360 TJm +(HO) +[5.754412 +0 +5.754412 +0] Tj +35 TJm +(WEVER) +[7.523774 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0 +5.316057 +0] Tj +-360 TJm +(CA) +[5.316057 +0 +5.754412 +0] Tj +55 TJm +(USED) +[5.754412 +0 +4.431376 +0 +4.869731 +0 +5.754412 +0] Tj +-359 TJm +(AND) +[5.754412 +0 +5.754412 +0 +5.754412 +0] Tj +-360 TJm +(ON) +[5.754412 +0 +5.754412 +0] Tj +-360 TJm +(ANY) +[5.754412 +0 +5.754412 +0 +5.754412 +0] Tj +-360 TJm +(THEOR) +[4.869731 +0 +5.754412 +0 +4.869731 +0 +5.754412 +0 +5.316057 +0] Tj +65 TJm +(Y) +[5.754412 +0] Tj +-360 TJm +(OF) +[5.754412 +0 +4.431376 +0] Tj +-360 TJm +(LIABI) +[4.869731 +0 +2.654043 +0 +5.754412 +0 +5.316057 +0 +2.654043 +0] Tj +1 TJm +(LITY) +[4.869731 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0] Tj +128 TJm +(,) +[1.992525 +0] Tj +72 463.378 Td +(WHETHER) +[7.523774 +0 +5.754412 +0 +4.869731 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0 +5.316057 +0] Tj +-247 TJm +(IN) +[2.654043 +0 +5.754412 +0] Tj +-247 TJm +(CONTRA) +[5.316057 +0 +5.754412 +0 +5.754412 +0 +4.869731 +0 +5.316057 +0 +5.754412 +0] Tj +40 TJm +(CT) +[5.316057 +0 +4.869731 +0] Tj +74 TJm +(,) +[1.992525 +0] Tj +-247 TJm +(STRICT) +[4.431376 +0 +4.869731 +0 +5.316057 +0 +2.654043 +0 +5.316057 +0 +4.869731 +0] Tj +-247 TJm +(LIABILITY) +[4.869731 +0 +2.654043 +0 +5.754412 +0 +5.316057 +0 +2.654043 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0] Tj +129 TJm +(,) +[1.992525 +0] Tj +-247 TJm +(O) +[5.754412 +0] Tj +1 TJm +(R) +[5.316057 +0] Tj +-247 TJm +(T) +[4.869731 +0] Tj +18 TJm +(OR) +[5.754412 +0 +5.316057 +0] Tj +60 TJm +(T) +[4.869731 +0] Tj +-247 TJm +(\(INCLUDING) +[2.654043 +0 +2.654043 +0 +5.754412 +0 +5.316057 +0 +4.869731 +0 +5.754412 +0 +5.754412 +0 +2.654043 +0 +5.754412 +0 +5.754412 +0] Tj +-247 TJm +(NEGLIGENCE) +[5.754412 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0 +2.654043 +0 +5.754412 +0 +4.869731 +0 +5.754412 +0 +5.316057 +0 +4.869731 +0] Tj +-247 TJm +(OR) +[5.754412 +0 +5.316057 +0] Tj +-247 TJm +(O) +[5.754412 +0] Tj +40 TJm +(THER) +[4.869731 +0 +5.754412 +0 +4.869731 +0 +5.316057 +0] Tj +55 TJm +(WISE\)) +[7.523774 +0 +2.654043 +0 +4.431376 +0 +4.869731 +0 +2.654043 +0] Tj +-247 TJm +(ARISING) +[5.754412 +0 +5.316057 +0 +2.654043 +0 +4.431376 +0 +2.654043 +0 +5.754412 +0 +5.754412 +0] Tj +-247 TJm +(IN) +[2.654043 +0 +5.754412 +0] Tj +-247 TJm +(ANY) +[5.754412 +0 +5.754412 +0 +5.754412 +0] Tj +-247 TJm +(W) +[7.523774 +0] Tj +120 TJm +(A) +[5.754412 +0] Tj +105 TJm +(Y) +[5.754412 +0] Tj +-247 TJm +(OUT) +[5.754412 +0 +5.754412 +0 +4.869731 +0] Tj +72 453.814 Td +(OF) +[5.754412 +0 +4.431376 +0] Tj +-250 TJm +(THE) +[4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +-250 TJm +(USE) +[5.754412 +0 +4.431376 +0 +4.869731 +0] Tj +-250 TJm +(OF) +[5.754412 +0 +4.431376 +0] Tj +-250 TJm +(THIS) +[4.869731 +0 +5.754412 +0 +2.654043 +0 +4.431376 +0] Tj +-250 TJm +(SOFTW) +[4.431376 +0 +5.754412 +0 +4.431376 +0 +4.869731 +0 +7.523774 +0] Tj +120 TJm +(ARE,) +[5.754412 +0 +5.316057 +0 +4.869731 +0 +1.992525 +0] Tj +-250 TJm +(EVEN) +[4.869731 +0 +5.754412 +0 +4.869731 +0 +5.754412 +0] Tj +-250 TJm +(IF) +[2.654043 +0 +4.431376 +0] Tj +-250 TJm +(AD) +[5.754412 +0 +5.754412 +0] Tj +40 TJm +(VISED) +[5.754412 +0 +2.654043 +0 +4.431376 +0 +4.869731 +0 +5.754412 +0] Tj +-250 TJm +(OF) +[5.754412 +0 +4.431376 +0] Tj +-250 TJm +(THE) +[4.869731 +0 +5.754412 +0 +4.869731 +0] Tj +-250 TJm +(POSSIBILITY) +[4.431376 +0 +5.754412 +0 +4.431376 +0 +4.431376 +0 +2.654043 +0 +5.316057 +0 +2.654043 +0 +4.869731 +0 +2.654043 +0 +4.869731 +0 +5.754412 +0] Tj +-250 TJm +(OF) +[5.754412 +0 +4.431376 +0] Tj +-250 TJm +(SUCH) +[4.431376 +0 +5.754412 +0 +5.316057 +0 +5.754412 +0] Tj +-250 TJm +(D) +[5.754412 +0] Tj +40 TJm +(AMA) +[5.754412 +0 +7.085419 +0 +5.754412 +0] Tj +40 TJm +(GE.) +[5.754412 +0 +4.869731 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 436.279 Td +(P) +[4.431376 +0] Tj +92 TJm +(A) +[5.754412 +0] Tj +111 TJm +(TENTS:) +[4.869731 +0 +4.869731 +0 +5.754412 +0 +4.869731 +0 +4.431376 +0 +2.215688 +0] Tj +-296 TJm +(T) +[4.869731 +0] Tj +80 TJm +(o) +[3.98505 +0] Tj +-295 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-296 TJm +(best) +[3.98505 +0 +3.538724 +0 +3.100369 +0 +2.215688 +0] Tj +-295 TJm +(of) +[3.98505 +0 +2.654043 +0] Tj +-296 TJm +(my) +[6.200738 +0 +3.98505 +0] Tj +-295 TJm +(kno) +[3.98505 +0 +3.98505 +0 +3.98505 +0] Tj +25 TJm +(wledge,) +[5.754412 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0 +3.98505 +0 +3.538724 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +208.544 436.279 Td +/F17_0 7.9701 Tf +(bzip2) +[4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +234.81 436.279 Td +/F15_0 7.9701 Tf +(and) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +248.674 436.279 Td +/F17_0 7.9701 Tf +(libbzip2) +[4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0 +4.78206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +289.286 436.279 Td +/F15_0 7.9701 Tf +(do) +[3.98505 +0 +3.98505 +0] Tj +-296 TJm +(not) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-295 TJm +(use) +[3.98505 +0 +3.100369 +0 +3.538724 +0] Tj +-296 TJm +(an) +[3.538724 +0 +3.98505 +0] Tj +15 TJm +(y) +[3.98505 +0] Tj +-295 TJm +(patented) +[3.98505 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0] Tj +-296 TJm +(algorithms.) +[3.538724 +0 +2.215688 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +2.215688 +0 +2.215688 +0 +3.98505 +0 +6.200738 +0 +3.100369 +0 +1.992525 +0] Tj +-893 TJm +(Ho) +[5.754412 +0 +3.98505 +0] Tj +25 TJm +(we) +[5.754412 +0 +3.538724 +0] Tj +25 TJm +(v) +[3.98505 +0] Tj +15 TJm +(er) +[3.538724 +0 +2.654043 +0] Tj +40 TJm +(,) +[1.992525 +0] Tj +-307 TJm +(I) +[2.654043 +0] Tj +-295 TJm +(do) +[3.98505 +0 +3.98505 +0] Tj +-296 TJm +(not) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-295 TJm +(ha) +[3.98505 +0 +3.538724 +0] Tj +20 TJm +(v) +[3.98505 +0] Tj +15 TJm +(e) +[3.538724 +0] Tj +-296 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-295 TJm +(resources) +[2.654043 +0 +3.538724 +0 +3.100369 +0 +3.98505 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0 +3.538724 +0 +3.100369 +0] Tj +-296 TJm +(to) +[2.215688 +0 +3.98505 +0] Tj +72 426.715 Td +(carry) +[3.538724 +0 +3.538724 +0 +2.654043 +0 +2.654043 +0 +3.98505 +0] Tj +-250 TJm +(out) +[3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(a) +[3.538724 +0] Tj +-250 TJm +(patent) +[3.98505 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(search.) +[3.100369 +0 +3.538724 +0 +3.538724 +0 +2.654043 +0 +3.538724 +0 +3.98505 +0 +1.992525 +0] Tj +-620 TJm +(Therefore) +[4.869731 +0 +3.98505 +0 +3.538724 +0 +2.654043 +0 +3.538724 +0 +2.654043 +0 +3.98505 +0 +2.654043 +0 +3.538724 +0] Tj +-250 TJm +(I) +[2.654043 +0] Tj +-250 TJm +(cannot) +[3.538724 +0 +3.538724 +0 +3.98505 +0 +3.98505 +0 +3.98505 +0 +2.215688 +0] Tj +-250 TJm +(gi) +[3.98505 +0 +2.215688 +0] Tj +25 TJm +(v) +[3.98505 +0] Tj +15 TJm +(e) +[3.538724 +0] Tj +-250 TJm +(an) +[3.538724 +0 +3.98505 +0] Tj +15 TJm +(y) +[3.98505 +0] Tj +-250 TJm +(guarantee) +[3.98505 +0 +3.98505 +0 +3.538724 +0 +2.654043 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +3.538724 +0 +3.538724 +0] Tj +-250 TJm +(of) +[3.98505 +0 +2.654043 +0] Tj +-250 TJm +(the) +[2.215688 +0 +3.98505 +0 +3.538724 +0] Tj +-250 TJm +(abo) +[3.538724 +0 +3.98505 +0 +3.98505 +0] Tj +15 TJm +(v) +[3.98505 +0] Tj +15 TJm +(e) +[3.538724 +0] Tj +-250 TJm +(statement.) +[3.100369 +0 +2.215688 +0 +3.538724 +0 +2.215688 +0 +3.538724 +0 +6.200738 +0 +3.538724 +0 +3.98505 +0 +2.215688 +0 +1.992525 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 3 3 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 707.441 Td +/F9_0 17.2154 Tf +(T) +[10.518609 +0] Tj +80 TJm +(ab) +[9.571762 +0 +10.518609 +0] Tj +10 TJm +(le) +[4.785881 +0 +9.571762 +0] Tj +-278 TJm +(of) +[10.518609 +0 +5.732728 +0] Tj +-278 TJm +(Contents) +[12.429519 +0 +10.518609 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 686.878 Td +/F15_0 9.9626 Tf +(1.) +[4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Introduction) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +144.488 686.878 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 686.878 Td +/F15_0 9.9626 Tf +(1) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 674.923 Td +(2.) +[4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +163.595 674.923 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 674.923 Td +/F15_0 9.9626 Tf +(2) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 662.968 Td +(2.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(N) +[7.192997 +0] Tj +35 TJm +(AME) +[7.192997 +0 +8.856751 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +131.445 662.968 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 662.968 Td +/F15_0 9.9626 Tf +(2) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 651.013 Td +(2.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(SYNOPSIS) +[5.539206 +0 +7.192997 +0 +7.192997 +0 +7.192997 +0 +5.539206 +0 +5.539206 +0 +3.317546 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +149.337 651.013 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 651.013 Td +/F15_0 9.9626 Tf +(2) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 639.058 Td +(2.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(DESCRIPTION) +[7.192997 +0 +6.087149 +0 +5.539206 +0 +6.645054 +0 +6.645054 +0 +3.317546 +0 +5.539206 +0 +6.087149 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +167.044 639.058 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 639.058 Td +/F15_0 9.9626 Tf +(3) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 627.103 Td +(2.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(OPTIONS) +[7.192997 +0 +5.539206 +0 +6.087149 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +144.627 627.103 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 627.103 Td +/F15_0 9.9626 Tf +(4) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 615.147 Td +(2.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(MEMOR) +[8.856751 +0 +6.087149 +0 +8.856751 +0 +7.192997 +0 +6.645054 +0] Tj +65 TJm +(Y) +[7.192997 +0] Tj +-250 TJm +(MAN) +[8.856751 +0 +7.192997 +0 +7.192997 +0] Tj +35 TJm +(A) +[7.192997 +0] Tj +40 TJm +(GEMENT) +[7.192997 +0 +6.087149 +0 +8.856751 +0 +6.087149 +0 +7.192997 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +220.167 615.147 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 615.147 Td +/F15_0 9.9626 Tf +(5) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 603.192 Td +(2.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(RECO) +[6.645054 +0 +6.087149 +0 +6.645054 +0 +7.192997 +0] Tj +50 TJm +(VERING) +[7.192997 +0 +6.087149 +0 +6.645054 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0] Tj +-250 TJm +(D) +[7.192997 +0] Tj +40 TJm +(A) +[7.192997 +0] Tj +111 TJm +(T) +[6.087149 +0] Tj +93 TJm +(A) +[7.192997 +0] Tj +-250 TJm +(FR) +[5.539206 +0 +6.645054 +0] Tj +40 TJm +(OM) +[7.192997 +0 +8.856751 +0] Tj +-250 TJm +(D) +[7.192997 +0] Tj +40 TJm +(AMA) +[7.192997 +0 +8.856751 +0 +7.192997 +0] Tj +40 TJm +(GED) +[7.192997 +0 +6.087149 +0 +7.192997 +0] Tj +-250 TJm +(FILES) +[5.539206 +0 +3.317546 +0 +6.087149 +0 +6.087149 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.005 603.192 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 603.192 Td +/F15_0 9.9626 Tf +(6) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 591.237 Td +(2.7.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(PERFORMANCE) +[5.539206 +0 +6.087149 +0 +6.645054 +0 +5.539206 +0 +7.192997 +0 +6.645054 +0 +8.856751 +0 +7.192997 +0 +7.192997 +0 +6.645054 +0 +6.087149 +0] Tj +-250 TJm +(NO) +[7.192997 +0 +7.192997 +0] Tj +40 TJm +(TES) +[6.087149 +0 +6.087149 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.713 591.237 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 591.237 Td +/F15_0 9.9626 Tf +(6) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 579.282 Td +(2.8.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(CA) +[6.645054 +0 +7.192997 +0] Tj +135 TJm +(VEA) +[7.192997 +0 +6.087149 +0 +7.192997 +0] Tj +111 TJm +(TS) +[6.087149 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +145.34 579.282 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 579.282 Td +/F15_0 9.9626 Tf +(7) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 567.327 Td +(2.9.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(A) +[7.192997 +0] Tj +55 TJm +(UTHOR) +[7.192997 +0 +6.087149 +0 +7.192997 +0 +7.192997 +0 +6.645054 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +141.861 567.327 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 567.327 Td +/F15_0 9.9626 Tf +(7) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 555.372 Td +(3.) +[4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +160.049 555.372 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +221.397 555.372 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 555.372 Td +/F15_0 9.9626 Tf +(8) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 543.416 Td +(3.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(T) +[6.087149 +0] Tj +80 TJm +(op-le) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(structure) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.538 543.416 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 543.416 Td +/F15_0 9.9626 Tf +(8) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 531.461 Td +(3.1.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Lo) +[6.087149 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(summary) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.406 531.461 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 531.461 Td +/F15_0 9.9626 Tf +(9) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 519.506 Td +(3.1.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(High-le) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(summary) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +190.363 519.506 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 519.506 Td +/F15_0 9.9626 Tf +(9) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 507.551 Td +(3.1.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Utility) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(summary) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +215.337 507.551 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 507.551 Td +/F15_0 9.9626 Tf +(9) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 495.596 Td +(3.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Error) +[6.087149 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(handling) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.366 495.596 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 495.596 Td +/F15_0 9.9626 Tf +(10) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 483.64 Td +(3.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Lo) +[6.087149 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +179.8 483.64 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 483.64 Td +/F15_0 9.9626 Tf +(11) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 471.685 Td +(3.3.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzCompressInit) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +194.302 471.685 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 471.685 Td +/F15_0 9.9626 Tf +(11) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 459.73 Td +(3.3.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzCompress) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +180.742 459.73 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 459.73 Td +/F15_0 9.9626 Tf +(13) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 447.775 Td +(3.3.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzCompressEnd) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +197.622 447.775 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 447.775 Td +/F15_0 9.9626 Tf +(16) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 435.82 Td +(3.3.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzDecompressInit) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +205.641 435.82 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 435.82 Td +/F15_0 9.9626 Tf +(16) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 423.865 Td +(3.3.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzDecompress) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.867 423.865 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 423.865 Td +/F15_0 9.9626 Tf +(17) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 411.909 Td +(3.3.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzDecompressEnd) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +206.747 411.909 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 411.909 Td +/F15_0 9.9626 Tf +(18) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 399.954 Td +(3.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(High-le) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +180.757 399.954 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 399.954 Td +/F15_0 9.9626 Tf +(18) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 387.999 Td +(3.4.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzReadOpen) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +184.057 387.999 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 387.999 Td +/F15_0 9.9626 Tf +(19) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 376.044 Td +(3.4.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzRead) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.198 376.044 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 376.044 Td +/F15_0 9.9626 Tf +(20) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 364.089 Td +(3.4.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzReadGetUnused) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.192997 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +206.747 364.089 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 364.089 Td +/F15_0 9.9626 Tf +(21) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 352.134 Td +(3.4.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzReadClose) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +6.645054 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +184.614 352.134 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 352.134 Td +/F15_0 9.9626 Tf +(22) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 340.178 Td +(3.4.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzWriteOpen) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +9.404694 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +185.162 340.178 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 340.178 Td +/F15_0 9.9626 Tf +(22) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 328.223 Td +(3.4.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzWrite) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +9.404694 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +163.303 328.223 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 328.223 Td +/F15_0 9.9626 Tf +(23) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 316.268 Td +(3.4.7.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzWriteClose) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +9.404694 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +6.645054 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +187.934 316.268 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 316.268 Td +/F15_0 9.9626 Tf +(23) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 304.313 Td +(3.4.8.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Handling) +[7.192997 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(embedded) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(streams) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +291.142 304.313 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 304.313 Td +/F15_0 9.9626 Tf +(24) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 292.358 Td +(3.4.9.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Standard) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(\002le-reading/writing) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +246.318 292.358 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 292.358 Td +/F15_0 9.9626 Tf +(25) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 280.403 Td +(3.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Utility) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +167.186 280.403 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 280.403 Td +/F15_0 9.9626 Tf +(26) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 268.447 Td +(3.5.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzBuf) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fT) +[3.317546 +0 +6.087149 +0] Tj +80 TJm +(oBuf) +[4.9813 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fCompress) +[3.317546 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +228.243 268.447 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 268.447 Td +/F15_0 9.9626 Tf +(26) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 256.492 Td +(3.5.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzBuf) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fT) +[3.317546 +0 +6.087149 +0] Tj +80 TJm +(oBuf) +[4.9813 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fDecompress) +[3.317546 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +237.368 256.492 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 256.492 Td +/F15_0 9.9626 Tf +(27) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 244.537 Td +(3.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(zlib) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(compatibility) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +211.601 244.537 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 244.537 Td +/F15_0 9.9626 Tf +(28) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 232.582 Td +(3.7.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Using) +[7.192997 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(stdio-free) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +40 TJm +(vironment) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +278.633 232.582 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 232.582 Td +/F15_0 9.9626 Tf +(28) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 220.627 Td +(3.7.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Getting) +[7.192997 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(rid) +[3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(stdio) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +185.033 220.627 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 220.627 Td +/F15_0 9.9626 Tf +(29) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 208.671 Td +(3.7.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Critical) +[6.645054 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(handling) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +198.17 208.671 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 208.671 Td +/F15_0 9.9626 Tf +(29) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 196.716 Td +(3.8.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Making) +[8.856751 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(W) +[9.404694 +0] Tj +40 TJm +(indo) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-250 TJm +(DLL) +[7.192997 +0 +6.087149 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +201.998 196.716 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 196.716 Td +/F15_0 9.9626 Tf +(29) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 184.761 Td +(4.) +[4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Miscellanea) +[8.856751 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +143.653 184.761 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 184.761 Td +/F15_0 9.9626 Tf +(31) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 172.806 Td +(4.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Limitations) +[6.087149 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +267.908 172.806 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 172.806 Td +/F15_0 9.9626 Tf +(31) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 160.851 Td +(4.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Portability) +[5.539206 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(issues) +[2.769603 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +170.784 160.851 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 160.851 Td +/F15_0 9.9626 Tf +(32) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 148.896 Td +(4.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Reporting) +[6.645054 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ugs) +[4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.656 148.896 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 148.896 Td +/F15_0 9.9626 Tf +(32) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 136.94 Td +(4.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Did) +[7.192997 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(right) +[3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(package?) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +227.565 136.94 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 136.94 Td +/F15_0 9.9626 Tf +(33) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 124.985 Td +(4.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Further) +[5.539206 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(Reading) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +166.902 124.985 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 124.985 Td +/F15_0 9.9626 Tf +(34) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +536.068 50.852 Td +(iii) +[2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 1 4 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 701.916 Td +/F9_0 24.7902 Tf +(1.) +[13.783351 +0 +6.891676 +0] Tj +-278 TJm +(Intr) +[6.891676 +0 +15.146812 +0 +8.255137 +0 +9.643388 +0] Tj +20 TJm +(oduction) +[15.146812 +0 +15.146812 +0 +15.146812 +0 +13.783351 +0 +8.255137 +0 +6.891676 +0 +15.146812 +0 +15.146812 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 679.998 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.507 679.998 Td +/F15_0 9.9626 Tf +(compresses) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-263 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-263 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-262 TJm +(Burro) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0] Tj +25 TJm +(ws-Wheeler) +[7.192997 +0 +3.875451 +0 +3.317546 +0 +9.404694 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-263 TJm +(block-sorting) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(te) +[2.769603 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-263 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(algorithm,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-266 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(Huf) +[7.192997 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fman) +[3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-263 TJm +(coding.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +72 668.043 Td +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-203 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-204 TJm +(generally) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-203 TJm +(considerably) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-203 TJm +(better) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-204 TJm +(t) +[2.769603 +0] Tj +1 TJm +(han) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-204 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-203 TJm +(achie) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ed) +[4.423394 +0 +4.9813 +0] Tj +-203 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-204 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-203 TJm +(con) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(entional) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-203 TJm +(LZ77/LZ78-based) +[6.087149 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +6.087149 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-204 TJm +(compressors,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +72 656.087 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(approaches) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(performance) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(PPM) +[5.539206 +0 +5.539206 +0 +8.856751 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(amily) +[4.423394 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(statistical) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(compressors.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 634.17 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +105.074 634.17 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-320 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uilt) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-319 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-320 TJm +(top) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-320 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.712 634.17 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +224.533 634.17 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-337 TJm +(a) +[4.423394 +0] Tj +-320 TJm +(\003e) +[5.539206 +0 +4.423394 +0] Tj +15 TJm +(xible) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-320 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-319 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-320 TJm +(handling) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-320 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-320 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-319 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-320 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +449.816 634.17 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +482.889 634.17 Td +/F15_0 9.9626 Tf +(format.) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-1039 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +72 622.214 Td +(manual) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-316 TJm +(describes) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-316 TJm +(both) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-317 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-316 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-316 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-316 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-316 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-316 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-317 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-316 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-316 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-316 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-316 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-317 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-316 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace.) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-1017 TJm +(Most) +[8.856751 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-316 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-316 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-317 TJm +(manual) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-316 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +72 610.259 Td +(de) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +20 TJm +(oted) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(program,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(good) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-250 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-250 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(interest) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(program.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 578.379 Td +(\225) +[3.48691 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-450 TJm +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-278 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-278 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-277 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-278 TJm +([2]) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-278 TJm +(describes) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-278 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-278 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-278 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +256.282 578.379 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +286.17 578.379 Td +/F15_0 9.9626 Tf +(;) +[2.769603 +0] Tj +-292 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-278 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-277 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-278 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-278 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-278 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-278 TJm +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-278 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-277 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-278 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-278 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-278 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-278 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-277 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-278 TJm +(kno) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +81.963 566.424 Td +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(operate) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(program.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 544.506 Td +(\225) +[3.48691 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-450 TJm +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(libbzip2) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +([8]) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(describes) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(programming) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(aces) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(detail,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 522.588 Td +(\225) +[3.48691 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-450 TJm +(Miscellanea) +[8.856751 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +([31]) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(records) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(miscellaneous) +[7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(notes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(I) +[3.317546 +0] Tj +-250 TJm +(thought) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(ought) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(recorded) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +25 TJm +(where.) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +539.395 50.852 Td +(1) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 2 5 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 701.916 Td +/F9_0 24.7902 Tf +(2.) +[13.783351 +0 +6.891676 +0] Tj +-278 TJm +(Ho) +[17.898524 +0 +15.146812 +0] Tj +15 TJm +(w) +[19.286776 +0] Tj +-278 TJm +(to) +[8.255137 +0 +15.146812 +0] Tj +-278 TJm +(use) +[15.146812 +0 +13.783351 +0 +13.783351 +0] Tj +-278 TJm +(bzip2) +[15.146812 +0 +12.3951 +0 +6.891676 +0 +15.146812 +0 +13.783351 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 656.35 Td +/F9_0 17.2154 Tf +(T) +[10.518609 +0] Tj +80 TJm +(ab) +[9.571762 +0 +10.518609 +0] Tj +10 TJm +(le) +[4.785881 +0 +9.571762 +0] Tj +-278 TJm +(of) +[10.518609 +0 +5.732728 +0] Tj +-278 TJm +(Contents) +[12.429519 +0 +10.518609 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 635.788 Td +/F15_0 9.9626 Tf +(2.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(N) +[7.192997 +0] Tj +35 TJm +(AME) +[7.192997 +0 +8.856751 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +131.445 635.788 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 635.788 Td +/F15_0 9.9626 Tf +(2) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 623.832 Td +(2.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(SYNOPSIS) +[5.539206 +0 +7.192997 +0 +7.192997 +0 +7.192997 +0 +5.539206 +0 +5.539206 +0 +3.317546 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +149.337 623.832 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 623.832 Td +/F15_0 9.9626 Tf +(2) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 611.877 Td +(2.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(DESCRIPTION) +[7.192997 +0 +6.087149 +0 +5.539206 +0 +6.645054 +0 +6.645054 +0 +3.317546 +0 +5.539206 +0 +6.087149 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +167.044 611.877 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 611.877 Td +/F15_0 9.9626 Tf +(3) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 599.922 Td +(2.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(OPTIONS) +[7.192997 +0 +5.539206 +0 +6.087149 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +144.627 599.922 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 599.922 Td +/F15_0 9.9626 Tf +(4) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 587.967 Td +(2.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(MEMOR) +[8.856751 +0 +6.087149 +0 +8.856751 +0 +7.192997 +0 +6.645054 +0] Tj +65 TJm +(Y) +[7.192997 +0] Tj +-250 TJm +(MAN) +[8.856751 +0 +7.192997 +0 +7.192997 +0] Tj +35 TJm +(A) +[7.192997 +0] Tj +40 TJm +(GEMENT) +[7.192997 +0 +6.087149 +0 +8.856751 +0 +6.087149 +0 +7.192997 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +220.167 587.967 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 587.967 Td +/F15_0 9.9626 Tf +(5) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 576.012 Td +(2.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(RECO) +[6.645054 +0 +6.087149 +0 +6.645054 +0 +7.192997 +0] Tj +50 TJm +(VERING) +[7.192997 +0 +6.087149 +0 +6.645054 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0] Tj +-250 TJm +(D) +[7.192997 +0] Tj +40 TJm +(A) +[7.192997 +0] Tj +111 TJm +(T) +[6.087149 +0] Tj +93 TJm +(A) +[7.192997 +0] Tj +-250 TJm +(FR) +[5.539206 +0 +6.645054 +0] Tj +40 TJm +(OM) +[7.192997 +0 +8.856751 +0] Tj +-250 TJm +(D) +[7.192997 +0] Tj +40 TJm +(AMA) +[7.192997 +0 +8.856751 +0 +7.192997 +0] Tj +40 TJm +(GED) +[7.192997 +0 +6.087149 +0 +7.192997 +0] Tj +-250 TJm +(FILES) +[5.539206 +0 +3.317546 +0 +6.087149 +0 +6.087149 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.005 576.012 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 576.012 Td +/F15_0 9.9626 Tf +(6) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 564.057 Td +(2.7.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(PERFORMANCE) +[5.539206 +0 +6.087149 +0 +6.645054 +0 +5.539206 +0 +7.192997 +0 +6.645054 +0 +8.856751 +0 +7.192997 +0 +7.192997 +0 +6.645054 +0 +6.087149 +0] Tj +-250 TJm +(NO) +[7.192997 +0 +7.192997 +0] Tj +40 TJm +(TES) +[6.087149 +0 +6.087149 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.713 564.057 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 564.057 Td +/F15_0 9.9626 Tf +(6) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 552.101 Td +(2.8.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(CA) +[6.645054 +0 +7.192997 +0] Tj +135 TJm +(VEA) +[7.192997 +0 +6.087149 +0 +7.192997 +0] Tj +111 TJm +(TS) +[6.087149 +0 +5.539206 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +145.34 552.101 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 552.101 Td +/F15_0 9.9626 Tf +(7) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 540.146 Td +(2.9.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(A) +[7.192997 +0] Tj +55 TJm +(UTHOR) +[7.192997 +0 +6.087149 +0 +7.192997 +0 +7.192997 +0 +6.645054 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +141.861 540.146 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 540.146 Td +/F15_0 9.9626 Tf +(7) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 508.266 Td +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(chapter) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(contains) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(cop) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +10 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +213.837 508.266 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +246.215 508.266 Td +/F15_0 9.9626 Tf +(man) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(page,) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(nothing) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(else.) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 473.513 Td +/F9_0 20.6585 Tf +(2.1.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(NAME) +[14.915437 +0 +14.915437 +0 +17.208531 +0 +13.77922 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 441.632 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 441.632 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +112.349 441.632 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +117.33 441.632 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.664 441.632 Td +/F15_0 9.9626 Tf +(-) +[3.317546 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(block-sorting) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(compressor) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(v1.0.8) +[4.9813 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 419.715 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 419.715 Td +/F17_0 9.9626 Tf +(bzcat) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +114.839 419.715 Td +/F15_0 9.9626 Tf +(-) +[3.317546 +0] Tj +-250 TJm +(decompresses) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(stdout) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 397.797 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 397.797 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +156.682 397.797 Td +/F15_0 9.9626 Tf +(-) +[3.317546 +0] Tj +-250 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ers) +[4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(damaged) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 353.081 Td +/F9_0 20.6585 Tf +(2.2.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(SYNOPSIS) +[13.77922 +0 +13.77922 +0 +14.915437 +0 +16.072313 +0 +13.77922 +0 +13.77922 +0 +5.743063 +0 +13.77922 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 321.201 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 321.201 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +114.839 321.201 Td +/F15_0 9.9626 Tf +([) +[3.317546 +0] Tj +-250 TJm +(-cdfkqstvzVL123456789) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +7.192997 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(]) +[3.317546 +0] Tj +-250 TJm +([) +[3.317546 +0] Tj +-250 TJm +(\002lenames) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(...) +[2.49065 +0 +2.49065 +0 +2.49065 +0] Tj +-620 TJm +(]) +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 299.283 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 299.283 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +126.795 299.283 Td +/F15_0 9.9626 Tf +([) +[3.317546 +0] Tj +-250 TJm +(-fkvsVL) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +7.192997 +0 +6.087149 +0] Tj +-250 TJm +(]) +[3.317546 +0] Tj +-250 TJm +([) +[3.317546 +0] Tj +-250 TJm +(\002lenames) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(...) +[2.49065 +0 +2.49065 +0 +2.49065 +0] Tj +-620 TJm +(]) +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 277.365 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 277.365 Td +/F17_0 9.9626 Tf +(bzcat) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +114.839 277.365 Td +/F15_0 9.9626 Tf +([) +[3.317546 +0] Tj +-250 TJm +(-s) +[3.317546 +0 +3.875451 +0] Tj +-250 TJm +(]) +[3.317546 +0] Tj +-250 TJm +([) +[3.317546 +0] Tj +-250 TJm +(\002lenames) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(...) +[2.49065 +0 +2.49065 +0 +2.49065 +0] Tj +-620 TJm +(]) +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 255.447 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 255.447 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +156.683 255.447 Td +/F15_0 9.9626 Tf +(\002lename) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +539.395 50.852 Td +(2) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 3 6 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +477.109 749.245 Td +/F15_0 9.9626 Tf +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 704.93 Td +/F9_0 20.6585 Tf +(2.3.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(DESCRIPTION) +[14.915437 +0 +13.77922 +0 +13.77922 +0 +14.915437 +0 +14.915437 +0 +5.743063 +0 +13.77922 +0 +12.622344 +0 +5.743063 +0 +16.072313 +0 +14.915437 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 683.012 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.56 683.012 Td +/F15_0 9.9626 Tf +(compresses) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-268 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-268 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-269 TJm +(Burro) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0] Tj +25 TJm +(ws-Wheeler) +[7.192997 +0 +3.875451 +0 +3.317546 +0 +9.404694 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-268 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-268 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(te) +[2.769603 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-268 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(algorithm,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-273 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(Huf) +[7.192997 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fman) +[3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-268 TJm +(coding.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +72 671.057 Td +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-203 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-204 TJm +(generally) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-203 TJm +(considerably) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-203 TJm +(better) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-204 TJm +(t) +[2.769603 +0] Tj +1 TJm +(han) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-204 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-203 TJm +(achie) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ed) +[4.423394 +0 +4.9813 +0] Tj +-203 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-204 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-203 TJm +(con) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(entional) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-203 TJm +(LZ77/LZ78-based) +[6.087149 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +6.087149 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-204 TJm +(compressors,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +72 659.101 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(approaches) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(performance) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(PPM) +[5.539206 +0 +5.539206 +0 +8.856751 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(amily) +[4.423394 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(statistical) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(compressors.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 637.184 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(command-line) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(options) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(deliberately) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(similar) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(those) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +364.869 637.184 Td +/F17_0 9.9626 Tf +(gzip) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +388.779 637.184 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(identical.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 615.266 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +105.175 615.266 Td +/F15_0 9.9626 Tf +(e) +[4.423394 +0] Tj +15 TJm +(xpects) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-330 TJm +(a) +[4.423394 +0] Tj +-330 TJm +(list) +[2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-330 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-330 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-329 TJm +(names) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-330 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-330 TJm +(accompan) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-330 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-330 TJm +(command-line) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-330 TJm +(\003ags.) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-1099 TJm +(Each) +[6.087149 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-330 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-330 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-330 TJm +(replaced) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-330 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-330 TJm +(a) +[4.423394 +0] Tj +-330 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +72 603.311 Td +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-349 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-348 TJm +(itself,) +[2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +2.49065 +0] Tj +-373 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-349 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-349 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +204.444 603.311 Td +/F17_0 9.9626 Tf +(original_name.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +306.063 603.311 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1212 TJm +(Each) +[6.087149 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-348 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-349 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-348 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-349 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-348 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-349 TJm +(modi\002cation) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-349 TJm +(date,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +72 591.356 Td +(permissions,) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-344 TJm +(and,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-344 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-325 TJm +(possible,) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-344 TJm +(o) +[4.9813 +0] Tj +25 TJm +(wnership) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-325 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-325 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-326 TJm +(corresponding) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-325 TJm +(original,) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-344 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-325 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-325 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-325 TJm +(properties) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-325 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-326 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-325 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +72 579.4 Td +(restored) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-308 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-308 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-307 TJm +(time.) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +-484 TJm +(File) +[5.539206 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-308 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-308 TJm +(handling) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-308 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-307 TJm +(nai) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-308 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-308 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-308 TJm +(sense) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-308 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-308 TJm +(there) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-307 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-308 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-308 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-308 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-308 TJm +(preserving) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 567.445 Td +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-334 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-333 TJm +(names,) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-355 TJm +(permissions,) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-355 TJm +(o) +[4.9813 +0] Tj +25 TJm +(wnerships) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-333 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-334 TJm +(dates) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-334 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-333 TJm +(\002lesystems) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-334 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-334 TJm +(lack) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-333 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-334 TJm +(concepts,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-355 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-333 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-334 TJm +(serious) +[3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-334 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +72 555.49 Td +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(length) +[2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(restrictions,) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(MS-DOS.) +[8.856751 +0 +5.539206 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0 +5.539206 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 533.572 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.379 533.572 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +121.255 533.572 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +165.589 533.572 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erwrite) +[4.423394 +0 +3.317546 +0 +7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xisting) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-620 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(happen,) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(specify) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +495.977 533.572 Td +/F17_0 9.9626 Tf +(-f) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +510.423 533.572 Td +/F15_0 9.9626 Tf +(\003ag.) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 511.654 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-284 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-285 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-284 TJm +(names) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-284 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-284 TJm +(speci\002ed,) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +193.935 511.654 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +226.655 511.654 Td +/F15_0 9.9626 Tf +(compresses) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-284 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-285 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-284 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-284 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-284 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-285 TJm +(output.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-825 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-285 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-284 TJm +(case,) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +491.778 511.654 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +524.499 511.654 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +72 499.699 Td +(decline) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(terminal,) +[2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(entirely) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(incomprehensible) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(therefore) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(pointless.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 477.781 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +116.176 477.781 Td +/F15_0 9.9626 Tf +(\(or) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +130.125 477.781 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(-d) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +177.946 477.781 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-234 TJm +(decompresses) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-234 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-234 TJm +(speci\002ed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +-235 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-609 TJm +(Files) +[5.539206 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-234 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-234 TJm +(were) +[7.192997 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-234 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-235 TJm +(created) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-234 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +445.012 477.781 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +477.233 477.781 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-234 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-234 TJm +(detected) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +72 465.826 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(i) +[2.769603 +0] Tj +1 TJm +(gnored,) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-287 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(a) +[4.423394 +0] Tj +-279 TJm +(w) +[7.192997 +0] Tj +10 TJm +(arning) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(issued.) +[2.769603 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +216.033 465.826 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +248.705 465.826 Td +/F15_0 9.9626 Tf +(attempts) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-279 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-280 TJm +(guess) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-279 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-280 TJm +(\002lename) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-279 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-280 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-279 TJm +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-280 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-279 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-280 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-279 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-280 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 453.871 Td +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(ws:) +[7.192997 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 421.991 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 421.991 Td +/F17_0 9.9626 Tf +(filename.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.66 421.991 Td +/F15_0 9.9626 Tf +(becomes) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.01 421.991 Td +/F17_0 9.9626 Tf +(filename) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 400.073 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 400.073 Td +/F17_0 9.9626 Tf +(filename.bz) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +156.682 400.073 Td +/F15_0 9.9626 Tf +(becomes) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +194.032 400.073 Td +/F17_0 9.9626 Tf +(filename) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 378.155 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 378.155 Td +/F17_0 9.9626 Tf +(filename.tbz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.66 378.155 Td +/F15_0 9.9626 Tf +(becomes) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.01 378.155 Td +/F17_0 9.9626 Tf +(filename.tar) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 356.237 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 356.237 Td +/F17_0 9.9626 Tf +(filename.tbz) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.66 356.237 Td +/F15_0 9.9626 Tf +(becomes) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.01 356.237 Td +/F17_0 9.9626 Tf +(filename.tar) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 334.319 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 334.319 Td +/F17_0 9.9626 Tf +(anyothername) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.66 334.319 Td +/F15_0 9.9626 Tf +(becomes) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.01 334.319 Td +/F17_0 9.9626 Tf +(anyothername.out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 312.402 Td +/F15_0 9.9626 Tf +(If) +[3.317546 +0 +3.317546 +0] Tj +-342 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-342 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-342 TJm +(does) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-342 TJm +(n) +[4.9813 +0] Tj +-1 TJm +(ot) +[4.9813 +0 +2.769603 +0] Tj +-342 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-342 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-342 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-342 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-342 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-342 TJm +(recognised) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-342 TJm +(endings,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +309.305 312.402 Td +/F17_0 9.9626 Tf +(.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +333.215 312.402 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +339.344 312.402 Td +/F17_0 9.9626 Tf +(.bz) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +357.276 312.402 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +363.405 312.402 Td +/F17_0 9.9626 Tf +(.tbz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +396.702 312.402 Td +/F15_0 9.9626 Tf +(or) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +408.409 312.402 Td +/F17_0 9.9626 Tf +(.tbz) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +432.319 312.402 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +438.448 312.402 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +471.744 312.402 Td +/F15_0 9.9626 Tf +(complains) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-342 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-342 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +72 300.446 Td +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(guess) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(uses) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +370.009 300.446 Td +/F17_0 9.9626 Tf +(.out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +396.41 300.446 Td +/F15_0 9.9626 Tf +(appended.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 278.529 Td +(As) +[7.192997 +0 +3.875451 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(compression,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(supplying) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(\002lenames) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(causes) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(output.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 256.611 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +116.409 256.611 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-257 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-258 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-257 TJm +(a) +[4.423394 +0] Tj +-258 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-257 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-258 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-257 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-258 TJm +(concatenation) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-257 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-258 TJm +(tw) +[2.769603 +0 +7.192997 +0] Tj +10 TJm +(o) +[4.9813 +0] Tj +-258 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-257 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-258 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-257 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-665 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-258 TJm +(result) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-257 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +72 244.656 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-239 TJm +(concatenation) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-238 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-239 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-239 TJm +(corresponding) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-239 TJm +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-238 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-613 TJm +(Inte) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(grity) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-238 TJm +(testing) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-239 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +382.247 244.656 Td +/F17_0 9.9626 Tf +(-t) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +394.202 244.656 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-239 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-238 TJm +(concatenated) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-239 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-239 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-239 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +72 232.7 Td +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-250 TJm +(supported.) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 210.783 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-399 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-399 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-399 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-400 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-399 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-399 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-399 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-399 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-399 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-399 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-399 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-400 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(ving) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-399 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +409.67 210.783 Td +/F17_0 9.9626 Tf +(-c) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +425.602 210.783 Td +/F15_0 9.9626 Tf +(\003ag.) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-757 TJm +(Multiple) +[8.856751 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-400 TJm +(\002l) +[5.539206 +0 +2.769603 +0] Tj +1 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-400 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-399 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +72 198.827 Td +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-367 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-367 TJm +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-367 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-367 TJm +(this.) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-1321 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-367 TJm +(resulting) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-367 TJm +(outputs) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-367 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-367 TJm +(fed) +[3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-367 TJm +(sequentially) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-366 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-367 TJm +(stdout.) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-1322 TJm +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-367 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +72 186.872 Td +(multiple) +[7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-289 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-289 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-289 TJm +(manner) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-288 TJm +(generates) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-289 TJm +(a) +[4.423394 +0] Tj +-289 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-289 TJm +(containing) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(multiple) +[7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(representations.) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-853 TJm +(Such) +[5.539206 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(a) +[4.423394 +0] Tj +-289 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +72 174.917 Td +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-391 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-391 TJm +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-390 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-391 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-391 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +238.116 174.917 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +271.898 174.917 Td +/F15_0 9.9626 Tf +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-391 TJm +(0.9.0) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-391 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-390 TJm +(later) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-733 TJm +(Earlier) +[6.087149 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-391 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-391 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +448.071 174.917 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +481.852 174.917 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-391 TJm +(stop) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-391 TJm +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +72 162.962 Td +(decompressing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 141.044 Td +/F17_0 9.9626 Tf +(bzcat) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.379 141.044 Td +/F15_0 9.9626 Tf +(\(or) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +118.486 141.044 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(-dc) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +172.284 141.044 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-250 TJm +(decompresses) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(speci\002ed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(output.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 119.126 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.866 119.126 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-299 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-299 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(guments) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-299 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-299 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-299 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +40 TJm +(vironment) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-298 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ariables) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +316.903 119.126 Td +/F17_0 9.9626 Tf +(BZIP2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +349.769 119.126 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +367.133 119.126 Td +/F17_0 9.9626 Tf +(BZIP) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +391.043 119.126 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-299 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-299 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-299 TJm +(order) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-311 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-299 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-299 TJm +(process) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-299 TJm +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +72 107.171 Td +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(guments) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(command) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(line.) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-310 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(con) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(enient) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ay) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(supply) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(guments.) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 85.253 Td +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-294 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-294 TJm +(al) +[4.423394 +0 +2.769603 +0] Tj +10 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ays) +[4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-294 TJm +(performed,) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-305 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-294 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-294 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-294 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-294 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-293 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-294 TJm +(slightly) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-294 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-294 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-294 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-294 TJm +(original.) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-884 TJm +(Files) +[5.539206 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-294 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-294 TJm +(less) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-294 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +72 73.298 Td +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-246 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-246 TJm +(hundred) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-245 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-246 TJm +(tend) +[2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-246 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-246 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-246 TJm +(l) +[2.769603 +0] Tj +1 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-247 TJm +(since) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-246 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-246 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-245 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-246 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-246 TJm +(a) +[4.423394 +0] Tj +-246 TJm +(constant) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-246 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erhead) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-245 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-246 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-246 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(gion) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-246 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +539.395 50.951 Td +(3) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 4 7 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +477.109 749.245 Td +/F15_0 9.9626 Tf +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(50) +[4.9813 +0 +4.9813 +0] Tj +-264 TJm +(bytes.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-351 TJm +(Random) +[6.645054 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0] Tj +-264 TJm +(dat) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +1 TJm +(a) +[4.423394 +0] Tj +-264 TJm +(\(including) +[3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-264 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-264 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-263 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-264 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-264 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-263 TJm +(compressors\)) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +3.317546 +0] Tj +-264 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-264 TJm +(coded) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-263 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-264 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-264 TJm +(8.05) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(bits) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-264 TJm +(per) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-264 TJm +(byte,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-267 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(ving) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-264 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +72 698.082 Td +(e) +[4.423394 +0] Tj +15 TJm +(xpansion) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(around) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(0.5%.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +8.298846 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 676.283 Td +(As) +[7.192997 +0 +3.875451 +0] Tj +-268 TJm +(a) +[4.423394 +0] Tj +-268 TJm +(self-check) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-269 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-268 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-268 TJm +(protection,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +217.273 676.283 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +249.833 676.283 Td +/F15_0 9.9626 Tf +(uses) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-268 TJm +(32-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-268 TJm +(CRCs) +[6.645054 +0 +6.645054 +0 +6.645054 +0 +3.875451 +0] Tj +-269 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-268 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-268 TJm +(sure) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-268 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-268 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-269 TJm +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-268 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-268 TJm +(a) +[4.423394 +0] Tj +-268 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-269 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +72 664.328 Td +(identical) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-200 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-199 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-200 TJm +(original.) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-586 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-200 TJm +(guards) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-199 TJm +(ag) +[4.423394 +0 +4.9813 +0] Tj +5 TJm +(ainst) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-200 TJm +(corruption) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-199 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-200 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-200 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-199 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-210 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-199 TJm +(ag) +[4.423394 +0 +4.9813 +0] Tj +5 TJm +(ainst) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-200 TJm +(undetected) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-200 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ugs) +[4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-199 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +510.112 664.328 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 652.373 Td +/F15_0 9.9626 Tf +(\(hopefully) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-275 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-274 TJm +(unlik) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(ely\).) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +-384 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-275 TJm +(chances) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-275 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-275 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-274 TJm +(corruption) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-275 TJm +(going) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-275 TJm +(undetected) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-274 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-275 TJm +(microscopic,) +[7.750903 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-281 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-275 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-274 TJm +(chance) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-275 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-275 TJm +(four) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +72 640.417 Td +(billion) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-279 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-279 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-280 TJm +(processed.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-795 TJm +(Be) +[6.645054 +0 +4.423394 +0] Tj +-279 TJm +(a) +[4.423394 +0] Tj +15 TJm +(w) +[7.192997 +0] Tj +10 TJm +(are,) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-286 TJm +(though,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-287 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-279 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-279 TJm +(check) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(occurs) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-279 TJm +(upon) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-279 TJm +(decompression,) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-287 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-279 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-279 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-280 TJm +(tell) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-279 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +72 628.462 Td +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-237 TJm +(something) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-236 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-237 TJm +(wrong.) +[7.192997 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-611 TJm +(It) +[3.317546 +0 +2.769603 +0] Tj +-237 TJm +(can') +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-237 TJm +(help) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-237 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-236 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-237 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-237 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-237 TJm +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-236 TJm +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-612 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-236 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-237 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +458.159 628.462 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +532.249 628.462 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +72 616.507 Td +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(damaged) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 594.708 Td +(Return) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-298 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-406 TJm +(0) +[4.9813 +0] Tj +-298 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-298 TJm +(a) +[4.423394 +0] Tj +-298 TJm +(normal) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-298 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xit,) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-310 TJm +(1) +[4.9813 +0] Tj +-298 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-297 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +40 TJm +(vironmental) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-298 TJm +(problems) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-298 TJm +(\(\002le) +[3.317546 +0 +5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-298 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-298 TJm +(found,) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alid) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-298 TJm +(\003ags,) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-310 TJm +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +-298 TJm +(errors,) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +-310 TJm +(etc.\),) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0 +3.317546 +0 +2.49065 +0] Tj +-310 TJm +(2) +[4.9813 +0] Tj +-298 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 582.753 Td +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(corrupt) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(3) +[4.9813 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(internal) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(consistenc) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(\(e) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(g,) +[4.9813 +0 +2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug\)) +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(caused) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +443.065 582.753 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +475.444 582.753 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(panic.) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 548.118 Td +/F9_0 20.6585 Tf +(2.4.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(OPTIONS) +[16.072313 +0 +13.77922 +0 +12.622344 +0 +5.743063 +0 +16.072313 +0 +14.915437 +0 +13.77922 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 516.475 Td +/F17_0 9.9626 Tf +(-c) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--stdout) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 504.52 Td +/F15_0 9.9626 Tf +(Compress) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(output.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 478.854 Td +/F17_0 9.9626 Tf +(-d) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--decompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 466.899 Td +/F15_0 9.9626 Tf +(F) +[5.539206 +0] Tj +15 TJm +(orce) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-296 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.214 466.899 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +230.102 466.899 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +235.659 466.899 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +280.454 466.899 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +297.791 466.899 Td +/F17_0 9.9626 Tf +(bzcat) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +330.631 466.899 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-296 TJm +(really) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-296 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-297 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-296 TJm +(program,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-308 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-296 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-296 TJm +(decision) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +108 454.944 Td +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-303 TJm +(actions) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-303 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-303 TJm +(tak) +[2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-303 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-303 TJm +(done) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-303 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-304 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-303 TJm +(basis) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-303 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-303 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-303 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-303 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-303 TJm +(used.) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-939 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-303 TJm +(\003ag) +[5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +-303 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(errides) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-303 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-303 TJm +(mechanism,) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0 +2.49065 +0] Tj +-316 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +108 442.988 Td +(forces) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(decompress.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 417.323 Td +/F17_0 9.9626 Tf +(-z) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--compress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 405.368 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(complement) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +187.969 405.368 Td +/F17_0 9.9626 Tf +(-d) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +199.924 405.368 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +-310 TJm +(forces) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(compression,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(ardless) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +20 TJm +(okation) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(name.) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 379.702 Td +/F17_0 9.9626 Tf +(-t) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--test) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 367.747 Td +/F15_0 9.9626 Tf +(Check) +[6.645054 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-270 TJm +(inte) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(grity) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-271 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-270 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-271 TJm +(speci\002ed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +-270 TJm +(\002le\(s\),) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +3.317546 +0 +2.49065 +0] Tj +-276 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-270 TJm +(don') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-270 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-271 TJm +(them.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-742 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-271 TJm +(really) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-270 TJm +(performs) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0] Tj +-270 TJm +(a) +[4.423394 +0] Tj +-271 TJm +(trial) +[2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-270 TJm +(decompres-) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.317546 +0] Tj +108 355.792 Td +(sion) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(thro) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +15 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ay) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(result.) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 330.126 Td +/F17_0 9.9626 Tf +(-f) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--force) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 318.171 Td +/F15_0 9.9626 Tf +(F) +[5.539206 +0] Tj +15 TJm +(orce) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-338 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erwrite) +[4.423394 +0 +3.317546 +0 +7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-339 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-338 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-338 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-1150 TJm +(Normally) +[7.192997 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +289.831 318.171 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +323.089 318.171 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-338 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-339 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erwrite) +[4.423394 +0 +3.317546 +0 +7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-338 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xisting) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-338 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-338 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-1150 TJm +(Also) +[7.192997 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-339 TJm +(forces) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 306.215 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +140.379 306.215 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(break) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(hard) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(links) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(otherwise) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +7.192997 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ouldn') +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(do.) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 284.416 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +141.211 284.416 Td +/F15_0 9.9626 Tf +(normally) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-334 TJm +(declines) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-333 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-334 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-333 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-334 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-333 TJm +(don') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-334 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-333 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-334 TJm +(correct) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-333 TJm +(magic) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-334 TJm +(header) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-333 TJm +(bytes.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-561 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-334 TJm +(forced) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +108 272.461 Td +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +111.318 272.461 Td +/F17_0 9.9626 Tf +(-f) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +123.273 272.461 Td +/F15_0 9.9626 Tf +(\),) +[3.317546 +0 +2.49065 +0] Tj +-250 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(we) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(pass) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(through) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(unmodi\002ed.) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +412.585 272.461 Td +/F17_0 9.9626 Tf +(gzip) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +438.986 272.461 Td +/F15_0 9.9626 Tf +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es.) +[4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 246.795 Td +/F17_0 9.9626 Tf +(-k) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--keep) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 234.84 Td +/F15_0 9.9626 Tf +(K) +[7.192997 +0] Tj +25 TJm +(eep) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\(don') +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(delete\)) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(during) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 209.174 Td +/F17_0 9.9626 Tf +(-s) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 197.219 Td +/F15_0 9.9626 Tf +(Reduce) +[6.645054 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-347 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-347 TJm +(usage,) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-371 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-346 TJm +(compression,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-371 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-347 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-347 TJm +(testing.) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1201 TJm +(Files) +[5.539206 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-347 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-347 TJm +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-346 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-347 TJm +(tested) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +108 185.264 Td +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-388 TJm +(a) +[4.423394 +0] Tj +-388 TJm +(modi\002ed) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +-388 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-389 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-388 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-388 TJm +(requires) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0] Tj +-388 TJm +(2.5) +[4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-388 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-388 TJm +(per) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-388 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-389 TJm +(byte.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-1448 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-389 TJm +(means) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-388 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-388 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-388 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-388 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +108 173.309 Td +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(2300k) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(albeit) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(half) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(normal) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(speed.) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 151.51 Td +(During) +[7.192997 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-252 TJm +(compr) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0] Tj +1 TJm +(ession,) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +194.091 151.51 Td +/F17_0 9.9626 Tf +(-s) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +208.551 151.51 Td +/F15_0 9.9626 Tf +(selects) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-252 TJm +(a) +[4.423394 +0] Tj +-251 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-252 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-251 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-252 TJm +(200k,) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-251 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-252 TJm +(limits) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-251 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-252 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-251 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-252 TJm +(around) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-252 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-251 TJm +(\002gure,) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-252 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +108 139.554 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-287 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xpense) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-287 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-288 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-287 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-287 TJm +(ratio.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-843 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-287 TJm +(short,) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.49065 +0] Tj +-297 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-287 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-287 TJm +(machine) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-287 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-287 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-287 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-288 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-287 TJm +(\(8) +[3.317546 +0 +4.9813 +0] Tj +-287 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(abytes) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-287 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-287 TJm +(less\),) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +2.49065 +0] Tj +108 127.599 Td +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +123.771 127.599 Td +/F17_0 9.9626 Tf +(-s) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +138.217 127.599 Td +/F15_0 9.9626 Tf +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erything.) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-620 TJm +(See) +[5.539206 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +(MEMOR) +[8.856751 +0 +6.087149 +0 +8.856751 +0 +7.192997 +0 +6.645054 +0] Tj +65 TJm +(Y) +[7.192997 +0] Tj +-250 TJm +(MAN) +[8.856751 +0 +7.192997 +0 +7.192997 +0] Tj +35 TJm +(A) +[7.192997 +0] Tj +40 TJm +(GEMENT) +[7.192997 +0 +6.087149 +0 +8.856751 +0 +6.087149 +0 +7.192997 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +([5]) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(belo) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 101.933 Td +/F17_0 9.9626 Tf +(-q) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--quiet) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 89.978 Td +/F15_0 9.9626 Tf +(Suppress) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-221 TJm +(non-essential) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-220 TJm +(w) +[7.192997 +0] Tj +10 TJm +(arning) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-221 TJm +(messages.) +[7.750903 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-300 TJm +(Messages) +[8.856751 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-221 TJm +(pertaining) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-221 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-220 TJm +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +-221 TJm +(errors) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-221 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-220 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-221 TJm +(critical) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-221 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ents) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-221 TJm +(wi) +[7.192997 +0 +2.769603 +0] Tj +1 TJm +(ll) +[2.769603 +0 +2.769603 +0] Tj +-221 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +108 78.023 Td +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(suppressed.) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +539.395 50.852 Td +(4) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 5 8 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +477.109 749.245 Td +/F15_0 9.9626 Tf +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F17_0 9.9626 Tf +(-v) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--verbose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 698.082 Td +/F15_0 9.9626 Tf +(V) +[7.192997 +0] Tj +111 TJm +(erbose) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-323 TJm +(mode) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-322 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +-323 TJm +(sho) +[3.875451 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-322 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-323 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-323 TJm +(ratio) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-322 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-323 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-322 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-323 TJm +(processed.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1056 TJm +(Further) +[5.539206 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +430.015 698.082 Td +/F17_0 9.9626 Tf +(-v) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +441.97 698.082 Td +/F15_0 9.9626 Tf +(') +[3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-323 TJm +(increase) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-322 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-323 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erbosity) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +108 686.127 Td +(le) +[2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el,) +[4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(spe) +[3.875451 +0 +4.9813 +0 +4.423394 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(lots) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(information) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(primarily) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(interest) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(diagnostic) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(purposes.) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 660.224 Td +/F17_0 9.9626 Tf +(-L) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--license) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(-V) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--version) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 648.269 Td +/F15_0 9.9626 Tf +(Display) +[7.192997 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(softw) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +10 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion,) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(license) +[2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(terms) +[2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(conditions.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 622.366 Td +/F17_0 9.9626 Tf +(-1) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +86.446 622.366 Td +/F15_0 9.9626 Tf +(\(or) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +100.553 622.366 Td +/F17_0 9.9626 Tf +(--fast) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +136.418 622.366 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +152.468 622.366 Td +/F17_0 9.9626 Tf +(-9) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +166.914 622.366 Td +/F15_0 9.9626 Tf +(\(or) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +181.021 622.366 Td +/F17_0 9.9626 Tf +(-best) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.909 622.366 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 610.411 Td +(Set) +[5.539206 +0 +4.423394 +0 +2.769603 +0] Tj +-288 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-288 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-288 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-288 TJm +(100) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(k,) +[4.9813 +0 +2.49065 +0] Tj +-298 TJm +(200) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-288 TJm +(k) +[4.9813 +0] Tj +-288 TJm +(...) +[2.49065 +0 +2.49065 +0 +2.49065 +0] Tj +-850 TJm +(900) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-288 TJm +(k) +[4.9813 +0] Tj +-288 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(compressing.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-849 TJm +(Has) +[7.192997 +0 +4.423394 +0 +3.875451 +0] Tj +-289 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-288 TJm +(ef) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(fect) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-288 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-288 TJm +(decompressing.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-850 TJm +(See) +[5.539206 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +108 598.456 Td +(MEMOR) +[8.856751 +0 +6.087149 +0 +8.856751 +0 +7.192997 +0 +6.645054 +0] Tj +65 TJm +(Y) +[7.192997 +0] Tj +-297 TJm +(MAN) +[8.856751 +0 +7.192997 +0 +7.192997 +0] Tj +35 TJm +(A) +[7.192997 +0] Tj +40 TJm +(GEMENT) +[7.192997 +0 +6.087149 +0 +8.856751 +0 +6.087149 +0 +7.192997 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-297 TJm +([5]) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-298 TJm +(belo) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-904 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +297.278 598.456 Td +/F17_0 9.9626 Tf +(--fast) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +336.106 598.456 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +353.454 598.456 Td +/F17_0 9.9626 Tf +(--best) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +392.281 598.456 Td +/F15_0 9.9626 Tf +(aliases) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-297 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-298 TJm +(primarily) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-297 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-297 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +516.09 598.456 Td +/F17_0 9.9626 Tf +(gzip) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 586.501 Td +/F15_0 9.9626 Tf +(compatibility) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-356 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-265 TJm +(particular) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +220.423 586.501 Td +/F17_0 9.9626 Tf +(--fast) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +258.932 586.501 Td +/F15_0 9.9626 Tf +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-265 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-266 TJm +(things) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-265 TJm +(signi\002cantly) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-265 TJm +(f) +[3.317546 +0] Tj +10 TJm +(aster) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-712 TJm +(And) +[7.192997 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +444.622 586.501 Td +/F17_0 9.9626 Tf +(--best) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +483.131 586.501 Td +/F15_0 9.9626 Tf +(merely) +[7.750903 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-265 TJm +(selects) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +108 574.545 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(viour) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 548.643 Td +/F17_0 9.9626 Tf +(--) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 536.688 Td +/F15_0 9.9626 Tf +(T) +[6.087149 +0] Tj +35 TJm +(reats) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-261 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-261 TJm +(subsequent) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-260 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(guments) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-261 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-261 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-261 TJm +(names,) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-263 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-261 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-261 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-260 TJm +(start) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-261 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-261 TJm +(a) +[4.423394 +0] Tj +-261 TJm +(dash.) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.49065 +0] Tj +-685 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-260 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-261 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-261 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-261 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-260 TJm +(handle) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-261 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +108 524.732 Td +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(names) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(ginning) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(dash,) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xample:) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +302.27 524.732 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(--) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(-myfilename) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +421.821 524.732 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 498.83 Td +/F17_0 9.9626 Tf +(--repetitive-fast) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +178.6 498.83 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +188.563 498.83 Td +/F17_0 9.9626 Tf +(--repetitive-best) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 486.874 Td +/F15_0 9.9626 Tf +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-207 TJm +(\003ags) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-206 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-207 TJm +(redundant) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-207 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-206 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-207 TJm +(0.9.5) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-207 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-206 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e.) +[4.423394 +0 +2.49065 +0] Tj +-591 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-207 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vided) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-207 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-207 TJm +(coa) +[4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +1 TJm +(rse) +[3.317546 +0 +3.875451 +0 +4.423394 +0] Tj +-207 TJm +(control) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-207 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-207 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-206 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(viour) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +108 474.919 Td +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-251 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-251 TJm +(earlier) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions,) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-251 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(sometimes) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(useful.) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-622 TJm +(0.9.5) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-251 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-251 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(impro) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ed) +[4.423394 +0 +4.9813 +0] Tj +108 462.964 Td +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(renders) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-250 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(\003ags) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(irrele) +[2.769603 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ant.) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 414.264 Td +/F9_0 20.6585 Tf +(2.5.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(MEMOR) +[17.208531 +0 +13.77922 +0 +17.208531 +0 +16.072313 +0 +14.915437 +0] Tj +50 TJm +(Y) +[13.77922 +0] Tj +-278 TJm +(MANA) +[17.208531 +0 +14.915437 +0 +14.915437 +0 +14.915437 +0] Tj +50 TJm +(GEMENT) +[16.072313 +0 +13.77922 +0 +17.208531 +0 +13.77922 +0 +14.915437 +0 +12.622344 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 392.346 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.454 392.346 Td +/F15_0 9.9626 Tf +(compresses) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-258 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +-257 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-258 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-257 TJm +(blocks.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-666 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-257 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-258 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-258 TJm +(af) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(fects) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-257 TJm +(both) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-258 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-257 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-258 TJm +(ratio) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-257 TJm +(achie) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ed,) +[4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-260 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-258 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-257 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +72 380.391 Td +(of) +[4.9813 +0 +3.317546 +0] Tj +-215 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-215 TJm +(needed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-215 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-215 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-214 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-215 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-597 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-215 TJm +(\003ags) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +337.719 380.391 Td +/F17_0 9.9626 Tf +(-1) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +351.815 380.391 Td +/F15_0 9.9626 Tf +(through) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +384.95 380.391 Td +/F17_0 9.9626 Tf +(-9) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +399.046 380.391 Td +/F15_0 9.9626 Tf +(specify) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-215 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-215 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-215 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-215 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-214 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-215 TJm +(100,000) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +72 368.435 Td +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-278 TJm +(through) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-277 TJm +(900,000) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-278 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-278 TJm +(\(the) +[3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-277 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault\)) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0] Tj +-278 TJm +(respecti) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ely) +[4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-786 TJm +(At) +[7.192997 +0 +2.769603 +0] Tj +-278 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-278 TJm +(time,) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +-284 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-278 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-278 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-277 TJm +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-278 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-278 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 356.48 Td +(is) +[2.769603 +0 +3.875451 +0] Tj +-243 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-242 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-243 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-242 TJm +(header) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-243 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-242 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-243 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-242 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-244 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +275.174 356.48 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +319.433 356.48 Td +/F15_0 9.9626 Tf +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-243 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(o) +[4.9813 +0] Tj +-1 TJm +(c) +[4.423394 +0] Tj +1 TJm +(ates) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-243 TJm +(itself) +[2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-242 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-243 TJm +(enough) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-242 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-243 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +72 344.525 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-303 TJm +(\002le.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-940 TJm +(Since) +[5.539206 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-304 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-303 TJm +(sizes) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-303 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-303 TJm +(stored) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-304 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-303 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-303 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-317 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-303 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-304 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-303 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-303 TJm +(\003ags) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +406.35 344.525 Td +/F17_0 9.9626 Tf +(-1) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +421.327 344.525 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +432.1 344.525 Td +/F17_0 9.9626 Tf +(-9) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +447.077 344.525 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-303 TJm +(irrele) +[2.769603 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-304 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-303 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-303 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +72 332.57 Td +(ignored) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(during) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 310.652 Td +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(requirements,) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(bytes,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(estimated) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(as:) +[4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 247.723] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 299.131 Td +/F17_0 9.9626 Tf +(Compression:) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1278 TJm +(400k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(+) +[5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(8) +[5.97756 +0] Tj +-426 TJm +(x) +[5.97756 +0] Tj +-426 TJm +(block) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +90 275.22 Td +(Decompression:) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(+) +[5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(4) +[5.97756 +0] Tj +-426 TJm +(x) +[5.97756 +0] Tj +-426 TJm +(block) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\),) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +153.66 263.265 Td +(100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(+) +[5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(2.5) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(x) +[5.97756 +0] Tj +-426 TJm +(block) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 225.805 Td +/F15_0 9.9626 Tf +(Lar) +[6.087149 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-292 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-292 TJm +(sizes) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-291 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-292 TJm +(rapidly) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-292 TJm +(diminishing) +[4.9813 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-292 TJm +(mar) +[7.750903 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ginal) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-291 TJm +(returns.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-871 TJm +(Most) +[8.856751 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-292 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-291 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-292 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-292 TJm +(comes) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-292 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-291 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-292 TJm +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-292 TJm +(tw) +[2.769603 +0 +7.192997 +0] Tj +10 TJm +(o) +[4.9813 +0] Tj +-292 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +72 213.85 Td +(three) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-232 TJm +(hundred) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-232 TJm +(k) +[4.9813 +0] Tj +-232 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-232 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-232 TJm +(size,) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-235 TJm +(a) +[4.423394 +0] Tj +-232 TJm +(f) +[3.317546 +0] Tj +10 TJm +(act) +[4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-232 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orth) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-232 TJm +(bearing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-232 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-232 TJm +(mind) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-232 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-231 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +354.025 213.85 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +386.223 213.85 Td +/F15_0 9.9626 Tf +(on) +[4.9813 +0 +4.9813 +0] Tj +-232 TJm +(small) +[3.875451 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-232 TJm +(machines.) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-304 TJm +(It) +[3.317546 +0 +2.769603 +0] Tj +-232 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-232 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-231 TJm +(important) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +72 201.895 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(appreciate) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(requirement) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(choice) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(size.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 179.977 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-388 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-389 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-388 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-389 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-388 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-389 TJm +(900k) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-388 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-389 TJm +(size,) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +302.002 179.977 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +347.716 179.977 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-388 TJm +(require) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-389 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-388 TJm +(3700) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-389 TJm +(kbytes) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-388 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-389 TJm +(decompress.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +72 168.022 Td +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-424 TJm +(support) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-425 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-424 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-424 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-425 TJm +(\002l) +[5.539206 +0 +2.769603 +0] Tj +1 TJm +(e) +[4.423394 +0] Tj +-425 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-424 TJm +(a) +[4.423394 +0] Tj +-424 TJm +(4) +[4.9813 +0] Tj +-425 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(abyte) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-424 TJm +(machine,) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +348.272 168.022 Td +/F17_0 9.9626 Tf +(bunzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +394.342 168.022 Td +/F15_0 9.9626 Tf +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-424 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-425 TJm +(option) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-424 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-424 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-424 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 156.067 Td +(approximately) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-281 TJm +(half) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-281 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-280 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-281 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-281 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-288 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-281 TJm +(2300) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-281 TJm +(kbytes.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-805 TJm +(Decompression) +[7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(speed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-281 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-281 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-281 TJm +(halv) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +15 TJm +(ed,) +[4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-288 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-281 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-281 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +72 144.112 Td +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(option) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(where) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(necessary) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-620 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(rele) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(\003ag) +[5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.024 144.112 Td +/F17_0 9.9626 Tf +(-s) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +316.979 144.112 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 122.194 Td +(In) +[3.317546 +0 +4.9813 +0] Tj +-204 TJm +(general,) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-214 TJm +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-204 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-205 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-204 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-204 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(gest) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-205 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-204 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-205 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-204 TJm +(constraints) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-204 TJm +(allo) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-214 TJm +(since) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-204 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-205 TJm +(maximises) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-204 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-204 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-205 TJm +(achie) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ed.) +[4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +72 110.239 Td +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(speed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(virtually) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(unaf) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +25 TJm +(fected) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(size.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 88.321 Td +(Another) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-296 TJm +(signi\002cant) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-296 TJm +(point) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-295 TJm +(applies) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-296 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-296 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-296 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-296 TJm +(\002t) +[5.539206 +0 +2.769603 +0] Tj +-296 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-296 TJm +(a) +[4.423394 +0] Tj +-295 TJm +(single) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-296 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-296 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +-296 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-296 TJm +(means) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-296 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-295 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-296 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +50 TJm +(d) +[4.9813 +0] Tj +-296 TJm +(encounter) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-296 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-296 TJm +(a) +[4.423394 +0] Tj +72 76.366 Td +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +-290 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(size.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-859 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-290 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-290 TJm +(real) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-290 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-289 TJm +(touched) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-290 TJm +(proportional) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-290 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-290 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-300 TJm +(since) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-290 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-290 TJm +(smaller) +[3.875451 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +539.395 50.951 Td +(5) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 6 9 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +477.109 749.245 Td +/F15_0 9.9626 Tf +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-362 TJm +(a) +[4.423394 +0] Tj +-362 TJm +(block.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1293 TJm +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-362 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xample,) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-390 TJm +(compressing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-362 TJm +(a) +[4.423394 +0] Tj +-362 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-362 TJm +(20,000) +[4.9813 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-362 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-362 TJm +(long) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-362 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-362 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-362 TJm +(\003ag) +[5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +406.528 710.037 Td +/F17_0 9.9626 Tf +(-9) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +422.09 710.037 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-362 TJm +(cause) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-362 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-362 TJm +(compressor) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +-362 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 698.082 Td +(allocate) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-271 TJm +(around) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(7600k) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-271 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-272 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-277 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-271 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-272 TJm +(touch) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-271 TJm +(400k) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(+) +[5.618906 +0] Tj +-271 TJm +(20000) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(*) +[4.9813 +0] Tj +-271 TJm +(8) +[4.9813 +0] Tj +-272 TJm +(=) +[5.618906 +0] Tj +-271 TJm +(560) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(kbytes) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-271 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-272 TJm +(it.) +[2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-748 TJm +(Similarly) +[5.539206 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-277 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-272 TJm +(decompressor) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +72 686.127 Td +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(allocate) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(3700k) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(touch) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(100k) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(+) +[5.618906 +0] Tj +-250 TJm +(20000) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(*) +[4.9813 +0] Tj +-250 TJm +(4) +[4.9813 +0] Tj +-250 TJm +(=) +[5.618906 +0] Tj +-250 TJm +(180) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(kbytes.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 664.209 Td +(Here) +[7.192997 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-293 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-294 TJm +(a) +[4.423394 +0] Tj +-293 TJm +(table) +[2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-294 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-293 TJm +(summarises) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-294 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-293 TJm +(maximum) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +7.750903 +0] Tj +-294 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-293 TJm +(usage) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-294 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-293 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(ferent) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-294 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-293 TJm +(sizes.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-881 TJm +(Also) +[7.192997 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-293 TJm +(recorded) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-294 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-293 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-294 TJm +(total) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +72 652.254 Td +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-289 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-289 TJm +(14) +[4.9813 +0 +4.9813 +0] Tj +-289 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-290 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(Calg) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +5 TJm +(ary) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-289 TJm +(T) +[6.087149 +0] Tj +70 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-289 TJm +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(Corpus) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-289 TJm +(totalling) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(3,141,622) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(bytes.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-854 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-290 TJm +(column) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0] Tj +-289 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +72 640.299 Td +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-253 TJm +(feel) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-253 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-253 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-253 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-253 TJm +(v) +[4.9813 +0] Tj +25 TJm +(aries) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-253 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-253 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-253 TJm +(size.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-638 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-253 TJm +(\002gures) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0] Tj +-253 TJm +(tend) +[2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-254 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-253 TJm +(understate) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-253 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-253 TJm +(adv) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(antage) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-253 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-253 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-253 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +72 628.344 Td +(sizes) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(since) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(Corpus) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(dominated) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(smaller) +[3.875451 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 469.773] cm +0 0 468 155.417 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +123.952 616.822 Td +/F17_0 9.9626 Tf +(Compress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1278 TJm +(Decompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1278 TJm +(Decompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1278 TJm +(Corpus) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 604.867 Td +(Flag) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(usage) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(usage) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2982 TJm +(-s) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(usage) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(Size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 580.957 Td +(-1) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(1200k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2982 TJm +(500k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3834 TJm +(350k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(914704) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 569.001 Td +(-2) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(2000k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2982 TJm +(900k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3834 TJm +(600k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(877703) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 557.046 Td +(-3) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(2800k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(1300k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3834 TJm +(850k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(860338) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 545.091 Td +(-4) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(3600k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(1700k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3408 TJm +(1100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(846899) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 533.136 Td +(-5) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(4400k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(2100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3408 TJm +(1350k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(845160) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 521.181 Td +(-6) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(5200k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(2500k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3408 TJm +(1600k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(838626) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 509.225 Td +(-7) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(6100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(2900k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3408 TJm +(1850k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(834096) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 497.27 Td +(-8) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(6800k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(3300k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3408 TJm +(2100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(828642) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +94.244 485.315 Td +(-9) +[5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(7600k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(3700k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3408 TJm +(2350k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2556 TJm +(828642) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 435.021 Td +/F9_0 20.6585 Tf +(2.6.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(RECO) +[14.915437 +0 +13.77922 +0 +14.915437 +0 +16.072313 +0] Tj +50 TJm +(VERING) +[13.77922 +0 +13.77922 +0 +14.915437 +0 +5.743063 +0 +14.915437 +0 +16.072313 +0] Tj +-278 TJm +(D) +[14.915437 +0] Tj +40 TJm +(A) +[14.915437 +0] Tj +90 TJm +(T) +[12.622344 +0] Tj +90 TJm +(A) +[14.915437 +0] Tj +-278 TJm +(FR) +[12.622344 +0 +14.915437 +0] Tj +20 TJm +(OM) +[16.072313 +0 +17.208531 +0] Tj +-278 TJm +(D) +[14.915437 +0] Tj +40 TJm +(AMA) +[14.915437 +0 +17.208531 +0 +14.915437 +0] Tj +50 TJm +(GED) +[16.072313 +0 +13.77922 +0 +14.915437 +0] Tj +72 410.23 Td +(FILES) +[12.622344 +0 +5.743063 +0 +12.622344 +0 +13.77922 +0 +13.77922 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 388.312 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +105.138 388.312 Td +/F15_0 9.9626 Tf +(compresses) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-326 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-326 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-326 TJm +(blocks,) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-346 TJm +(usually) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-326 TJm +(900kbytes) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-326 TJm +(long.) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1077 TJm +(Each) +[6.087149 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-326 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-326 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-327 TJm +(handled) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-326 TJm +(independently) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-1077 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-326 TJm +(a) +[4.423394 +0] Tj +-326 TJm +(media) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-326 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +72 376.357 Td +(transmission) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-319 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-318 TJm +(causes) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-319 TJm +(a) +[4.423394 +0] Tj +-318 TJm +(multi-block) +[7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +234.519 376.357 Td +/F17_0 9.9626 Tf +(.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +261.603 376.357 Td +/F15_0 9.9626 Tf +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-319 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-318 TJm +(become) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-319 TJm +(damaged,) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-336 TJm +(i) +[2.769603 +0] Tj +1 TJm +(t) +[2.769603 +0] Tj +-319 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-319 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-318 TJm +(possible) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-319 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-318 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-319 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-319 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-318 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 364.402 Td +(undamaged) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(blocks) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\002le.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 342.484 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-358 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-357 TJm +(representation) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-358 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-357 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-358 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-358 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-357 TJm +(delimited) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-358 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-357 TJm +(a) +[4.423394 +0] Tj +-358 TJm +(48-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-358 TJm +(pattern,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +-384 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-358 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-357 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-358 TJm +(possible) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-357 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-358 TJm +(\002nd) +[5.539206 +0 +4.9813 +0 +4.9813 +0] Tj +-358 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 330.529 Td +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(boundaries) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-286 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-285 TJm +(reasonable) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-286 TJm +(certainty) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-835 TJm +(Each) +[6.087149 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-286 TJm +(carries) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-286 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-285 TJm +(o) +[4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-286 TJm +(32-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-286 TJm +(CRC,) +[6.645054 +0 +6.645054 +0 +6.645054 +0 +2.49065 +0] Tj +-286 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-285 TJm +(damaged) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(blocks) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-286 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +72 318.574 Td +(distinguished) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(undamaged) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(ones.) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 296.656 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +146.448 296.656 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-273 TJm +(a) +[4.423394 +0] Tj +-272 TJm +(simple) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-273 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-273 TJm +(whose) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-272 TJm +(purpose) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-273 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-273 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-272 TJm +(search) +[3.875451 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-273 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-273 TJm +(blocks) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-272 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +392.655 296.656 Td +/F17_0 9.9626 Tf +(.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +419.282 296.656 Td +/F15_0 9.9626 Tf +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-278 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-273 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-272 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-273 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +72 284.701 Td +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-255 TJm +(i) +[2.769603 +0] Tj +1 TJm +(ts) +[2.769603 +0 +3.875451 +0] Tj +-255 TJm +(o) +[4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +121.429 284.701 Td +/F17_0 9.9626 Tf +(.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +147.875 284.701 Td +/F15_0 9.9626 Tf +(\002le.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-647 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-255 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-254 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-255 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +240.01 284.701 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(-t) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +290.367 284.701 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-254 TJm +(test) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-255 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-254 TJm +(inte) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(grity) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-255 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-254 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-255 TJm +(resulting) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-254 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-256 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-255 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-254 TJm +(those) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +72 272.746 Td +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(undamaged.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 250.828 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +150.099 250.828 Td +/F15_0 9.9626 Tf +(tak) +[2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-639 TJm +(a) +[4.423394 +0] Tj +-639 TJm +(single) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-639 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(gument,) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-737 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-639 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-639 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-639 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-639 TJm +(damaged) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-639 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-737 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-639 TJm +(writes) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-639 TJm +(a) +[4.423394 +0] Tj +-639 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-639 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-640 TJm +(\002) +[5.539206 +0] Tj +1 TJm +(les) +[2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 238.873 Td +/F17_0 9.9626 Tf +(rec0001file.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.664 238.873 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.072 238.873 Td +/F17_0 9.9626 Tf +(rec0002file.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +258.736 238.873 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-494 TJm +(etc,) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-493 TJm +(containing) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-445 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-445 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xtracted) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-445 TJm +(blocks.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-1789 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-445 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-445 TJm +(\002lenames) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-445 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +72 226.918 Td +(designed) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-337 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-337 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-337 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-337 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-337 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-337 TJm +(wildc) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +1 TJm +(ards) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-337 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-337 TJm +(subsequent) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-337 TJm +(processing) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-337 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +-337 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-337 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xample,) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +396.538 226.918 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(-dc) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(rec) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +474.247 225.174 Td +(*) +[5.97756 +0] Tj +480.224 226.918 Td +(file.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(>) +[5.97756 +0] Tj +72 214.962 Td +(recovered_data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +158.177 214.962 Td +/F15_0 9.9626 Tf +(--) +[3.317546 +0 +3.317546 +0] Tj +-250 TJm +(lists) +[2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(correct) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(order) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 193.045 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +145.93 193.045 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-221 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-220 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-221 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-221 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-220 TJm +(dealing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-221 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-221 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +307.229 193.045 Td +/F17_0 9.9626 Tf +(.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +333.338 193.045 Td +/F15_0 9.9626 Tf +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-227 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-220 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-221 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-221 TJm +(contain) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-220 TJm +(man) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-221 TJm +(blocks.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-600 TJm +(It) +[3.317546 +0 +2.769603 +0] Tj +-221 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-221 TJm +(clearly) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +72 181.089 Td +(futile) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-289 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-289 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-289 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-289 TJm +(damaged) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(single-block) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +1 TJm +(,) +[2.49065 +0] Tj +-299 TJm +(since) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-289 TJm +(a) +[4.423394 +0] Tj +-290 TJm +(damaged) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-289 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-289 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ered.) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-854 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-289 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(wish) +[7.192997 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-289 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-289 TJm +(minimise) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +72 169.134 Td +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-320 TJm +(potential) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-320 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-319 TJm +(loss) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0] Tj +-320 TJm +(through) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-320 TJm +(media) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-320 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-319 TJm +(transmission) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-320 TJm +(errors,) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +-337 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-320 TJm +(might) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-320 TJm +(consider) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-320 TJm +(compressing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-319 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-320 TJm +(a) +[4.423394 +0] Tj +-320 TJm +(smaller) +[3.875451 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-320 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +72 157.179 Td +(size.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 122.426 Td +/F9_0 20.6585 Tf +(2.7.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(PERFORMANCE) +[13.77922 +0 +13.77922 +0 +14.915437 +0 +12.622344 +0 +16.072313 +0 +14.915437 +0 +17.208531 +0 +14.915437 +0 +14.915437 +0 +14.915437 +0 +13.77922 +0] Tj +-278 TJm +(NO) +[14.915437 +0 +16.072313 +0] Tj +40 TJm +(TES) +[12.622344 +0 +13.77922 +0 +13.77922 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 100.508 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-305 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-304 TJm +(phase) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-305 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-304 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-305 TJm +(g) +[4.9813 +0] Tj +5 TJm +(athers) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-304 TJm +(together) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-305 TJm +(similar) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-304 TJm +(strings) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-305 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-304 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-305 TJm +(\002le.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-947 TJm +(Because) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-305 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-304 TJm +(this,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-319 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-304 TJm +(containing) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-305 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +72 88.553 Td +(long) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-286 TJm +(runs) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-285 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-286 TJm +(repeated) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(symbols,) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-295 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-286 TJm +("aabaabaabaab) +[4.064741 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(...") +[2.49065 +0 +2.49065 +0 +2.49065 +0 +4.064741 +0] Tj +-571 TJm +(\(repeated) +[3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(se) +[3.875451 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(eral) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-286 TJm +(hundred) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(times\)) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0 +3.317546 +0] Tj +-286 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(com) +[4.423394 +0 +4.9813 +0 +7.750903 +0] Tj +1 TJm +(press) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-286 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-286 TJm +(slo) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wly) +[7.192997 +0 +2.769603 +0 +4.9813 +0] Tj +72 76.598 Td +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-322 TJm +(normal.) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-524 TJm +(V) +[7.192997 +0] Tj +111 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-322 TJm +(0.9.5) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-321 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-322 TJm +(f) +[3.317546 +0] Tj +10 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-321 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-322 TJm +(better) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-321 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-322 TJm +(pre) +[4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +25 TJm +(vious) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-321 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-322 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-322 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-321 TJm +(respect.) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-1050 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-321 TJm +(ratio) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-322 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +539.395 50.951 Td +(6) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 7 10 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +477.109 749.245 Td +/F15_0 9.9626 Tf +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(w) +[7.192997 +0] Tj +10 TJm +(orst-case) +[4.9813 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-289 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erage-case) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-289 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-289 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-290 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(gion) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-289 TJm +(10:1.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-857 TJm +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-290 TJm +(pre) +[4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +25 TJm +(vious) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-289 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions,) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-299 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-290 TJm +(\002gure) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-289 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-290 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +72 698.082 Td +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(100:1.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-620 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +186.002 698.082 Td +/F17_0 9.9626 Tf +(-vvvv) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +218.38 698.082 Td +/F15_0 9.9626 Tf +(option) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(monitor) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(progress) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(great) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(detail,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant.) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 676.164 Td +(Decompression) +[7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(speed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(unaf) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +25 TJm +(fected) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(phenomena.) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 654.247 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.863 654.247 Td +/F15_0 9.9626 Tf +(usually) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-299 TJm +(allocates) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-298 TJm +(se) +[3.875451 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(eral) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-299 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(abytes) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-298 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-299 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-299 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-298 TJm +(operate) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-299 TJm +(in,) +[2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-311 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-298 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-299 TJm +(char) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ges) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-298 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-299 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-299 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-298 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-299 TJm +(a) +[4.423394 +0] Tj +-298 TJm +(f) +[3.317546 +0] Tj +10 TJm +(airly) +[4.423394 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-299 TJm +(random) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0] Tj +72 642.291 Td +(f) +[3.317546 +0] Tj +10 TJm +(ashion.) +[4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-743 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-270 TJm +(means) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-271 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-270 TJm +(performance,) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-276 TJm +(both) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-270 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-271 TJm +(compressing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-270 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-271 TJm +(decompressing,) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-275 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-271 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(gely) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-270 TJm +(determined) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-271 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-270 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-271 TJm +(speed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +72 630.336 Td +(at) +[4.423394 +0 +2.769603 +0] Tj +-294 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-294 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-294 TJm +(machine) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-295 TJm +(ca) +[4.423394 +0 +4.423394 +0] Tj +1 TJm +(n) +[4.9813 +0] Tj +-295 TJm +(service) +[3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-294 TJm +(cache) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-294 TJm +(misses.) +[7.750903 +0 +2.769603 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-442 TJm +(Because) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-294 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-294 TJm +(this,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-306 TJm +(small) +[3.875451 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-294 TJm +(changes) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-294 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-294 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-294 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-294 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-294 TJm +(reduce) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-294 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-295 TJm +(miss) +[7.750903 +0 +2.769603 +0 +3.875451 +0 +3.875451 +0] Tj +-294 TJm +(rate) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +72 618.381 Td +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-253 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-253 TJm +(observ) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(ed) +[4.423394 +0 +4.9813 +0] Tj +-253 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-253 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-253 TJm +(disproportionately) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-253 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +-253 TJm +(performance) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-253 TJm +(impro) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ements.) +[4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-639 TJm +(I) +[3.317546 +0] Tj +-253 TJm +(imagine) +[2.769603 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +438.909 618.381 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +471.318 618.381 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-253 TJm +(perform) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0] Tj +-253 TJm +(best) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +72 606.426 Td +(on) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(machines) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(caches.) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 571.673 Td +/F9_0 20.6585 Tf +(2.8.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(CA) +[14.915437 +0 +14.915437 +0] Tj +80 TJm +(VEA) +[13.77922 +0 +13.77922 +0 +14.915437 +0] Tj +90 TJm +(TS) +[12.622344 +0 +13.77922 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 549.755 Td +/F15_0 9.9626 Tf +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +-268 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-267 TJm +(messages) +[7.750903 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-268 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-268 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-268 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-267 TJm +(helpful) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-268 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-268 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-267 TJm +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-268 TJm +(be.) +[4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +293.313 549.755 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +325.868 549.755 Td +/F15_0 9.9626 Tf +(tries) +[2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-268 TJm +(hard) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-267 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-268 TJm +(detect) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-268 TJm +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +-268 TJm +(errors) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-267 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xit) +[4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-268 TJm +(cleanly) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-272 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-268 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 537.8 Td +(details) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(problem) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(sometimes) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(seem) +[3.875451 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(rather) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(misleading.) +[7.750903 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 515.882 Td +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-280 TJm +(manual) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-279 TJm +(page) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-280 TJm +(pertains) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-280 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-279 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(1.0.8) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-280 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +256.84 515.882 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +286.728 515.882 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-798 TJm +(Compressed) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-280 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-279 TJm +(created) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-280 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-280 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-279 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-280 TJm +(entirely) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-279 TJm +(forw) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.192997 +0] Tj +10 TJm +(ards) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +72 503.927 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-294 TJm +(backw) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.192997 +0] Tj +10 TJm +(ards) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-293 TJm +(compatible) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-294 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-294 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-293 TJm +(pre) +[4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +25 TJm +(vious) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-294 TJm +(public) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-294 TJm +(releases,) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-304 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-294 TJm +(0.1pl2,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-305 TJm +(0.9.0) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-293 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-294 TJm +(0.9.5,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-305 TJm +(1.0.0,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-304 TJm +(1.0.1,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-305 TJm +(1.0.2) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-294 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +72 491.972 Td +(1.0.3,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-263 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-260 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-260 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-260 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-260 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xception:) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-330 TJm +(0.9.0) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-260 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-260 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-260 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-260 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-260 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-260 TJm +(multiple) +[7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-260 TJm +(concatenated) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-260 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +72 480.017 Td +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-310 TJm +(0.1pl2) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(this;) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(stop) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(decompressing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 458.099 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +146.174 458.099 Td +/F15_0 9.9626 Tf +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-245 TJm +(prior) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-245 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-245 TJm +(1.0.2) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-246 TJm +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-245 TJm +(32-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-245 TJm +(inte) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(gers) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-245 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-245 TJm +(represent) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-245 TJm +(bit) +[4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-246 TJm +(positions) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-245 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-245 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-245 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-246 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-245 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-245 TJm +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +72 446.144 Td +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-384 TJm +(handle) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-383 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-384 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-383 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-384 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-383 TJm +(512) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-384 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(abytes) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-383 TJm +(long.) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1421 TJm +(V) +[7.192997 +0] Tj +111 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-384 TJm +(1.0.2) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-383 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-384 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-384 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-383 TJm +(64-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-384 TJm +(ints) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-383 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-384 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +72 434.189 Td +(platforms) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0] Tj +-245 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-246 TJm +(support) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-245 TJm +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +-246 TJm +(\(GNU) +[3.317546 +0 +7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +-245 TJm +(supported) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-245 TJm +(tar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(gets,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-247 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-245 TJm +(W) +[9.404694 +0] Tj +40 TJm +(indo) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ws\).) +[7.192997 +0 +3.875451 +0 +3.317546 +0 +2.49065 +0] Tj +-309 TJm +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-245 TJm +(establish) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-245 TJm +(whether) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-246 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-245 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +468.269 434.189 Td +/F17_0 9.9626 Tf +(bzip2recover) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 422.233 Td +/F15_0 9.9626 Tf +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-255 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uilt) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-255 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-255 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-255 TJm +(a) +[4.423394 +0] Tj +-255 TJm +(limitation,) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-256 TJm +(run) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +-255 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-255 TJm +(without) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-255 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(guments.) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-325 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-255 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-256 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ent) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-255 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-255 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-255 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uild) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-255 TJm +(yourself) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-255 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-255 TJm +(unlimited) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-255 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-255 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +72 410.278 Td +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(recompile) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.318 410.278 Td +/F17_0 9.9626 Tf +(MaybeUInt64) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +244.562 410.278 Td +/F15_0 9.9626 Tf +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(unsigned) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(64-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(inte) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 375.525 Td +/F9_0 20.6585 Tf +(2.9.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(A) +[14.915437 +0] Tj +50 TJm +(UTHOR) +[14.915437 +0 +12.622344 +0 +14.915437 +0 +16.072313 +0 +14.915437 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 353.607 Td +/F15_0 9.9626 Tf +(Julian) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(Se) +[5.539206 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ard,) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +132.801 353.607 Td +/F17_0 9.9626 Tf +(jseward@acm.org) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 331.69 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-299 TJm +(ideas) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-300 TJm +(embodied) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-299 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +166.942 331.69 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +199.813 331.69 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-299 TJm +(du) +[4.9813 +0 +4.9813 +0] Tj +-1 TJm +(e) +[4.423394 +0] Tj +-299 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-299 TJm +(\(at) +[3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-300 TJm +(least\)) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0] Tj +-299 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-300 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-299 TJm +(people:) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-409 TJm +(Michael) +[8.856751 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-300 TJm +(Burro) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-299 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-300 TJm +(Da) +[7.192997 +0 +4.423394 +0] Tj +20 TJm +(vid) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-299 TJm +(Wheeler) +[9.404694 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-299 TJm +(\(for) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +72 319.735 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-312 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-313 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-312 TJm +(transformation\),) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +-328 TJm +(Da) +[7.192997 +0 +4.423394 +0] Tj +20 TJm +(vid) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-312 TJm +(Wheeler) +[9.404694 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-313 TJm +(\(ag) +[3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +5 TJm +(ain,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-327 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-313 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-312 TJm +(Huf) +[7.192997 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fman) +[3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-312 TJm +(coder\),) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +2.49065 +0] Tj +-328 TJm +(Peter) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-313 TJm +(Fenwick) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +7.192997 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-312 TJm +(\(for) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-312 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-313 TJm +(structured) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +72 307.779 Td +(coding) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-325 TJm +(model) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-326 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-325 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-326 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +191.156 307.779 Td +/F17_0 9.9626 Tf +(bzip) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +215.067 307.779 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-344 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-326 TJm +(man) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-325 TJm +(re\002nements\),) +[3.317546 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +3.317546 +0 +2.49065 +0] Tj +-345 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-325 TJm +(Alistair) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-326 TJm +(Mof) +[8.856751 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(f) +[3.317546 +0] Tj +10 TJm +(at,) +[4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-344 TJm +(Radford) +[6.645054 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-325 TJm +(Neal) +[7.192997 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-326 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-325 TJm +(Ian) +[3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-326 TJm +(W) +[9.404694 +0] Tj +40 TJm +(itten) +[2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-325 TJm +(\(for) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +72 295.824 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-277 TJm +(arithmetic) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-277 TJm +(coder) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-277 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-277 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-277 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +214.171 295.824 Td +/F17_0 9.9626 Tf +(bzip) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +238.082 295.824 Td +/F15_0 9.9626 Tf +(\).) +[3.317546 +0 +2.49065 +0] Tj +-782 TJm +(I) +[3.317546 +0] Tj +-277 TJm +(am) +[4.423394 +0 +7.750903 +0] Tj +-276 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-277 TJm +(indebted) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-277 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-277 TJm +(their) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-277 TJm +(help,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-284 TJm +(support) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-277 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-277 TJm +(advice.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-781 TJm +(See) +[5.539206 +0 +4.423394 +0 +4.423394 +0] Tj +-277 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-277 TJm +(manual) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +72 283.869 Td +(in) +[2.769603 +0 +4.9813 +0] Tj +-330 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-330 TJm +(source) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-330 TJm +(distrib) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +20 TJm +(ution) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-330 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-329 TJm +(pointers) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-330 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-330 TJm +(sources) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-330 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-330 TJm +(documentation.) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1099 TJm +(Christian) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-330 TJm +(v) +[4.9813 +0] Tj +20 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-330 TJm +(Roques) +[6.645054 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-330 TJm +(encouraged) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-330 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +-330 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-330 TJm +(look) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +72 271.914 Td +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-271 TJm +(f) +[3.317546 +0] Tj +10 TJm +(aster) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-271 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-271 TJm +(algorithms,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-276 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-272 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-271 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-271 TJm +(speed) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-271 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-271 TJm +(compression.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-746 TJm +(Bela) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-271 TJm +(Lubkin) +[6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-271 TJm +(encouraged) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-271 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +-272 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-271 TJm +(impro) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-271 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-271 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orst-case) +[4.9813 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +72 259.959 Td +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-340 TJm +(performance.) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-580 TJm +(Donna) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-339 TJm +(Robinson) +[6.645054 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0] Tj +-340 TJm +(XMLised) +[7.192997 +0 +8.856751 +0 +6.087149 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-340 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-340 TJm +(documentation.) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-580 TJm +(Man) +[8.856751 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-340 TJm +(people) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-340 TJm +(sent) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-339 TJm +(patches,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-363 TJm +(helped) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-340 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +72 248.003 Td +(portability) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(problems,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(lent) +[2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(machines,) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(g) +[4.9813 +0] Tj +5 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(advice) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(were) +[7.192997 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(generally) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(helpful.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +539.395 50.951 Td +(7) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 8 11 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 75.786 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 701.916 Td +/F9_0 24.7902 Tf +(3.) +[13.783351 +0 +6.891676 +0] Tj +-556 TJm +(Pr) +[16.535063 +0 +9.643388 +0] Tj +20 TJm +(ogramming) +[15.146812 +0 +15.146812 +0 +9.643388 +0 +13.783351 +0 +22.038488 +0 +22.038488 +0 +6.891676 +0 +15.146812 +0 +15.146812 +0] Tj +-278 TJm +(with) +[19.286776 +0 +6.891676 +0 +8.255137 +0 +15.146812 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +330.484 701.916 Td +/F335_0 24.7902 Tf +(libbzip2) +[14.87412 +0 +14.87412 +0 +14.87412 +0 +14.87412 +0 +14.87412 +0 +14.87412 +0 +14.87412 +0 +14.87412 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 656.35 Td +/F9_0 17.2154 Tf +(T) +[10.518609 +0] Tj +80 TJm +(ab) +[9.571762 +0 +10.518609 +0] Tj +10 TJm +(le) +[4.785881 +0 +9.571762 +0] Tj +-278 TJm +(of) +[10.518609 +0 +5.732728 +0] Tj +-278 TJm +(Contents) +[12.429519 +0 +10.518609 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 635.788 Td +/F15_0 9.9626 Tf +(3.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(T) +[6.087149 +0] Tj +80 TJm +(op-le) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(structure) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.538 635.788 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 635.788 Td +/F15_0 9.9626 Tf +(8) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 623.832 Td +(3.1.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Lo) +[6.087149 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(summary) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.406 623.832 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 623.832 Td +/F15_0 9.9626 Tf +(9) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 611.877 Td +(3.1.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(High-le) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(summary) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +190.363 611.877 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 611.877 Td +/F15_0 9.9626 Tf +(9) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 599.922 Td +(3.1.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Utility) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(summary) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +215.337 599.922 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.108 599.922 Td +/F15_0 9.9626 Tf +(9) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 587.967 Td +(3.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Error) +[6.087149 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(handling) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.366 587.967 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 587.967 Td +/F15_0 9.9626 Tf +(10) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 576.012 Td +(3.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Lo) +[6.087149 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +179.8 576.012 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 576.012 Td +/F15_0 9.9626 Tf +(11) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 564.057 Td +(3.3.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzCompressInit) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +194.302 564.057 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 564.057 Td +/F15_0 9.9626 Tf +(11) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 552.101 Td +(3.3.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzCompress) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +180.742 552.101 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 552.101 Td +/F15_0 9.9626 Tf +(13) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 540.146 Td +(3.3.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzCompressEnd) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +197.622 540.146 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 540.146 Td +/F15_0 9.9626 Tf +(16) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 528.191 Td +(3.3.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzDecompressInit) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +205.641 528.191 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 528.191 Td +/F15_0 9.9626 Tf +(16) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 516.236 Td +(3.3.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzDecompress) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.867 516.236 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 516.236 Td +/F15_0 9.9626 Tf +(17) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 504.281 Td +(3.3.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzDecompressEnd) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +206.747 504.281 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 504.281 Td +/F15_0 9.9626 Tf +(18) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 492.325 Td +(3.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(High-le) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +180.757 492.325 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 492.325 Td +/F15_0 9.9626 Tf +(18) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 480.37 Td +(3.4.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzReadOpen) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +184.057 480.37 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 480.37 Td +/F15_0 9.9626 Tf +(19) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 468.415 Td +(3.4.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzRead) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.198 468.415 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 468.415 Td +/F15_0 9.9626 Tf +(20) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 456.46 Td +(3.4.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzReadGetUnused) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.192997 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +206.747 456.46 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 456.46 Td +/F15_0 9.9626 Tf +(21) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 444.505 Td +(3.4.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzReadClose) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +6.645054 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +184.614 444.505 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 444.505 Td +/F15_0 9.9626 Tf +(22) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 432.55 Td +(3.4.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzWriteOpen) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +9.404694 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +185.162 432.55 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 432.55 Td +/F15_0 9.9626 Tf +(22) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 420.594 Td +(3.4.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzWrite) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +9.404694 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +163.303 420.594 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 420.594 Td +/F15_0 9.9626 Tf +(23) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 408.639 Td +(3.4.7.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzWriteClose) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +9.404694 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +6.645054 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +187.934 408.639 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 408.639 Td +/F15_0 9.9626 Tf +(23) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 396.684 Td +(3.4.8.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Handling) +[7.192997 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(embedded) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(streams) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +291.142 396.684 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 396.684 Td +/F15_0 9.9626 Tf +(24) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 384.729 Td +(3.4.9.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Standard) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(\002le-reading/writing) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +246.318 384.729 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 384.729 Td +/F15_0 9.9626 Tf +(25) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 372.774 Td +(3.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Utility) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +167.186 372.774 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 372.774 Td +/F15_0 9.9626 Tf +(26) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 360.819 Td +(3.5.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzBuf) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fT) +[3.317546 +0 +6.087149 +0] Tj +80 TJm +(oBuf) +[4.9813 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fCompress) +[3.317546 +0 +6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +228.243 360.819 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 360.819 Td +/F15_0 9.9626 Tf +(26) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 348.863 Td +(3.5.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(BZ2_bzBuf) +[6.645054 +0 +6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fT) +[3.317546 +0 +6.087149 +0] Tj +80 TJm +(oBuf) +[4.9813 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(fDecompress) +[3.317546 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +237.368 348.863 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 348.863 Td +/F15_0 9.9626 Tf +(27) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 336.908 Td +(3.6.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(zlib) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(compatibility) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +211.601 336.908 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 336.908 Td +/F15_0 9.9626 Tf +(28) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 324.953 Td +(3.7.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Using) +[7.192997 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(stdio-free) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +40 TJm +(vironment) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +278.633 324.953 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 324.953 Td +/F15_0 9.9626 Tf +(28) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 312.998 Td +(3.7.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Getting) +[7.192997 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(rid) +[3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(stdio) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +185.033 312.998 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 312.998 Td +/F15_0 9.9626 Tf +(29) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 301.043 Td +(3.7.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Critical) +[6.645054 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(handling) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +198.17 301.043 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 301.043 Td +/F15_0 9.9626 Tf +(29) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 289.088 Td +(3.8.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Making) +[8.856751 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(W) +[9.404694 +0] Tj +40 TJm +(indo) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-250 TJm +(DLL) +[7.192997 +0 +6.087149 +0 +6.087149 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +201.998 289.088 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 289.088 Td +/F15_0 9.9626 Tf +(29) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 257.207 Td +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(chapter) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(describes) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(programming) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +282.448 257.207 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +330.269 257.207 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 235.289 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-273 TJm +(general) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-272 TJm +(background) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(information,) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-278 TJm +(particularly) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-273 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-273 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-272 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-273 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(performance) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-272 TJm +(aspects,) +[4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-279 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +50 TJm +(d) +[4.9813 +0] Tj +-272 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-273 TJm +(well) +[7.192997 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-273 TJm +(advised) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +72 223.334 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +([2]) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(well.) +[7.192997 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 188.581 Td +/F9_0 20.6585 Tf +(3.1.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(T) +[12.622344 +0] Tj +80 TJm +(op-le) +[12.622344 +0 +12.622344 +0 +6.879281 +0 +5.743063 +0 +11.486126 +0] Tj +15 TJm +(vel) +[11.486126 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(structure) +[11.486126 +0 +6.879281 +0 +8.036157 +0 +12.622344 +0 +11.486126 +0 +6.879281 +0 +12.622344 +0 +8.036157 +0 +11.486126 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 166.663 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +123.608 166.663 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-380 TJm +(a) +[4.423394 +0] Tj +-380 TJm +(\003e) +[5.539206 +0 +4.423394 +0] Tj +15 TJm +(xible) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-381 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-380 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-380 TJm +(compressing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-380 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-380 TJm +(decompressing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-380 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-381 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +405.291 166.663 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +438.966 166.663 Td +/F15_0 9.9626 Tf +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-380 TJm +(format.) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-1401 TJm +(Although) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +72 154.708 Td +(packaged) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-284 TJm +(a) +[4.423394 +0] Tj +-285 TJm +(single) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-285 TJm +(entity) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-293 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-285 TJm +(helps) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-285 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-284 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(ard) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-285 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-285 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-284 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-285 TJm +(three) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-285 TJm +(separate) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-284 TJm +(parts:) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-285 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-284 TJm +(le) +[2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-285 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace,) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-293 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-285 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-285 TJm +(high) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 142.753 Td +(le) +[2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace,) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(utility) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(functions.) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 120.835 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-349 TJm +(structure) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-349 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +141.082 120.835 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +188.903 120.835 Td +/F15_0 9.9626 Tf +(') +[3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-349 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(aces) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-349 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-349 TJm +(similar) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-349 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-349 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-349 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-349 TJm +(Jean-loup) +[3.875451 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-349 TJm +(Gailly') +[7.192997 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-349 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-349 TJm +(Mark) +[8.856751 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-349 TJm +(Adler') +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-349 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xcellent) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +516.09 120.835 Td +/F17_0 9.9626 Tf +(zlib) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 108.88 Td +/F15_0 9.9626 Tf +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 86.962 Td +(All) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +-242 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xternally) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-242 TJm +(visible) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-241 TJm +(symbols) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-242 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-242 TJm +(names) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-242 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(ginning) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +284.687 86.962 Td +/F17_0 9.9626 Tf +(BZ2_) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +308.597 86.962 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-615 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-241 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-242 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-242 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-242 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-242 TJm +(1.0.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-614 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-242 TJm +(intention) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-242 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-241 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-242 TJm +(minimise) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +72 75.007 Td +(pollution) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(namespaces) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(clients.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +541.288 50.951 Td +(8) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 9 12 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +420.96 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +498.449 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 75.786 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +240.567 710.037 Td +/F17_0 9.9626 Tf +(#include) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +350.654 710.037 Td +/F15_0 9.9626 Tf +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(sources.) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 679.416 Td +/F9_0 17.2154 Tf +(3.1.1.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(Lo) +[10.518609 +0 +10.518609 +0] Tj +15 TJm +(w-le) +[13.393581 +0 +5.732728 +0 +4.785881 +0 +9.571762 +0] Tj +15 TJm +(vel) +[9.571762 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(summar) +[9.571762 +0 +10.518609 +0 +15.304491 +0 +15.304491 +0 +9.571762 +0 +6.696791 +0] Tj +-10 TJm +(y) +[9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 657.498 Td +/F15_0 9.9626 Tf +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-212 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-212 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vides) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-212 TJm +(services) +[3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-212 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-212 TJm +(compressing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-212 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-212 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +1 TJm +(ing) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-212 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-212 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-212 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-595 TJm +(There') +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-212 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-212 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vision) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-212 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-212 TJm +(dealing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 645.543 Td +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-213 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-220 TJm +(streams) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-213 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-213 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-213 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-213 TJm +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +-213 TJm +(mechanisms,) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-221 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-213 TJm +(straight) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-213 TJm +(memory-to-memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-213 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +-595 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-213 TJm +(f) +[3.317546 +0] Tj +10 TJm +(act,) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-221 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-213 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-213 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-213 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-213 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +72 633.588 Td +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compiled) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(without) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(inclusion) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +222.534 633.588 Td +/F17_0 9.9626 Tf +(stdio.h) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +264.377 633.588 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(helpful) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(embedded) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(applications.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 611.67 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(global) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ariables) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(therefore) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(thread-safe.) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 589.752 Td +(Six) +[5.539206 +0 +2.769603 +0 +4.9813 +0] Tj +-875 TJm +(routines) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-876 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-875 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-876 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-875 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-876 TJm +(le) +[2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-875 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace:) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +308.791 589.752 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +416.387 589.752 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +429.158 589.752 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +512.844 589.752 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-1032 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 577.797 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +186.15 577.797 Td +/F15_0 9.9626 Tf +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-1258 TJm +(compression,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1510 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-1257 TJm +(a) +[4.423394 +0] Tj +-1258 TJm +(corresponding) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-1258 TJm +(trio) +[2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +417.958 577.797 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +537.509 577.797 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 565.842 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +172.707 565.842 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +192.158 565.842 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +310.798 565.842 Td +/F15_0 9.9626 Tf +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-508 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-2171 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +431.918 564.099 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +437.895 565.842 Td +(Init) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +466.871 565.842 Td +/F15_0 9.9626 Tf +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-508 TJm +(allocate) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +72 553.887 Td +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-574 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-573 TJm +(compression/decompression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-574 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-574 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-573 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-574 TJm +(initialisations,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-654 TJm +(whilst) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-574 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +419.503 552.143 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +425.48 553.887 Td +(End) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +449.128 553.887 Td +/F15_0 9.9626 Tf +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-574 TJm +(close) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-573 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +72 541.932 Td +(operations) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(release) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 520.014 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-303 TJm +(real) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-303 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-303 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-303 TJm +(done) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-303 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.892 520.014 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +263.598 520.014 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +281.003 520.014 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +376.645 520.014 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-939 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-303 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-303 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-303 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-303 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +72 508.059 Td +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-205 TJm +(a) +[4.423394 +0] Tj +-205 TJm +(user) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-supplied) +[3.317546 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-205 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-206 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-205 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-205 TJm +(a) +[4.423394 +0] Tj +-205 TJm +(user) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-supplied) +[3.317546 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-205 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-205 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-591 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-205 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fers) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-205 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-205 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-205 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-205 TJm +(size;) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-220 TJm +(arbitrary) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-206 TJm +(quantities) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-205 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +72 496.104 Td +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-258 TJm +(handled) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-258 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-257 TJm +(making) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-258 TJm +(repeated) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-258 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-258 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-258 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-258 TJm +(functions.) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-667 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-258 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-258 TJm +(a) +[4.423394 +0] Tj +-257 TJm +(\003e) +[5.539206 +0 +4.423394 +0] Tj +15 TJm +(xible) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-258 TJm +(allo) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-258 TJm +(a) +[4.423394 +0] Tj +-258 TJm +(consumer) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-pull) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +72 484.148 Td +(style) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(acti) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(vity) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(producer) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-push,) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(mixture) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(both.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 453.527 Td +/F9_0 17.2154 Tf +(3.1.2.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(High-le) +[12.429519 +0 +4.785881 +0 +10.518609 +0 +10.518609 +0 +5.732728 +0 +4.785881 +0 +9.571762 +0] Tj +15 TJm +(vel) +[9.571762 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(summar) +[9.571762 +0 +10.518609 +0 +15.304491 +0 +15.304491 +0 +9.571762 +0 +6.696791 +0] Tj +-10 TJm +(y) +[9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 431.609 Td +/F15_0 9.9626 Tf +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-284 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-284 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vides) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-285 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-284 TJm +(handy) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-284 TJm +(wrappers) +[7.192997 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-284 TJm +(around) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-284 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-284 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-285 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-284 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-284 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acilitate) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-284 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-284 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-285 TJm +(writ) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(ing) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +510.112 431.609 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 419.654 Td +/F15_0 9.9626 Tf +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-347 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-346 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +125.391 419.654 Td +/F17_0 9.9626 Tf +(.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +152.754 419.654 Td +/F15_0 9.9626 Tf +(\002les\).) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.317546 +0 +2.49065 +0] Tj +-1200 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-346 TJm +(routines) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-347 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vide) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-346 TJm +(hooks) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-347 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-346 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acilitate) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-347 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-347 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-346 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-347 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-346 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +460.049 419.654 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +493.39 419.654 Td +/F15_0 9.9626 Tf +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-347 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +72 407.699 Td +(is) +[2.769603 +0 +3.875451 +0] Tj +-339 TJm +(embedded) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-339 TJm +(within) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-339 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-339 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-scale) +[3.317546 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-339 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-339 TJm +(structure,) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-361 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-340 TJm +(wher) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +1 TJm +(e) +[4.423394 +0] Tj +-340 TJm +(there) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-339 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-339 TJm +(multiple) +[7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +400.941 407.699 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +434.207 407.699 Td +/F15_0 9.9626 Tf +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-339 TJm +(streams) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-339 TJm +(concatenated) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +72 395.744 Td +(end-to-end.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 373.826 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-332 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-333 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +144.803 373.826 Td +/F17_0 9.9626 Tf +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +228.489 373.826 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +234.496 373.826 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +294.272 373.826 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +300.279 373.826 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +393.253 373.826 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +410.951 373.826 Td +/F17_0 9.9626 Tf +(BZ2_bzReadGetUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +527.836 373.826 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +72 361.871 Td +(supplied.) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-620 TJm +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(writing) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +183.471 361.871 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +273.135 361.871 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +278.116 361.871 Td +/F17_0 9.9626 Tf +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +346.36 361.871 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +363.237 361.871 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteFinish) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +467.346 361.871 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 339.953 Td +(As) +[7.192997 +0 +3.875451 +0] Tj +-374 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-374 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-375 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-374 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-405 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-374 TJm +(global) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-374 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ariables) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-375 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-374 TJm +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-374 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-374 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-374 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-375 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-374 TJm +(per) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-374 TJm +(se) +[3.875451 +0 +4.423394 +0] Tj +-374 TJm +(thread-safe.) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-1365 TJm +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(we) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-406 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-374 TJm +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +72 327.998 Td +(errors) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-267 TJm +(occur) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +-267 TJm +(whilst) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-267 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-267 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-267 TJm +(writing) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-267 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-268 TJm +(underlying) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-267 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-267 TJm +(\002les,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-271 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-267 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-267 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-267 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-267 TJm +(consult) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +457.199 327.998 Td +/F17_0 9.9626 Tf +(errno) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +489.748 327.998 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-267 TJm +(determine) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 316.043 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-366 TJm +(cause) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-365 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-366 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-365 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-1314 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-366 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-365 TJm +(case,) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-395 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +50 TJm +(d) +[4.9813 +0] Tj +-366 TJm +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-365 TJm +(a) +[4.423394 +0] Tj +-366 TJm +(C) +[6.645054 +0] Tj +-365 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-366 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-366 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-365 TJm +(supports) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +431.668 316.043 Td +/F17_0 9.9626 Tf +(errno) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +465.199 316.043 Td +/F15_0 9.9626 Tf +(in) +[2.769603 +0 +4.9813 +0] Tj +-366 TJm +(a) +[4.423394 +0] Tj +-365 TJm +(multithreaded) +[7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +72 304.088 Td +(en) +[4.423394 +0 +4.9813 +0] Tj +40 TJm +(vironment.) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 282.17 Td +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-243 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-243 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-242 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-243 TJm +(a) +[4.423394 +0] Tj +-243 TJm +(little) +[2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-242 TJm +(simpler) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-243 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-243 TJm +(portable,) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +289.263 282.17 Td +/F17_0 9.9626 Tf +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +375.368 282.17 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +392.172 282.17 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +484.254 282.17 Td +/F15_0 9.9626 Tf +(require) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-243 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 270.215 Td +(pass) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-247 TJm +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +-248 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-247 TJm +(handles) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-247 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +165.421 270.215 Td +/F17_0 9.9626 Tf +(FILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +189.331 268.471 Td +(*) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +195.309 270.215 Td +/F15_0 9.9626 Tf +(s\)) +[3.875451 +0 +3.317546 +0] Tj +-247 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-248 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-247 TJm +(pre) +[4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +25 TJm +(viously) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +-247 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-248 TJm +(opened) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-247 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-247 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-247 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-248 TJm +(writing) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-247 TJm +(respecti) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ely) +[4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-618 TJm +(That) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-248 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +20 TJm +(oids) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +72 258.259 Td +(portability) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-272 TJm +(problems) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-273 TJm +(associated) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-272 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-272 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-273 TJm +(operations) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-272 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-273 TJm +(attrib) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +20 TJm +(utes,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-278 TJm +(whilst) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-272 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-272 TJm +(being) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-272 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-273 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-272 TJm +(imposition) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-273 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 246.304 Td +(programmer) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 215.683 Td +/F9_0 17.2154 Tf +(3.1.3.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(Utility) +[12.429519 +0 +5.732728 +0 +4.785881 +0 +4.785881 +0 +4.785881 +0 +5.732728 +0 +9.571762 +0] Tj +-278 TJm +(functions) +[5.732728 +0 +10.518609 +0 +10.518609 +0 +9.571762 +0 +5.732728 +0 +4.785881 +0 +10.518609 +0 +10.518609 +0 +9.571762 +0] Tj +-278 TJm +(summar) +[9.571762 +0 +10.518609 +0 +15.304491 +0 +15.304491 +0 +9.571762 +0 +6.696791 +0] Tj +-10 TJm +(y) +[9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 193.765 Td +/F15_0 9.9626 Tf +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-273 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-273 TJm +(simple) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-273 TJm +(needs,) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +165.929 193.765 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +312.112 193.765 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +329.219 193.765 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +487.357 193.765 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-273 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vided.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +72 181.81 Td +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-374 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-373 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-374 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-373 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-374 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-373 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-374 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-373 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-374 TJm +(another) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-374 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-373 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-374 TJm +(a) +[4.423394 +0] Tj +-373 TJm +(single) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-374 TJm +(function) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-373 TJm +(call.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-1362 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-373 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-374 TJm +(assess) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +72 169.855 Td +(whether) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-344 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-343 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-344 TJm +(ful\002ll) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +2.769603 +0 +2.769603 +0] Tj +-344 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-343 TJm +(memory-to-memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-344 TJm +(compression/decompression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-343 TJm +(requirements) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-344 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-344 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(esting) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 157.9 Td +(ef) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(fort) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(understanding) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(general) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(comple) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(x) +[4.9813 +0] Tj +-250 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace.) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 135.982 Td +(Y) +[7.192997 +0] Tj +110 TJm +(oshioka) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-423 TJm +(Tsuneo) +[6.087149 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-422 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +150.161 135.982 Td +/F17_0 9.9626 Tf +(tsuneo@rr.iij4u.or.jp) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +275.69 135.982 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-423 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-422 TJm +(contrib) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +20 TJm +(uted) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-423 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-423 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-422 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-423 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-423 TJm +(better) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +476.462 135.982 Td +/F17_0 9.9626 Tf +(zlib) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +504.583 135.982 Td +/F15_0 9.9626 Tf +(compati-) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0] Tj +72 124.027 Td +(bility) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-1446 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-388 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-387 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +193.914 124.027 Td +/F17_0 9.9626 Tf +(BZ2_bzopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +253.689 124.027 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +260.385 124.027 Td +/F17_0 9.9626 Tf +(BZ2_bzread) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +320.161 124.027 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +326.857 124.027 Td +/F17_0 9.9626 Tf +(BZ2_bzwrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +392.611 124.027 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +399.307 124.027 Td +/F17_0 9.9626 Tf +(BZ2_bzflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +465.06 124.027 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +471.756 124.027 Td +/F17_0 9.9626 Tf +(BZ2_bzclose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +537.509 124.027 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 112.072 Td +/F17_0 9.9626 Tf +(BZ2_bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +140.408 112.072 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +157.449 112.072 Td +/F17_0 9.9626 Tf +(BZ2_bzlibVersion) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +253.091 112.072 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-719 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-266 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-267 TJm +(\002nd) +[5.539206 +0 +4.9813 +0 +4.9813 +0] Tj +-266 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-267 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-266 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-267 TJm +(con) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(enient) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-266 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-267 TJm +(simple) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-266 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-267 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 100.116 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-270 TJm +(writ) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(ing,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-275 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-269 TJm +(those) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-270 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-269 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-270 TJm +(high-le) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-269 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace.) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-737 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-270 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-269 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-270 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-269 TJm +(\(yet\)) +[3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-270 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(\002cially) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-269 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-270 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-269 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-270 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-274 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-270 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +72 88.161 Td +(minimally) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-291 TJm +(documented) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-291 TJm +(here.) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-867 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-291 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-291 TJm +(break,) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-301 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-291 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-292 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-291 TJm +(k) +[4.9813 +0] Tj +10 TJm +(eep) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-291 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-291 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-291 TJm +(pieces.) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-433 TJm +(I) +[3.317546 +0] Tj +-291 TJm +(hope) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-291 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-291 TJm +(document) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-292 TJm +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +-291 TJm +(properly) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-291 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +72 76.206 Td +(time) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(permits.) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +541.288 51.071 Td +(9) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 10 13 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(Y) +[7.192997 +0] Tj +110 TJm +(oshioka) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-250 TJm +(contrib) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +20 TJm +(uted) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(modi\002cations) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(allo) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uilt) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(W) +[9.404694 +0] Tj +40 TJm +(indo) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-250 TJm +(DLL.) +[7.192997 +0 +6.087149 +0 +6.087149 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 675.504 Td +/F9_0 20.6585 Tf +(3.2.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Err) +[13.77922 +0 +8.036157 +0 +8.036157 +0] Tj +20 TJm +(or) +[12.622344 +0 +8.036157 +0] Tj +-278 TJm +(handling) +[12.622344 +0 +11.486126 +0 +12.622344 +0 +12.622344 +0 +5.743063 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 653.805 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-214 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-215 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-214 TJm +(designed) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-215 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-214 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-215 TJm +(cleanly) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-214 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-215 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-214 TJm +(situations,) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-222 TJm +(including) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-214 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-215 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orst-case) +[4.9813 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-214 TJm +(situation) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-215 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-214 TJm +(decompressing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-215 TJm +(random) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0] Tj +72 641.85 Td +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-764 TJm +(I'm) +[3.317546 +0 +3.317546 +0 +7.750903 +0] Tj +-274 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-275 TJm +(100%) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +8.298846 +0] Tj +-274 TJm +(sure) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-274 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-274 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-274 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-274 TJm +(al) +[4.423394 +0 +2.769603 +0] Tj +10 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ays) +[4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-274 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-274 TJm +(this,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-280 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-274 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(might) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-274 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-274 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-274 TJm +(add) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(a) +[4.423394 +0] Tj +-275 TJm +(s) +[3.875451 +0] Tj +1 TJm +(ignal) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-275 TJm +(handler) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-274 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-274 TJm +(catch) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-274 TJm +(se) +[3.875451 +0 +4.423394 +0] Tj +15 TJm +(gmentation) +[4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 629.895 Td +(violations) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-273 TJm +(during) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-273 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-273 TJm +(feeling) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(especiall) +[4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(y) +[4.9813 +0] Tj +-274 TJm +(paranoid.) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-758 TJm +(I) +[3.317546 +0] Tj +-273 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-273 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-273 TJm +(interested) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-273 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-274 TJm +(hearing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-273 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-273 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +72 617.939 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(rob) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +20 TJm +(ustness) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(corrupted) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 596.241 Td +(V) +[7.192997 +0] Tj +111 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(1.0.3) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-251 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-251 TJm +(rob) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +20 TJm +(ust) +[4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-251 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-251 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-251 TJm +(respect) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-252 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-251 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-251 TJm +(pre) +[4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +25 TJm +(vious) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-251 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion.) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-626 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(estig) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +5 TJm +(ations) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-251 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-251 TJm +(V) +[7.192997 +0] Tj +111 TJm +(algrind) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(\(a) +[3.317546 +0 +4.423394 +0] Tj +-252 TJm +(tool) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-251 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-251 TJm +(detecting) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 584.285 Td +(problems) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-422 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-421 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-422 TJm +(management\)) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +-421 TJm +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-422 TJm +(that,) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-464 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-422 TJm +(least) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-421 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-422 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-422 TJm +(f) +[3.317546 +0] Tj +1 TJm +(e) +[4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-422 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-422 TJm +(I) +[3.317546 +0] Tj +-421 TJm +(tested,) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-464 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-422 TJm +(single-bit) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-422 TJm +(errors) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-421 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-422 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 572.33 Td +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-342 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-341 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-342 TJm +(caught) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-342 TJm +(properly) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-365 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-341 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-342 TJm +(se) +[3.875451 +0 +4.423394 +0] Tj +15 TJm +(gmentation) +[4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-342 TJm +(f) +[3.317546 +0] Tj +10 TJm +(aults,) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-365 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-341 TJm +(uses) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-342 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-342 TJm +(uninitialised) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-342 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-364 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-342 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-342 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-342 TJm +(range) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +72 560.375 Td +(reads) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-261 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-260 TJm +(writes,) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-263 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-261 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-261 TJm +(in\002nit) +[2.769603 +0 +4.9813 +0 +5.539206 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(e) +[4.423394 +0] Tj +-261 TJm +(looping) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-261 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-260 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-261 TJm +(decompressor) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-342 TJm +(So) +[5.539206 +0 +4.9813 +0] Tj +-260 TJm +(it') +[2.769603 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-261 TJm +(certainly) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-260 TJm +(pretty) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-261 TJm +(rob) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +20 TJm +(ust,) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +2.49065 +0] Tj +-263 TJm +(although) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-261 TJm +(I) +[3.317546 +0] Tj +-260 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ouldn') +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-261 TJm +(claim) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +7.750903 +0] Tj +72 548.42 Td +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(totally) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(bombproof.) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 526.721 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-282 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +105.84 526.721 Td +/F17_0 9.9626 Tf +(bzlib.h) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +150.491 526.721 Td +/F15_0 9.9626 Tf +(contains) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-282 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-282 TJm +(de\002nitions) +[4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-282 TJm +(needed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-281 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-282 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-282 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-282 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-811 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-282 TJm +(particular) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-290 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-282 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-281 TJm +(de\002nitely) +[4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-282 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-282 TJm +(include) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 514.766 Td +/F17_0 9.9626 Tf +(bzlib_private.h) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.664 514.766 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 493.067 Td +(In) +[3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.807 493.067 Td +/F17_0 9.9626 Tf +(bzlib.h) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +124.651 493.067 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-252 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-252 TJm +(v) +[4.9813 +0] Tj +25 TJm +(arious) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-252 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-252 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-251 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-252 TJm +(de\002ned.) +[4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-631 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-252 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-252 TJm +(list) +[2.769603 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-251 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-252 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-252 TJm +(intended) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-252 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-251 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-252 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xhausti) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-252 TJm +(description) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-252 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +72 481.112 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-236 TJm +(circumstances) +[4.423394 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-236 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-237 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-236 TJm +(a) +[4.423394 +0] Tj +-236 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-236 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-236 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-237 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-236 TJm +(returned) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-236 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +-236 TJm +(those) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-236 TJm +(descriptions) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-236 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-237 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-236 TJm +(later) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-305 TJm +(Rather) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-239 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-236 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-237 TJm +(intended) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-236 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 469.157 Td +(con) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-266 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-265 TJm +(rough) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-266 TJm +(meaning) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-265 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-266 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-265 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue.) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-714 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-265 TJm +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-266 TJm +(\002) +[5.539206 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-265 TJm +(actions) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-266 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-266 TJm +(normal) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-265 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-266 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-265 TJm +(intended) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-266 TJm +(denote) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-265 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-266 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +72 457.202 Td +(situation.) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 425.759 Td +/F17_0 9.9626 Tf +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 413.804 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(requested) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(completed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(successfully) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 388.34 Td +/F17_0 9.9626 Tf +(BZ_RUN_OK,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(BZ_FLUSH_OK,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(BZ_FINISH_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 376.384 Td +/F15_0 9.9626 Tf +(In) +[3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +118.789 376.384 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +202.476 376.384 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(requested) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\003ush/\002nish/nothing-special) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(completed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(successfully) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 350.92 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 338.965 Td +/F15_0 9.9626 Tf +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(completed,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(detected) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(during) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 303.756 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(kind.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 272.314 Td +/F17_0 9.9626 Tf +(BZ_CONFIG_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 260.359 Td +/F15_0 9.9626 Tf +(Indicates) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-386 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-385 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-386 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-386 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-386 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-385 TJm +(improperly) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-386 TJm +(compiled) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-386 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-386 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-385 TJm +(platform) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0] Tj +-386 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +-386 TJm +(a) +[4.423394 +0] Tj +-386 TJm +(major) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-385 TJm +(con\002guration) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +5.539206 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-386 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +108 248.404 Td +(Speci\002cally) +[5.539206 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-481 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-435 TJm +(means) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-435 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +220.614 248.404 Td +/F17_0 9.9626 Tf +(sizeof\(char\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +292.345 248.404 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +299.628 248.404 Td +/F17_0 9.9626 Tf +(sizeof\(short\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +381.669 248.404 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +400.388 248.404 Td +/F17_0 9.9626 Tf +(sizeof\(int\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +470.474 248.404 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-435 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-435 TJm +(1,) +[4.9813 +0 +2.49065 +0] Tj +-481 TJm +(2) +[4.9813 +0] Tj +-435 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +108 236.448 Td +(4) +[4.9813 +0] Tj +-389 TJm +(respecti) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ely) +[4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-424 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-390 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-389 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-389 TJm +(be.) +[4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-1456 TJm +(Note) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-389 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-389 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-389 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-390 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-389 TJm +(still) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-389 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-389 TJm +(properly) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-390 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-389 TJm +(64-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-389 TJm +(platforms) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0] Tj +108 224.493 Td +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-292 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-292 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-292 TJm +(LP64) +[6.087149 +0 +5.539206 +0 +4.9813 +0 +4.9813 +0] Tj +-292 TJm +(programming) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-293 TJm +(model) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-292 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +-292 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-292 TJm +(is,) +[2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-303 TJm +(where) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +355.279 224.493 Td +/F17_0 9.9626 Tf +(sizeof\(long\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +429.92 224.493 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +447.217 224.493 Td +/F17_0 9.9626 Tf +(sizeof\(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +512.97 222.75 Td +(*) +[5.97756 +0] Tj +518.948 224.493 Td +(\)) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +527.836 224.493 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +108 212.538 Td +(8.) +[4.9813 +0 +2.49065 +0] Tj +-620 TJm +(Under) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(LP64,) +[6.087149 +0 +5.539206 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +175.606 212.538 Td +/F17_0 9.9626 Tf +(sizeof\(int\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +243.85 212.538 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(still) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(4,) +[4.9813 +0 +2.49065 +0] Tj +-250 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +291.74 212.538 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +339.561 212.538 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +433.458 212.538 Td +/F17_0 9.9626 Tf +(long) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +459.859 212.538 Td +/F15_0 9.9626 Tf +(type,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(OK.) +[7.192997 +0 +7.192997 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 187.073 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 175.118 Td +/F15_0 9.9626 Tf +(When) +[9.404694 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-291 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-291 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-300 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-291 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-290 TJm +(important) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-291 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-290 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-291 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-291 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-291 TJm +(correct) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-290 TJm +(sequence) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-291 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-291 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-290 TJm +(structures) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0] Tj +108 163.163 Td +(\(b) +[3.317546 +0 +4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fers) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-206 TJm +(etc\)) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-205 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-206 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-205 TJm +(correct) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-206 TJm +(states.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +239.409 163.163 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +289.278 163.163 Td +/F15_0 9.9626 Tf +(checks) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-206 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-205 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-206 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-206 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-205 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-206 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-205 TJm +(ensure) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-206 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-206 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-205 TJm +(happening,) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-215 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-205 TJm +(returns) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 151.208 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +213.27 151.208 Td +/F15_0 9.9626 Tf +(if) +[2.769603 +0 +3.317546 +0] Tj +-367 TJm +(not.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-659 TJm +(Code) +[6.645054 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-367 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-367 TJm +(complies) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-366 TJm +(precisely) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-367 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-366 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-367 TJm +(function) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-366 TJm +(semantics,) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-396 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-367 TJm +(detailed) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +108 139.253 Td +(belo) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-250 TJm +(recei) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue;) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ent) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(denotes) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uggy) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(estig) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +5 TJm +(ate.) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 113.788 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 101.833 Td +/F15_0 9.9626 Tf +(Returned) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-434 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-434 TJm +(a) +[4.423394 +0] Tj +-434 TJm +(parameter) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-434 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-434 TJm +(a) +[4.423394 +0] Tj +-433 TJm +(function) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-434 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-434 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-434 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-434 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-434 TJm +(range) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-434 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-434 TJm +(otherwise) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +7.192997 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-434 TJm +(manifestly) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-434 TJm +(incorrect.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-1723 TJm +(As) +[7.192997 +0 +3.875451 +0] Tj +108 89.878 Td +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +131.644 89.878 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +233.263 89.878 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-595 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-596 TJm +(denotes) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-595 TJm +(a) +[4.423394 +0] Tj +-595 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-596 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-595 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-595 TJm +(client) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-595 TJm +(code.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-2692 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-596 TJm +(distinction) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-595 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 77.923 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +194.177 77.923 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +211.054 77.923 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +315.163 77.923 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(bit) +[4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(hazy) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(still) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orth) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(making.) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(10) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 11 14 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F17_0 9.9626 Tf +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 698.082 Td +/F15_0 9.9626 Tf +(Returned) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-228 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-227 TJm +(a) +[4.423394 +0] Tj +-228 TJm +(request) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-227 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-228 TJm +(allocate) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-228 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-227 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ailed.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-605 TJm +(Note) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-228 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-228 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-227 TJm +(quantity) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-228 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-227 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-228 TJm +(needed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-228 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-227 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +108 686.127 Td +(a) +[4.423394 +0] Tj +-351 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-352 TJm +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-351 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-352 TJm +(determined) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-351 TJm +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-352 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-351 TJm +(stream') +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-351 TJm +(header) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-352 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-351 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-352 TJm +(read.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1228 TJm +(So) +[5.539206 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +426.471 686.127 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +525.614 686.127 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 674.172 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +172.13 674.172 Td +/F15_0 9.9626 Tf +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-437 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +221.784 674.172 Td +/F17_0 9.9626 Tf +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +297.867 674.172 Td +/F15_0 9.9626 Tf +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-437 TJm +(though) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-437 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-437 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-437 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-437 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-437 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-437 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-437 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-437 TJm +(read.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +108 662.217 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-479 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-478 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-479 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-478 TJm +(true) +[2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0] Tj +-479 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-479 TJm +(compression;) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-593 TJm +(once) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +301.675 662.217 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +414.04 662.217 Td +/F15_0 9.9626 Tf +(or) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +427.107 662.217 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +521.539 662.217 Td +/F15_0 9.9626 Tf +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +108 650.261 Td +(successfully) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(completed,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +205.672 650.261 Td +/F17_0 9.9626 Tf +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +279.894 650.261 Td +/F15_0 9.9626 Tf +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(occur) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 624.359 Td +/F17_0 9.9626 Tf +(BZ_DATA_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 612.404 Td +/F15_0 9.9626 Tf +(Returned) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-265 TJm +(a) +[4.423394 +0] Tj +-266 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-265 TJm +(inte) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(grity) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-266 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-266 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-265 TJm +(detected) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(during) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-265 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-714 TJm +(Most) +[8.856751 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-266 TJm +(importantl) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(y) +[4.9813 +0] Tj +64 TJm +(,) +[2.49065 +0] Tj +-269 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-266 TJm +(means) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-265 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +108 600.448 Td +(stored) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-222 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-223 TJm +(computed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-222 TJm +(CRCs) +[6.645054 +0 +6.645054 +0 +6.645054 +0 +3.875451 +0] Tj +-222 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-222 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-223 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-222 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-222 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-222 TJm +(match.) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-602 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-222 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-222 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-223 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-222 TJm +(returned) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-222 TJm +(upon) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-222 TJm +(detection) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-223 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-222 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-222 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +108 588.493 Td +(anomaly) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 562.59 Td +/F17_0 9.9626 Tf +(BZ_DATA_ERROR_MAGIC) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 550.635 Td +/F15_0 9.9626 Tf +(As) +[7.192997 +0 +3.875451 +0] Tj +-306 TJm +(a) +[4.423394 +0] Tj +-306 TJm +(special) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-306 TJm +(case) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-307 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +191.852 550.635 Td +/F17_0 9.9626 Tf +(BZ_DATA_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +269.561 550.635 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-306 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-306 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-306 TJm +(sometimes) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-306 TJm +(useful) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-307 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-306 TJm +(kno) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-306 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-306 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-306 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-306 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-306 TJm +(does) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +108 538.68 Td +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(start) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(correct) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(magic) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +261.562 538.68 Td +/F17_0 9.9626 Tf +('B') +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +('Z') +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +('h') +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +327.316 538.68 Td +/F15_0 9.9626 Tf +(\).) +[3.317546 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 512.777 Td +/F17_0 9.9626 Tf +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 500.822 Td +/F15_0 9.9626 Tf +(Returned) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-233 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +159.123 500.822 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +221.218 500.822 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +237.922 500.822 Td +/F17_0 9.9626 Tf +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.995 500.822 Td +/F15_0 9.9626 Tf +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-233 TJm +(there) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-232 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-233 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-233 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-233 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-232 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-233 TJm +(writing) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-233 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-233 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-232 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +108 488.867 Td +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-384 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-357 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +158.511 488.867 Td +/F17_0 9.9626 Tf +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +245.755 488.867 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +263.698 488.867 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +356.92 488.867 Td +/F15_0 9.9626 Tf +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-357 TJm +(attempts) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-357 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-357 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-357 TJm +(a) +[4.423394 +0] Tj +-357 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-357 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-358 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-357 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-357 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +108 476.912 Td +(indicator) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-260 TJm +(\(viz,) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +166.603 476.912 Td +/F17_0 9.9626 Tf +(ferror\(f\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +220.401 476.912 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-260 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-260 TJm +(set.) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-680 TJm +(On) +[7.192997 +0 +4.9813 +0] Tj +-259 TJm +(receipt) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-260 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +311.223 476.912 Td +/F17_0 9.9626 Tf +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +376.976 476.912 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-260 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-260 TJm +(caller) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-260 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-260 TJm +(consult) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +482.068 476.912 Td +/F17_0 9.9626 Tf +(errno) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +514.546 476.912 Td +/F15_0 9.9626 Tf +(and/or) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 464.956 Td +/F17_0 9.9626 Tf +(perror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +146.356 464.956 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(acquire) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(operating-system) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(speci\002c) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0] Tj +-250 TJm +(information) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(problem.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 439.054 Td +/F17_0 9.9626 Tf +(BZ_UNEXPECTED_EOF) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 427.099 Td +/F15_0 9.9626 Tf +(Returned) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +159.467 427.099 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +221.733 427.099 Td +/F15_0 9.9626 Tf +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(\002nishes) +[5.539206 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(detected.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 401.196 Td +/F17_0 9.9626 Tf +(BZ_OUTBUFF_FULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +108 389.241 Td +/F15_0 9.9626 Tf +(Returned) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-258 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +159.632 389.241 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.668 389.241 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +322.627 389.241 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +480.617 389.241 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-258 TJm +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-259 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +108 377.285 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(\002t) +[5.539206 +0 +2.769603 +0] Tj +-250 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vided.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 328.585 Td +/F9_0 20.6585 Tf +(3.3.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Lo) +[12.622344 +0 +12.622344 +0] Tj +15 TJm +(w-le) +[16.072313 +0 +6.879281 +0 +5.743063 +0 +11.486126 +0] Tj +15 TJm +(vel) +[11.486126 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(interface) +[5.743063 +0 +12.622344 +0 +6.879281 +0 +11.486126 +0 +8.036157 +0 +6.879281 +0 +11.486126 +0 +11.486126 +0 +11.486126 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 297.964 Td +/F9_0 17.2154 Tf +(3.3.1.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzCompressInit) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0 +4.785881 +0 +10.518609 +0 +4.785881 +0 +5.732728 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.852 Td +/F15_0 9.9626 Tf +(11) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 12 15 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 445.031] cm +0 0 468 274.969 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(typedef) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(struct) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +98.488 699.676 Td +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +126.642 697.933 Td +(*) +[5.97756 +0] Tj +132.62 699.676 Td +(next_in;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 687.721 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(avail_in;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 675.766 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(total_in_lo32;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 663.811 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(total_in_hi32;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 639.9 Td +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +126.642 638.157 Td +(*) +[5.97756 +0] Tj +132.62 639.9 Td +(next_out;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 627.945 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(avail_out;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 615.99 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(total_out_lo32;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 604.035 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(total_out_hi32;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 580.124 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +126.642 578.381 Td +(*) +[5.97756 +0] Tj +132.62 580.124 Td +(state;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 556.214 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +126.642 554.471 Td +(*) +[5.97756 +0] Tj +132.62 556.214 Td +(\() +[5.97756 +0] Tj +138.597 554.471 Td +(*) +[5.97756 +0] Tj +144.575 556.214 Td +(bzalloc\)\(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +226.528 554.471 Td +(*) +[5.97756 +0] Tj +232.505 556.214 Td +(,int,int\);) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 544.259 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +132.62 542.515 Td +(*) +[5.97756 +0] Tj +138.597 544.259 Td +(bzfree\)\(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +214.572 542.515 Td +(*) +[5.97756 +0] Tj +220.55 544.259 Td +(,void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +254.682 542.515 Td +(*) +[5.97756 +0] Tj +260.659 544.259 Td +(\);) +[5.97756 +0 +5.97756 +0] Tj +98.488 532.304 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +126.642 530.56 Td +(*) +[5.97756 +0] Tj +132.62 532.304 Td +(opaque;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 520.349 Td +(}) +[5.97756 +0] Tj +-426 TJm +(bz_stream;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 496.438 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +292.281 494.695 Td +(*) +[5.97756 +0] Tj +298.259 496.438 Td +(strm,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 484.483 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize100k,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 472.528 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 460.573 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 423.113 Td +/F15_0 9.9626 Tf +(Prepares) +[5.539206 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0] Tj +-356 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-356 TJm +(compression.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1256 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +209.41 423.113 Td +/F17_0 9.9626 Tf +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +266.754 423.113 Td +/F15_0 9.9626 Tf +(structure) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-356 TJm +(holds) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-356 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-356 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-356 TJm +(pertaining) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-356 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-356 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-356 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-355 TJm +(acti) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(vity) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-1256 TJm +(A) +[7.192997 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 411.158 Td +/F17_0 9.9626 Tf +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +128.581 411.158 Td +/F15_0 9.9626 Tf +(structure) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-279 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-280 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-279 TJm +(allocated) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(initialised) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(prior) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-279 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-279 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-280 TJm +(call.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-796 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-279 TJm +(\002elds) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-279 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +431.939 411.158 Td +/F17_0 9.9626 Tf +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +488.52 411.158 Td +/F15_0 9.9626 Tf +(comprise) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-279 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 399.203 Td +(entirety) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(user) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-visible) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +204.422 399.203 Td +/F17_0 9.9626 Tf +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +236.8 399.203 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(pointer) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(pri) +[4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ate) +[4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(structures) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(required) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(compression.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 377.285 Td +(Custom) +[6.645054 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-372 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-372 TJm +(allocators) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-372 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-372 TJm +(supported,) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-403 TJm +(via) +[4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-372 TJm +(\002elds) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +288.908 377.285 Td +/F17_0 9.9626 Tf +(bzalloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +330.751 377.285 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +337.253 377.285 Td +/F17_0 9.9626 Tf +(bzfree) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +373.118 377.285 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-403 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +397.714 377.285 Td +/F17_0 9.9626 Tf +(opaque) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +433.579 377.285 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1353 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-372 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +493.782 377.285 Td +/F17_0 9.9626 Tf +(opaque) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +533.355 377.285 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +72 365.33 Td +(passed) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-306 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-306 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-306 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-306 TJm +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-306 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(gument) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-306 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-306 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-306 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-305 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +253.941 365.33 Td +/F17_0 9.9626 Tf +(bzalloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +298.832 365.33 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +316.266 365.33 Td +/F17_0 9.9626 Tf +(bzfree) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +352.132 365.33 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-320 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-306 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-306 TJm +(otherwise) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +7.192997 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-306 TJm +(ignored) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-306 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-306 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-306 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-955 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +72 353.375 Td +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +89.431 353.375 Td +/F17_0 9.9626 Tf +(bzalloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(\() +[5.97756 +0] Tj +-600 TJm +(opaque,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(n,) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(m) +[5.97756 +0] Tj +-600 TJm +(\)) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +235.938 353.375 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-306 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xpected) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-305 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-306 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-306 TJm +(a) +[4.423394 +0] Tj +-305 TJm +(pointer) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +360.3 353.375 Td +/F17_0 9.9626 Tf +(p) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +369.322 353.375 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +380.118 353.375 Td +/F17_0 9.9626 Tf +(n) +[5.97756 +0] Tj +392.073 351.631 Td +(*) +[5.97756 +0] Tj +404.029 353.375 Td +(m) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +413.051 353.375 Td +/F15_0 9.9626 Tf +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-306 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-305 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-320 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +504.135 353.375 Td +/F17_0 9.9626 Tf +(bzfree) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +72 341.42 Td +(\() +[5.97756 +0] Tj +-600 TJm +(opaque,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(p) +[5.97756 +0] Tj +-600 TJm +(\)) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +152.199 341.42 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(free) +[3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 319.502 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-280 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(don') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-280 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-279 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-280 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-280 TJm +(a) +[4.423394 +0] Tj +-280 TJm +(custom) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-280 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-279 TJm +(allocator) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-288 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +299.9 319.502 Td +/F17_0 9.9626 Tf +(bzalloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +341.743 319.502 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +347.096 319.502 Td +/F17_0 9.9626 Tf +(bzfree) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +385.749 319.502 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +402.923 319.502 Td +/F17_0 9.9626 Tf +(opaque) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +441.576 319.502 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +452.115 319.502 Td +/F17_0 9.9626 Tf +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +476.025 319.502 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-280 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-280 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-280 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +72 307.547 Td +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.318 307.547 Td +/F17_0 9.9626 Tf +(malloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +214.674 307.547 Td +/F15_0 9.9626 Tf +(/) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +219.934 307.547 Td +/F17_0 9.9626 Tf +(free) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +246.335 307.547 Td +/F15_0 9.9626 Tf +(routines.) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 285.629 Td +(Before) +[6.645054 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-362 TJm +(calling) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +133.438 285.629 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +241.035 285.629 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-390 TJm +(\002elds) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +272.606 285.629 Td +/F17_0 9.9626 Tf +(bzalloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +314.449 285.629 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +320.825 285.629 Td +/F17_0 9.9626 Tf +(bzfree) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +360.296 285.629 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +378.289 285.629 Td +/F17_0 9.9626 Tf +(opaque) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +417.76 285.629 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-362 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-362 TJm +(\002lled) +[5.539206 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-362 TJm +(appropriately) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +72 273.674 Td +(as) +[4.423394 +0 +3.875451 +0] Tj +-322 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-323 TJm +(described.) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1055 TJm +(Upon) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(return,) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +-341 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-322 TJm +(internal) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-323 TJm +(state) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-322 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-323 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-322 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-323 TJm +(allocated) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-322 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-323 TJm +(initialised,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-340 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +459.801 273.674 Td +/F17_0 9.9626 Tf +(total_in_lo32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +537.509 273.674 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 261.718 Td +/F17_0 9.9626 Tf +(total_in_hi32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +149.709 261.718 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +155.006 261.718 Td +/F17_0 9.9626 Tf +(total_out_lo32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +241.435 261.718 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +258.564 261.718 Td +/F17_0 9.9626 Tf +(total_out_hi32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +344.994 261.718 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-275 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-276 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-275 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-275 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-276 TJm +(zero.) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +-772 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-275 TJm +(four) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-275 TJm +(\002elds) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-276 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +72 249.763 Td +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-340 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-339 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-340 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-339 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-340 TJm +(inform) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0] Tj +-339 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-340 TJm +(caller) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-339 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-340 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-339 TJm +(total) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-340 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-339 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-340 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-340 TJm +(passed) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-339 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-340 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-339 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-340 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-339 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-340 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-362 TJm +(respecti) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ely) +[4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +72 237.808 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-376 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-377 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-376 TJm +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-376 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-377 TJm +(change) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-376 TJm +(them.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-1378 TJm +(As) +[7.192997 +0 +3.875451 +0] Tj +-377 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-376 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-377 TJm +(1.0,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-408 TJm +(64-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-376 TJm +(counts) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-376 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-377 TJm +(maintained,) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-408 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-376 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-376 TJm +(32-bit) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-377 TJm +(platforms,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +72 225.853 Td +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-371 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +113.148 225.853 Td +/F17_0 9.9626 Tf +(_hi32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +146.729 225.853 Td +/F15_0 9.9626 Tf +(\002elds) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-371 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-370 TJm +(store) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-371 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-371 TJm +(upper) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-370 TJm +(32) +[4.9813 +0 +4.9813 +0] Tj +-371 TJm +(bits) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-370 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-371 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-371 TJm +(count.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-1344 TJm +(So,) +[5.539206 +0 +4.9813 +0 +2.49065 +0] Tj +-400 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-371 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xample,) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-401 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-371 TJm +(total) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-370 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-371 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-370 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-371 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-371 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 213.898 Td +/F17_0 9.9626 Tf +(\(total_in_hi32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(<<) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(32\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(+) +[5.97756 +0] Tj +-600 TJm +(total_in_lo32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +293.171 213.898 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 191.98 Td +(P) +[5.539206 +0] Tj +15 TJm +(arameter) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +115.367 191.98 Td +/F17_0 9.9626 Tf +(blockSize100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +196.205 191.98 Td +/F15_0 9.9626 Tf +(speci\002es) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +3.875451 +0] Tj +-314 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-314 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-314 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-314 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-314 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-314 TJm +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-314 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-314 TJm +(compression.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1004 TJm +(It) +[3.317546 +0 +2.769603 +0] Tj +-314 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-314 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-314 TJm +(a) +[4.423394 +0] Tj +-315 TJm +(v) +[4.9813 +0] Tj +25 TJm +(al) +[4.423394 +0 +2.769603 +0] Tj +1 TJm +(u) +[4.9813 +0] Tj +-1 TJm +(e) +[4.423394 +0] Tj +-314 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-314 TJm +(1) +[4.9813 +0] Tj +72 180.025 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(9) +[4.9813 +0] Tj +-289 TJm +(inclusi) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e,) +[4.423394 +0 +2.49065 +0] Tj +-299 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(actual) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-289 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-289 TJm +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-289 TJm +(100000) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(x) +[4.9813 +0] Tj +-289 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-289 TJm +(\002gure.) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-854 TJm +(9) +[4.9813 +0] Tj +-290 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(best) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-289 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-289 TJm +(tak) +[2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-289 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +72 168.07 Td +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 146.152 Td +(P) +[5.539206 +0] Tj +15 TJm +(arameter) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +115.095 146.152 Td +/F17_0 9.9626 Tf +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +171.75 146.152 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-287 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-286 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-287 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-287 TJm +(a) +[4.423394 +0] Tj +-287 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-286 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-287 TJm +(0) +[4.9813 +0] Tj +-287 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-287 TJm +(4) +[4.9813 +0] Tj +-286 TJm +(inclusi) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e.) +[4.423394 +0 +2.49065 +0] Tj +-841 TJm +(0) +[4.9813 +0] Tj +-286 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-287 TJm +(silent,) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-296 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-287 TJm +(greater) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-287 TJm +(numbers) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-286 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +72 134.197 Td +(increasingly) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-342 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erbose) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-342 TJm +(monitoring/deb) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +20 TJm +(ugging) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-342 TJm +(output.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-1173 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-343 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-342 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-342 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-342 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-342 TJm +(compiled) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-342 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +446.429 134.197 Td +/F17_0 9.9626 Tf +(-DBZ_NO_STDIO) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +524.138 134.197 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-342 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +72 122.241 Td +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(appear) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erbosity) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(setting.) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 100.324 Td +(P) +[5.539206 +0] Tj +15 TJm +(arameter) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +116.619 100.324 Td +/F17_0 9.9626 Tf +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +180.775 100.324 Td +/F15_0 9.9626 Tf +(controls) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-440 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-439 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-440 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-439 TJm +(phase) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-440 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-440 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-439 TJm +(presented) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-440 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-440 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orst) +[4.9813 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-439 TJm +(case,) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-487 TJm +(highly) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +72 88.368 Td +(repetiti) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e,) +[4.423394 +0 +2.49065 +0] Tj +-433 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-396 TJm +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-1496 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-396 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-396 TJm +(runs) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-397 TJm +(i) +[2.769603 +0] Tj +1 TJm +(nto) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-397 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(\002culties) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-396 TJm +(caused) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-396 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-396 TJm +(repetiti) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-396 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-432 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-397 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-396 TJm +(switches) +[3.875451 +0 +7.192997 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-396 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.852 Td +(12) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 13 16 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-255 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-254 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-255 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-254 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-255 TJm +(a) +[4.423394 +0] Tj +-255 TJm +(f) +[3.317546 +0] Tj +10 TJm +(allback) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-254 TJm +(algorithm.) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-648 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-255 TJm +(f) +[3.317546 +0] Tj +10 TJm +(allback) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-254 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-255 TJm +(slo) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wer) +[7.192997 +0 +4.423394 +0 +3.317546 +0] Tj +-255 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-254 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-255 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-254 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-255 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-255 TJm +(perhaps) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +72 698.082 Td +(a) +[4.423394 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(actor) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(three,) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(al) +[4.423394 +0 +2.769603 +0] Tj +10 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ays) +[4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(reasonably) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(matter) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(bad) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(input.) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 676.268 Td +(Lo) +[6.087149 +0 +4.9813 +0] Tj +25 TJm +(wer) +[7.192997 +0 +4.423394 +0 +3.317546 +0] Tj +-240 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-239 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +138.421 676.268 Td +/F17_0 9.9626 Tf +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.585 676.268 Td +/F15_0 9.9626 Tf +(reduce) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-240 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-239 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-240 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-240 TJm +(ef) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(fort) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-239 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-240 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-240 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-240 TJm +(wi) +[7.192997 +0 +2.769603 +0] Tj +1 TJm +(ll) +[2.769603 +0 +2.769603 +0] Tj +-240 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xpend) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-240 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-240 TJm +(resorting) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-239 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-240 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 664.313 Td +(f) +[3.317546 +0] Tj +10 TJm +(allback.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-618 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-248 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-247 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-248 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-247 TJm +(parameter) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-248 TJm +(carefully;) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-248 TJm +(too) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-248 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-248 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-247 TJm +(man) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-248 TJm +(inputs) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-248 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-247 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-248 TJm +(handled) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-247 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-248 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-247 TJm +(f) +[3.317546 +0] Tj +10 TJm +(allback) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-248 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +72 652.358 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-308 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-308 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-308 TJm +(rather) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-309 TJm +(slo) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wly) +[7.192997 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-322 TJm +(too) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-309 TJm +(high,) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-322 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-308 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-309 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erage-to-w) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +7.192997 +0] Tj +10 TJm +(orst) +[4.9813 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-308 TJm +(case) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-308 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-308 TJm +(times) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +3.875451 +0] Tj +-308 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-308 TJm +(become) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-309 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-308 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge.) +[4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +72 640.402 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(30) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(reasonable) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(viour) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(wide) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(range) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(circumstances.) +[4.423394 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 618.588 Td +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(range) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(0) +[4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(250) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(inclusi) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e.) +[4.423394 +0 +2.49065 +0] Tj +-620 TJm +(0) +[4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(special) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(case,) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(equi) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alent) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(30.) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 596.774 Td +(Note) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(generated) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(ardless) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(whether) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(allback) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(used.) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 574.96 Td +(Be) +[6.645054 +0 +4.423394 +0] Tj +-303 TJm +(a) +[4.423394 +0] Tj +15 TJm +(w) +[7.192997 +0] Tj +10 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-303 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-303 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-303 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-304 TJm +(parameter) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-303 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-303 TJm +(disappear) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0] Tj +-303 TJm +(entirely) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-303 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-303 TJm +(future) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-303 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-303 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-303 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-304 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-938 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-303 TJm +(principle) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-303 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-304 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-303 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +72 563.005 Td +(possible) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-270 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-270 TJm +(de) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(vise) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-270 TJm +(a) +[4.423394 +0] Tj +-270 TJm +(good) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-270 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ay) +[4.423394 +0 +4.9813 +0] Tj +-270 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-271 TJm +(automat) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +1 TJm +(ically) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-271 TJm +(choose) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-270 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-270 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-270 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-270 TJm +(use.) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-740 TJm +(Such) +[5.539206 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-270 TJm +(a) +[4.423394 +0] Tj +-270 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-271 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-270 TJm +(render) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-270 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 551.049 Td +(parameter) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(obsolete.) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 529.235 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 384.677] cm +0 0 468 143.462 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 519.771 Td +/F17_0 9.9626 Tf +(BZ_CONFIG_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 507.816 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(library) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(mis-compiled) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 495.86 Td +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 483.905 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 471.95 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(1) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(9) +[5.97756 +0] Tj +98.488 459.995 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(4) +[5.97756 +0] Tj +98.488 448.04 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(250) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 436.085 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 424.129 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(enough) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 412.174 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 400.219 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 362.863 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 313.947] cm +0 0 468 47.821 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 353.399 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 341.444 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(returned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 329.488 Td +(no) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(specific) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(action) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(needed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(in) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(case) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 283.429 Td +/F9_0 17.2154 Tf +(3.3.2.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzCompress) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 254.959] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 270.501 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +268.371 268.757 Td +(*) +[5.97756 +0] Tj +274.348 270.501 Td +(strm,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(action) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 233.145 Td +/F15_0 9.9626 Tf +(Pro) +[5.539206 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vides) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-222 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-221 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-222 TJm +(and/or) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-222 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-222 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-221 TJm +(space) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-222 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-222 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-221 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-601 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-222 TJm +(caller) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-222 TJm +(maintains) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-222 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-221 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-222 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-222 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fers,) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +-227 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-222 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 221.19 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +158.177 221.19 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(transfer) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(them.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 199.375 Td +(Before) +[6.645054 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-212 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-213 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-212 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +147.961 199.375 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +231.647 199.375 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +236.329 199.375 Td +/F17_0 9.9626 Tf +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +280.288 199.375 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-212 TJm +(point) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-213 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-212 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-213 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-212 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-213 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-212 TJm +(compressed,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-220 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +463.493 199.375 Td +/F17_0 9.9626 Tf +(avail_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +513.43 199.375 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +72 187.42 Td +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-246 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-247 TJm +(m) +[7.750903 +0] Tj +1 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +14 TJm +(y) +[4.9813 +0] Tj +-246 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-246 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-246 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-247 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-246 TJm +(read.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +259.242 187.42 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +345.382 187.42 Td +/F15_0 9.9626 Tf +(updates) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +378.271 187.42 Td +/F17_0 9.9626 Tf +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +420.114 187.42 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +425.066 187.42 Td +/F17_0 9.9626 Tf +(avail_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +475.34 187.42 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +492.179 187.42 Td +/F17_0 9.9626 Tf +(total_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 175.465 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(re\003ect) +[3.317546 +0 +4.423394 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(read.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 153.651 Td +(Similarly) +[5.539206 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +113.611 153.651 Td +/F17_0 9.9626 Tf +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +164.072 153.651 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-265 TJm +(point) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-265 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-265 TJm +(a) +[4.423394 +0] Tj +-265 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-265 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-265 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-265 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-265 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-265 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-265 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-265 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-265 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-265 TJm +(placed,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-269 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +464.742 153.651 Td +/F17_0 9.9626 Tf +(avail_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +521.181 153.651 Td +/F15_0 9.9626 Tf +(indi-) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +72 141.696 Td +(cating) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-209 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-209 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-209 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-209 TJm +(space) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-209 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-210 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +243.087 141.696 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +328.856 141.696 Td +/F15_0 9.9626 Tf +(updates) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +361.375 141.696 Td +/F17_0 9.9626 Tf +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +409.196 141.696 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +413.851 141.696 Td +/F17_0 9.9626 Tf +(avail_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +469.732 141.696 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +486.202 141.696 Td +/F17_0 9.9626 Tf +(total_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 129.74 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(re\003ect) +[3.317546 +0 +4.423394 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(output.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 107.926 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-272 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-272 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vide) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-272 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(remo) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-272 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-272 TJm +(little) +[2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-272 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-272 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-272 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-271 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-272 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-272 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-272 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-272 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-272 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-272 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +399.123 107.926 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +482.809 107.926 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-752 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-272 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-272 TJm +(limit,) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +72 95.971 Td +(it) +[2.769603 +0 +2.769603 +0] Tj +-266 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-265 TJm +(acceptable) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-266 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-266 TJm +(supply) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-266 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-265 TJm +(remo) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-266 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-266 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-265 TJm +(byte) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-266 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-266 TJm +(a) +[4.423394 +0] Tj +-266 TJm +(time,) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +-269 TJm +(although) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-266 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-266 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-265 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-266 TJm +(terribly) +[2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-266 TJm +(inef) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +25 TJm +(\002cient.) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-714 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-266 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +72 84.016 Td +(al) +[4.423394 +0 +2.769603 +0] Tj +10 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ays) +[4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(ensure) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(least) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(byte) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(space) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(call.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(13) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 14 17 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(A) +[7.192997 +0] Tj +-250 TJm +(second) +[3.875451 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(purpose) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +156.662 710.037 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +242.839 710.037 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(request) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(change) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(mode) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 688.12 Td +(Conceptually) +[6.645054 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-217 TJm +(a) +[4.423394 +0] Tj +-210 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-209 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-209 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-209 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-210 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-209 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-209 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-209 TJm +(four) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-210 TJm +(states:) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-289 TJm +(IDLE,) +[3.317546 +0 +7.192997 +0 +6.087149 +0 +6.087149 +0 +2.49065 +0] Tj +-209 TJm +(R) +[6.645054 +0] Tj +40 TJm +(UNNING,) +[7.192997 +0 +7.192997 +0 +7.192997 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0 +2.49065 +0] Tj +-210 TJm +(FLUSHING) +[5.539206 +0 +6.087149 +0 +7.192997 +0 +5.539206 +0 +7.192997 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0] Tj +-209 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-209 TJm +(FINISHING.) +[5.539206 +0 +3.317546 +0 +7.192997 +0 +3.317546 +0 +5.539206 +0 +7.192997 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0 +2.49065 +0] Tj +-419 TJm +(Be-) +[6.645054 +0 +4.423394 +0 +3.317546 +0] Tj +72 676.164 Td +(fore) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-264 TJm +(initialisation) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +146.434 676.164 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +254.031 676.164 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-264 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-264 TJm +(termination) +[2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-264 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +349.75 676.164 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +451.369 676.164 Td +/F15_0 9.9626 Tf +(\),) +[3.317546 +0 +2.49065 +0] Tj +-267 TJm +(a) +[4.423394 +0] Tj +-264 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-264 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-263 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(arded) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +72 664.209 Td +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(IDLE.) +[3.317546 +0 +7.192997 +0 +6.087149 +0 +6.087149 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 642.291 Td +(Upon) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-389 TJm +(initialisation) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-390 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +155.036 642.291 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +262.632 642.291 Td +/F15_0 9.9626 Tf +(\),) +[3.317546 +0 +2.49065 +0] Tj +-424 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-390 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-389 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-390 TJm +(placed) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-389 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-389 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-390 TJm +(R) +[6.645054 +0] Tj +40 TJm +(UNNING) +[7.192997 +0 +7.192997 +0 +7.192997 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0] Tj +-389 TJm +(state.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-1457 TJm +(Subsequent) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-389 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +72 630.336 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +83.818 630.336 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +171.571 630.336 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-408 TJm +(pass) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +223.431 630.336 Td +/F17_0 9.9626 Tf +(BZ_RUN) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +263.362 630.336 Td +/F15_0 9.9626 Tf +(as) +[4.423394 +0 +3.875451 +0] Tj +-408 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-409 TJm +(request) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +1 TJm +(ed) +[4.423394 +0 +4.9813 +0] Tj +-409 TJm +(action;) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-487 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-408 TJm +(actions) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-409 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-408 TJm +(ille) +[2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(al) +[4.423394 +0 +2.769603 +0] Tj +-408 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-408 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-408 TJm +(result) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-409 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 618.381 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +173.619 618.381 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 596.463 Td +(At) +[7.192997 +0 +2.769603 +0] Tj +-279 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-279 TJm +(point,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-286 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-279 TJm +(calling) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-279 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-279 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-279 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-278 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +14 TJm +(vi) +[4.9813 +0 +2.769603 +0] Tj +1 TJm +(ded) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-279 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-279 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-279 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-279 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-279 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ants) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-279 TJm +(to.) +[2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-793 TJm +(It) +[3.317546 +0 +2.769603 +0] Tj +-279 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-279 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-279 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-279 TJm +(\002nish) +[5.539206 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-279 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-279 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +72 584.508 Td +(in) +[2.769603 +0 +4.9813 +0] Tj +-287 TJm +(ef) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(fect,) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-297 TJm +(asking) +[4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-288 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-287 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-287 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-288 TJm +(process) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-287 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-288 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-287 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-287 TJm +(might) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-288 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-287 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fered) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-288 TJm +(internally) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-844 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-288 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-287 TJm +(state,) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +456.314 584.508 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 572.553 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-258 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-257 TJm +(longer) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-258 TJm +(attempt) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0] Tj +-258 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-258 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-257 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +234.208 572.553 Td +/F17_0 9.9626 Tf +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +276.051 572.553 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-260 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-257 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-258 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-258 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-257 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-258 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +407.082 572.553 Td +/F17_0 9.9626 Tf +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +454.902 572.553 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-666 TJm +(Because) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-258 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-258 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +72 560.598 Td +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-228 TJm +(supplied) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-228 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-229 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-228 TJm +(user) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0] Tj +-228 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-228 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-228 TJm +(arbitrarily) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-229 TJm +(sma) +[3.875451 +0 +7.750903 +0 +4.423394 +0] Tj +1 TJm +(ll,) +[2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-233 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-228 TJm +(\002nishing-up) +[5.539206 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +-228 TJm +(operation) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-229 TJm +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-228 TJm +(necessarily) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-228 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-228 TJm +(done) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-228 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-229 TJm +(a) +[4.423394 +0] Tj +-228 TJm +(single) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +72 548.642 Td +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +99.666 548.642 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +183.352 548.642 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 526.725 Td +(Instead,) +[3.317546 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-346 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-327 TJm +(calling) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-326 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-327 TJm +(passes) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +218.231 526.725 Td +/F17_0 9.9626 Tf +(BZ_FINISH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +275.284 526.725 Td +/F15_0 9.9626 Tf +(as) +[4.423394 +0 +3.875451 +0] Tj +-327 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-327 TJm +(acti) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-327 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +338.109 526.725 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +421.795 526.725 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1081 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-326 TJm +(changes) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-327 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-327 TJm +(stream') +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +72 514.77 Td +(state) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-291 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-290 TJm +(FINISHING.) +[5.539206 +0 +3.317546 +0 +7.192997 +0 +3.317546 +0 +5.539206 +0 +7.192997 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0 +2.49065 +0] Tj +-581 TJm +(An) +[7.192997 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-291 TJm +(remaining) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-291 TJm +(\(ie,) +[3.317546 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +264.452 514.77 Td +/F17_0 9.9626 Tf +(next_in[0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(..) +[5.97756 +0 +5.97756 +0] Tj +-1200 TJm +(avail_in-1]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +413.892 514.77 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-291 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-290 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-291 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(transferred) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +72 502.814 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-421 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-421 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-421 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-1646 TJm +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-421 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-422 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +1 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +222.339 502.814 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +310.22 502.814 Td +/F15_0 9.9626 Tf +(must) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-421 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-421 TJm +(called) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-421 TJm +(repeatedly) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-421 TJm +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-421 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-421 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-421 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-421 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-421 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +72 490.859 Td +(consumed.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1397 TJm +(At) +[7.192997 +0 +2.769603 +0] Tj +-379 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-380 TJm +(point,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +188.346 490.859 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +275.813 490.859 Td +/F15_0 9.9626 Tf +(returns) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +307.259 490.859 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +384.968 490.859 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-379 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-379 TJm +(stream') +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-380 TJm +(state) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-379 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-380 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-379 TJm +(back) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-379 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 478.904 Td +(IDLE.) +[3.317546 +0 +7.192997 +0 +6.087149 +0 +6.087149 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +99.666 478.904 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +203.776 478.904 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(called.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 456.986 Td +(Just) +[3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-380 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-380 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-379 TJm +(sure) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-380 TJm +(calling) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-380 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-379 TJm +(does) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-380 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-380 TJm +(cheat,) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-412 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-380 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-380 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-379 TJm +(a) +[4.423394 +0] Tj +-380 TJm +(note) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-380 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +415.708 456.986 Td +/F17_0 9.9626 Tf +(avail_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +467.312 456.986 Td +/F15_0 9.9626 Tf +(at) +[4.423394 +0 +2.769603 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-380 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-379 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 445.031 Td +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-286 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-286 TJm +(t) +[2.769603 +0] Tj +1 TJm +(o) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +118.179 445.031 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +204.713 445.031 Td +/F15_0 9.9626 Tf +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +248.035 445.031 Td +/F17_0 9.9626 Tf +(BZ_FINISH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +304.68 445.031 Td +/F15_0 9.9626 Tf +(as) +[4.423394 +0 +3.875451 +0] Tj +-286 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-286 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-285 TJm +(\(ie,) +[3.317546 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-295 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-286 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-286 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-285 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-286 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-286 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-286 TJm +(announced) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +72 433.076 Td +(intention) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-292 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-292 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-291 TJm +(supply) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-292 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-292 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-292 TJm +(input\).) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +2.49065 +0] Tj +-870 TJm +(By) +[6.645054 +0 +4.9813 +0] Tj +-292 TJm +(comparing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-292 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-292 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-291 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-292 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-292 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +392.862 433.076 Td +/F17_0 9.9626 Tf +(avail_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +443.589 433.076 Td +/F15_0 9.9626 Tf +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-292 TJm +(subsequent) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-292 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-291 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 421.121 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +155.686 421.121 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-247 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-247 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-246 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-247 TJm +(detect) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-246 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-247 TJm +(attem) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +1 TJm +(p) +[4.9813 +0] Tj +-1 TJm +(t) +[2.769603 +0] Tj +1 TJm +(s) +[3.875451 +0] Tj +-247 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-246 TJm +(slip) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-247 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-246 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-247 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-246 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-247 TJm +(compress.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +-617 TJm +(An) +[7.192997 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-247 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-246 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-247 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-246 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-247 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +72 409.165 Td +(detected) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +151.959 409.165 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +253.578 409.165 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-500 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(indicates) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(programming) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(mistak) +[7.750903 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(corrected.) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 387.248 Td +(Instead) +[3.317546 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-224 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-223 TJm +(asking) +[4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-224 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-223 TJm +(\002nish,) +[5.539206 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.49065 +0] Tj +-229 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-224 TJm +(calling) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-223 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-224 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-224 TJm +(ask) +[4.423394 +0 +3.875451 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +293.282 387.248 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +379.196 387.248 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-224 TJm +(tak) +[2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-223 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-224 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-223 TJm +(remaining) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-224 TJm +(input,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-229 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +72 375.293 Td +(it) +[2.769603 +0 +2.769603 +0] Tj +-278 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-278 TJm +(terminate) +[2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-278 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-278 TJm +(current) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-277 TJm +(\(Burro) +[3.317546 +0 +6.645054 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0] Tj +25 TJm +(ws-Wheeler\)) +[7.192997 +0 +3.875451 +0 +3.317546 +0 +9.404694 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +-278 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-278 TJm +(block.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-787 TJm +(Th) +[6.087149 +0 +4.9813 +0] Tj +-1 TJm +(i) +[2.769603 +0] Tj +1 TJm +(s) +[3.875451 +0] Tj +-278 TJm +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-278 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-278 TJm +(useful) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-278 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-278 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-278 TJm +(control) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-278 TJm +(purposes.) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +72 363.337 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-328 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-328 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-328 TJm +(analogous) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-328 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-328 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-328 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-328 TJm +(\002nishing:) +[5.539206 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-466 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +297.049 363.337 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +384.003 363.337 Td +/F15_0 9.9626 Tf +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-328 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-328 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-328 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +456.841 363.337 Td +/F17_0 9.9626 Tf +(BZ_FLUSH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +504.662 363.337 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-328 TJm +(remo) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +72 351.382 Td +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-445 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-494 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-446 TJm +(persist) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-445 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-445 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +213.94 351.382 Td +/F17_0 9.9626 Tf +(BZ_FLUSH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +266.195 351.382 Td +/F15_0 9.9626 Tf +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-445 TJm +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-445 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-446 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +360.062 351.382 Td +/F17_0 9.9626 Tf +(BZ_RUN) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +400.362 351.382 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-445 TJm +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1792 TJm +(As) +[7.192997 +0 +3.875451 +0] Tj +-445 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-445 TJm +(\002nishing,) +[5.539206 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 339.427 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +158.177 339.427 Td +/F15_0 9.9626 Tf +(detects) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(attempt) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vide) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(once) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\003ush) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0] Tj +-250 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(gun.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 317.509 Td +(Once) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\003ush) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(complete,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(returns) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(normal) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(R) +[6.645054 +0] Tj +40 TJm +(UNNING) +[7.192997 +0 +7.192997 +0 +7.192997 +0 +3.317546 +0 +7.192997 +0 +7.192997 +0] Tj +-250 TJm +(state.) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 295.591 Td +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-344 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-343 TJm +(sounds) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-344 TJm +(pretty) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-344 TJm +(comple) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(x,) +[4.9813 +0 +2.49065 +0] Tj +-367 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-344 TJm +(isn') +[2.769603 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-344 TJm +(really) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-1182 TJm +(Here') +[7.192997 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-344 TJm +(a) +[4.423394 +0] Tj +-344 TJm +(table) +[2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-343 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-344 TJm +(sho) +[3.875451 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-344 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-344 TJm +(actions) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-343 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-344 TJm +(allo) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-344 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-344 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +72 283.636 Td +(state,) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-281 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-274 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-275 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-274 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-275 TJm +(tak) +[2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(en,) +[4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-280 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-275 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-274 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-275 TJm +(state) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-274 TJm +(is,) +[2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-281 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-275 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-275 TJm +(non-error) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-274 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-275 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-274 TJm +(are.) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-767 TJm +(Note) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-275 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-274 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-275 TJm +(can') +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +72 271.681 Td +(e) +[4.423394 +0] Tj +15 TJm +(xplicitly) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-347 TJm +(ask) +[4.423394 +0 +3.875451 +0 +4.9813 +0] Tj +-348 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-347 TJm +(state) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-348 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-347 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-348 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-347 TJm +(in,) +[2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-372 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-347 TJm +(nor) +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-348 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-347 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-348 TJm +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-347 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-348 TJm +(--) +[3.317546 +0 +3.317546 +0] Tj +-347 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-348 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-347 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-347 TJm +(inferred) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-348 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-347 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-348 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-347 TJm +(returned) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-348 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 259.726 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +155.686 259.726 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.852 Td +(14) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 15 18 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 146.152] cm +0 0 468 573.848 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(IDLE/any) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(Illegal.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(IDLE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(only) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(exists) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(after) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzCompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +98.488 687.721 Td +(before) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzCompressInit.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 675.766 Td +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 651.856 Td +(RUNNING/BZ_RUN) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 639.9 Td +(Compress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(much) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(possible.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 627.945 Td +(Next) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(RUNNING) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 615.99 Td +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_RUN_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 592.08 Td +(RUNNING/BZ_FLUSH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 580.124 Td +(Remember) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(current) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_in.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Compress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 568.169 Td +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(much) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(possible,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(but) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(do) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(accept) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(any) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(more) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(input.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 556.214 Td +(Next) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(FLUSHING) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 544.259 Td +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_FLUSH_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 520.349 Td +(RUNNING/BZ_FINISH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 508.393 Td +(Remember) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(current) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_in.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Compress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 496.438 Td +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(much) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(possible,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(but) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(do) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(accept) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(any) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(more) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(input.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 484.483 Td +(Next) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(FINISHING) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 472.528 Td +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_FINISH_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 448.618 Td +(FLUSHING/BZ_FLUSH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 436.662 Td +(Compress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(much) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(possible,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 424.707 Td +(but) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(do) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(accept) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(any) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(more) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(input.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 412.752 Td +(If) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(all) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(existing) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(input) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(used) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(up) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(all) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 400.797 Td +(output) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(removed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +106.976 388.842 Td +(Next) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(RUNNING;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_RUN_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 376.887 Td +(else) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +106.976 364.931 Td +(Next) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(FLUSHING;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_FLUSH_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 341.021 Td +(FLUSHING/other) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 329.066 Td +(Illegal.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 317.111 Td +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 293.2 Td +(FINISHING/BZ_FINISH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 281.245 Td +(Compress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(much) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(as) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(possible,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 269.29 Td +(but) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(accept) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(any) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(more) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(input.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 257.335 Td +(If) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(all) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(existing) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(input) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(used) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(up) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(all) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 245.38 Td +(output) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(removed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +106.976 233.424 Td +(Next) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(IDLE;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 221.469 Td +(else) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +106.976 209.514 Td +(Next) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(state) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(FINISHING;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_FINISH_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 185.604 Td +(FINISHING/other) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 173.649 Td +(Illegal.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 161.693 Td +(Return) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(value) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 124.234 Td +/F15_0 9.9626 Tf +(That) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(still) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(looks) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(complicated?) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-620 TJm +(W) +[9.404694 +0] Tj +80 TJm +(ell,) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(air) +[4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-250 TJm +(enough.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-620 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(usual) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(sequence) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(compressing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(load) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(is:) +[2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 92.353 Td +(1.) +[4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-510 TJm +(Get) +[7.192997 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(started) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +153.175 92.353 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +260.771 92.353 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(15) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 16 19 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +74.491 710.037 Td +/F15_0 9.9626 Tf +(2.) +[4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-510 TJm +(Sho) +[5.539206 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-267 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-268 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-267 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(shlurp) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-267 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-268 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-267 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-267 TJm +(form) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0] Tj +-268 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-267 TJm +(zero) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-268 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-267 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-268 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(s) +[3.875451 +0] Tj +-268 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +400.64 710.037 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +486.991 710.037 Td +/F15_0 9.9626 Tf +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-267 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(=) +[5.618906 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +83.955 698.082 Td +/F17_0 9.9626 Tf +(BZ_RUN) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +119.821 698.082 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 676.164 Td +(3.) +[4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-510 TJm +(Finish) +[5.539206 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-276 TJm +(up.) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-387 TJm +(Repeatedly) +[6.645054 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-276 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +195.722 676.164 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +282.156 676.164 Td +/F15_0 9.9626 Tf +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-276 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-276 TJm +(=) +[5.618906 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +338.079 676.164 Td +/F17_0 9.9626 Tf +(BZ_FINISH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +391.877 676.164 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-276 TJm +(cop) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +10 TJm +(ying) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-276 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-275 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-276 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-276 TJm +(output,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +83.955 664.209 Td +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.717 664.209 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +184.916 664.209 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 642.291 Td +(4.) +[4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-510 TJm +(Close) +[6.645054 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(go) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(home.) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +-620 TJm +(Call) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +203.914 642.291 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.533 642.291 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 620.374 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-269 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-270 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-269 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-270 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-269 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-270 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-269 TJm +(\002ts) +[5.539206 +0 +2.769603 +0 +3.875451 +0] Tj +-270 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-269 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-270 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-269 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-270 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-269 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-270 TJm +(once,) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-274 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-269 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-270 TJm +(skip) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-269 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-270 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-269 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +456.314 620.374 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +72 608.418 Td +(\() +[5.97756 +0] Tj +-600 TJm +(...,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(BZ_RUN) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(\)) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +164.154 608.418 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +225.036 608.418 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(\() +[5.97756 +0] Tj +-600 TJm +(...,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(BZ_FINISH) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(\)) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +424.786 608.418 Td +/F15_0 9.9626 Tf +(calls.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 586.501 Td +(All) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +-278 TJm +(required) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-277 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-278 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-277 TJm +(allocated) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-278 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +220.295 586.501 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +327.891 586.501 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-785 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-278 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-277 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-278 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-277 TJm +(accept) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-278 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-277 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-278 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-278 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +72 574.545 Td +(\(ob) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(viously\).) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +-612 TJm +(So) +[5.539206 +0 +4.9813 +0] Tj +-238 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-237 TJm +(shouldn') +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-238 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-238 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-237 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-238 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-238 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-238 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-237 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +339.287 574.545 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +425.342 574.545 Td +/F15_0 9.9626 Tf +(calls.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-612 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-237 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-238 TJm +(do,) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-240 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-238 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-238 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 562.59 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +173.619 562.59 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(programming.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 540.672 Td +(T) +[6.087149 +0] Tj +35 TJm +(ri) +[3.317546 +0 +2.769603 +0] Tj +25 TJm +(vial) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(possible) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 501.654] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 529.151 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 517.196 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm->s) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 471.033 Td +/F9_0 17.2154 Tf +(3.3.3.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzCompressEnd) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0 +11.482672 +0 +10.518609 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 442.563] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 458.104 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzCompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +286.303 456.361 Td +(*) +[5.97756 +0] Tj +292.281 458.104 Td +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 420.645 Td +/F15_0 9.9626 Tf +(Releases) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(associated) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 398.727 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 361.766] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 389.263 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm->s) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 377.307 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-4686 TJm +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 331.145 Td +/F9_0 17.2154 Tf +(3.3.4.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzDecompressInit) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0 +4.785881 +0 +10.518609 +0 +4.785881 +0 +5.732728 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 302.674] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 318.216 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzDecompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +304.236 316.473 Td +(*) +[5.97756 +0] Tj +310.214 318.216 Td +(strm,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 280.757 Td +/F15_0 9.9626 Tf +(Prepares) +[5.539206 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0] Tj +-351 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-351 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-1228 TJm +(As) +[7.192997 +0 +3.875451 +0] Tj +-351 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +235.177 280.757 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +342.773 280.757 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-377 TJm +(a) +[4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +356.937 280.757 Td +/F17_0 9.9626 Tf +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +414.235 280.757 Td +/F15_0 9.9626 Tf +(record) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-351 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-351 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-352 TJm +(allocated) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-351 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +72 268.801 Td +(initialised) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-306 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-305 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-306 TJm +(call.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-953 TJm +(Fields) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +211.833 268.801 Td +/F17_0 9.9626 Tf +(bzalloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +253.676 268.801 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +259.35 268.801 Td +/F17_0 9.9626 Tf +(bzfree) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +298.26 268.801 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +315.69 268.801 Td +/F17_0 9.9626 Tf +(opaque) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +354.6 268.801 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-306 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-305 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-306 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-305 TJm +(a) +[4.423394 +0] Tj +-306 TJm +(custom) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-305 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-306 TJm +(allocator) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-306 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +72 256.846 Td +(required,) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-350 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-331 TJm +(made) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +147.635 256.846 Td +/F17_0 9.9626 Tf +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +174.836 256.846 Td +/F15_0 9.9626 Tf +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-330 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-331 TJm +(normal) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +236.722 256.846 Td +/F17_0 9.9626 Tf +(malloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +275.878 256.846 Td +/F15_0 9.9626 Tf +(/) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +281.938 256.846 Td +/F17_0 9.9626 Tf +(free) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +309.139 256.846 Td +/F15_0 9.9626 Tf +(routines.) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-1102 TJm +(Upon) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-330 TJm +(return,) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +-350 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-331 TJm +(internal) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-330 TJm +(state) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-330 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-330 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-331 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +72 244.891 Td +(initialised,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +133.16 244.891 Td +/F17_0 9.9626 Tf +(total_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +183.471 244.891 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.348 244.891 Td +/F17_0 9.9626 Tf +(total_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +256.637 244.891 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(zero.) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 222.973 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(meaning) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(parameter) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +192.756 222.973 Td +/F17_0 9.9626 Tf +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +246.554 222.973 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +266.748 222.973 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +374.345 222.973 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 201.055 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.497 201.055 Td +/F17_0 9.9626 Tf +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +114.248 201.055 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-287 TJm +(nonzero,) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +-297 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-287 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-288 TJm +(wil) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(l) +[2.769603 +0] Tj +-288 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-287 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-287 TJm +(alternati) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-288 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-287 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-287 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-288 TJm +(uses) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-287 TJm +(less) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-287 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-287 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-288 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-287 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 189.1 Td +(cost) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-289 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-290 TJm +(decompressing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-289 TJm +(slo) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wly) +[7.192997 +0 +2.769603 +0 +4.9813 +0] Tj +-290 TJm +(\(roughly) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-289 TJm +(speaking,) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-299 TJm +(half) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(speed,) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-299 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(maximum) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +7.750903 +0] Tj +-289 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-289 TJm +(requirement) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-290 TJm +(drops) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +72 177.145 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(around) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(2300k\).) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +-620 TJm +(See) +[5.539206 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +([2]) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(information) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(management.) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 155.227 Td +(Note) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-289 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-289 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-290 TJm +(needed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-289 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-289 TJm +(a) +[4.423394 +0] Tj +-290 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-289 TJm +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-289 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-289 TJm +(determined) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(stream') +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-289 TJm +(header) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-290 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +72 143.272 Td +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-342 TJm +(read,) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-366 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-342 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-342 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.081 143.272 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +284.043 143.272 Td +/F15_0 9.9626 Tf +(succeeds,) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-365 TJm +(a) +[4.423394 +0] Tj +-343 TJm +(subsequent) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +381.098 143.272 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +480.149 143.272 Td +/F15_0 9.9626 Tf +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-342 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ail) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-343 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 131.317 Td +/F17_0 9.9626 Tf +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +143.731 131.317 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 109.399 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(16) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 17 20 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 624.359] cm +0 0 468 95.641 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(BZ_CONFIG_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(library) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(mis-compiled) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 687.721 Td +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 675.766 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(&&) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(1) +[5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +98.488 663.811 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<;) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(||) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(4\)) +[5.97756 +0 +5.97756 +0] Tj +90 651.856 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 639.9 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(insufficient) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 602.441 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 553.524] cm +0 0 468 47.821 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 592.976 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 581.021 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(returned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 569.066 Td +(no) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(specific) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(action) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(required) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(in) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(case) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 522.903 Td +/F9_0 17.2154 Tf +(3.3.5.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzDecompress) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 494.433] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 509.975 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +280.326 508.231 Td +(*) +[5.97756 +0] Tj +286.303 509.975 Td +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 472.515 Td +/F15_0 9.9626 Tf +(Pro) +[5.539206 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vides) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-301 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-302 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-301 TJm +(and/out) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-302 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-301 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-301 TJm +(space) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-302 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-301 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-302 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-928 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-301 TJm +(caller) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-302 TJm +(maintains) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-301 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-302 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-301 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-301 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fers,) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +-315 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +72 460.56 Td +(uses) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +91.646 460.56 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.778 460.56 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(transfer) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(them.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 438.642 Td +(Before) +[6.645054 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-498 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-499 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-498 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +159.356 438.642 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +254.997 438.642 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +263.071 438.642 Td +/F17_0 9.9626 Tf +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +309.879 438.642 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-498 TJm +(point) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-499 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-498 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-498 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-499 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-560 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +492.179 438.642 Td +/F17_0 9.9626 Tf +(avail_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 426.687 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-308 TJm +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-308 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-309 TJm +(man) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-308 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-308 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-308 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-308 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-309 TJm +(read.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +294.955 426.687 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +393.667 426.687 Td +/F15_0 9.9626 Tf +(updates) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +427.173 426.687 Td +/F17_0 9.9626 Tf +(next_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +469.016 426.687 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +474.723 426.687 Td +/F17_0 9.9626 Tf +(avail_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +525.614 426.687 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 414.732 Td +/F17_0 9.9626 Tf +(total_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +122.311 414.732 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(re\003ect) +[3.317546 +0 +4.423394 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(read.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 392.814 Td +(Similarly) +[5.539206 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +113.799 392.814 Td +/F17_0 9.9626 Tf +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +164.41 392.814 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-280 TJm +(point) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-280 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-280 TJm +(a) +[4.423394 +0] Tj +-280 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-281 TJm +(i) +[2.769603 +0] Tj +1 TJm +(n) +[4.9813 +0] Tj +-281 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-280 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-280 TJm +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-280 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-280 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-280 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-280 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-280 TJm +(placed,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-288 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +486.202 392.814 Td +/F17_0 9.9626 Tf +(avail_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 380.859 Td +/F15_0 9.9626 Tf +(indicating) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-525 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-524 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-525 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-524 TJm +(space) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-525 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-525 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +285.792 380.859 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +374.705 380.859 Td +/F15_0 9.9626 Tf +(updates) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +410.367 380.859 Td +/F17_0 9.9626 Tf +(next_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +458.188 380.859 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +466.589 380.859 Td +/F17_0 9.9626 Tf +(avail_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +525.614 380.859 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 368.904 Td +/F17_0 9.9626 Tf +(total_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +128.289 368.904 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(re\003ect) +[3.317546 +0 +4.423394 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(output.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 346.986 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-320 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-321 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vide) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-320 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-321 TJm +(remo) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-320 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-321 TJm +(little) +[2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-320 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-320 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-321 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-320 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-321 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-320 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-321 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-320 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-320 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-321 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-320 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +407.816 346.986 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +503.457 346.986 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1043 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-320 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 335.031 Td +(limit,) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-295 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-286 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-287 TJm +(acceptable) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-286 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-286 TJm +(supply) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-286 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-287 TJm +(remo) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-286 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-286 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-286 TJm +(byte) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-287 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-286 TJm +(a) +[4.423394 +0] Tj +-286 TJm +(time,) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +-295 TJm +(although) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-286 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-287 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-286 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-286 TJm +(terribly) +[2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-286 TJm +(inef) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +25 TJm +(\002cient.) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-838 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +72 323.076 Td +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(al) +[4.423394 +0 +2.769603 +0] Tj +10 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ays) +[4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(ensure) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(least) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(byte) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(space) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(call.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 301.158 Td +(Use) +[7.192997 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +100.772 301.158 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +198.904 301.158 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(simpler) +[3.875451 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +260.064 301.158 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +343.75 301.158 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 279.24 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-346 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-347 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vide) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-346 TJm +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-346 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-346 TJm +(remo) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-347 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-346 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-346 TJm +(described) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-346 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e,) +[4.423394 +0 +2.49065 +0] Tj +-371 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-346 TJm +(repeatedly) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-346 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +422.638 279.24 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +521.729 279.24 Td +/F15_0 9.9626 Tf +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 267.285 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +152.314 267.285 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-262 TJm +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-344 TJm +(Appearance) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-262 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +261.767 267.285 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +342.081 267.285 Td +/F15_0 9.9626 Tf +(denotes) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-262 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +392.672 267.285 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +490.919 267.285 Td +/F15_0 9.9626 Tf +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-262 TJm +(detected) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +72 255.33 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-212 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-212 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-211 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-212 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-212 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-212 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +237.858 255.33 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +335.609 255.33 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-212 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-212 TJm +(produce) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +402.263 255.33 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +482.082 255.33 Td +/F15_0 9.9626 Tf +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-212 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-212 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +72 243.375 Td +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-256 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-256 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-255 TJm +(placed) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-256 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-256 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-256 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-256 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-257 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-256 TJm +(once) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +278.979 243.375 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +359.236 243.375 Td +/F15_0 9.9626 Tf +(appears,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +-257 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-256 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-256 TJm +(guaranteed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-256 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-255 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-256 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +72 231.419 Td +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(decompressed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(output,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +205.369 231.419 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +321.433 231.419 Td +/F15_0 9.9626 Tf +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(safely) +[3.875451 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(called.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 209.502 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-250 TJm +(case) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +261.259 209.502 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +377.323 209.502 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(clean) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(release) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 187.584 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(17) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 18 21 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 540.672] cm +0 0 468 179.328 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm->s) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 687.721 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm->avail_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(1) +[5.97756 +0] Tj +90 675.766 Td +(BZ_DATA_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 663.811 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(a) +[5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(integrity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(detected) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(in) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 651.856 Td +(BZ_DATA_ERROR_MAGIC) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 639.9 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(doesn't) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(begin) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(right) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(magic) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bytes) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 627.945 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 615.99 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(there) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(wasn't) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(enough) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 604.035 Td +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 592.08 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(logical) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(end) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(detected) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(all) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 580.124 Td +(output) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(in) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(consumed,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(eg) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(s-->avail_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +90 568.169 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 556.214 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 518.755 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 457.883] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 509.29 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 497.335 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(returned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 485.38 Td +(BZ2_bzDecompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 473.425 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 427.262 Td +/F9_0 17.2154 Tf +(3.3.6.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzDecompressEnd) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0 +11.482672 +0 +10.518609 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 398.792] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 414.334 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzDecompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +298.259 412.59 Td +(*) +[5.97756 +0] Tj +304.236 414.334 Td +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 376.874 Td +/F15_0 9.9626 Tf +(Releases) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(associated) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 354.956 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 294.085] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 345.492 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 333.537 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(strm->s) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 321.581 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 309.626 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 272.167 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 247.161] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +98.488 262.702 Td +/F17_0 9.9626 Tf +(None.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 212.408 Td +/F9_0 20.6585 Tf +(3.4.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(High-le) +[14.915437 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0 +6.879281 +0 +5.743063 +0 +11.486126 +0] Tj +15 TJm +(vel) +[11.486126 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(interface) +[5.743063 +0 +12.622344 +0 +6.879281 +0 +11.486126 +0 +8.036157 +0 +6.879281 +0 +11.486126 +0 +11.486126 +0 +11.486126 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 190.49 Td +/F15_0 9.9626 Tf +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vides) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(writing) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +300.292 190.49 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +332.67 190.49 Td +/F15_0 9.9626 Tf +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-620 TJm +(First,) +[5.539206 +0 +2.769603 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(general) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(points.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 158.609 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(All) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +-353 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-352 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-353 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-352 TJm +(tak) +[2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-353 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +199.726 158.609 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +217.658 156.866 Td +(*) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +227.149 158.609 Td +/F15_0 9.9626 Tf +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-353 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(gument,) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +289.871 158.609 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +331.715 158.609 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1236 TJm +(After) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-352 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-353 TJm +(call,) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +413.457 158.609 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +458.813 158.609 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-353 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-352 TJm +(consulted) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +81.963 146.654 Td +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-371 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-371 TJm +(determine) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-372 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-371 TJm +(outcome) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-371 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-371 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-372 TJm +(call.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-1347 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +278.539 146.654 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +324.081 146.654 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +334.424 146.654 Td +/F17_0 9.9626 Tf +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +364.312 146.654 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-371 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-372 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-371 TJm +(completed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-371 TJm +(successfully) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-402 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-371 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +81.963 134.699 Td +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-292 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-293 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-292 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-292 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-293 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-292 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-292 TJm +(function) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-293 TJm +(\(if) +[3.317546 +0 +2.769603 +0 +3.317546 +0] Tj +-292 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y\)) +[4.9813 +0 +3.317546 +0] Tj +-292 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-293 TJm +(consulted.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-874 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +363.994 134.699 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +408.749 134.699 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +418.307 134.699 Td +/F17_0 9.9626 Tf +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +484.06 134.699 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-292 TJm +(there) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-293 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-292 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +81.963 122.744 Td +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-279 TJm +(reading/writ) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(ing) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-279 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-279 TJm +(underlying) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-278 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-285 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-279 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-279 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-278 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(consult) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +412.785 122.744 Td +/F17_0 9.9626 Tf +(errno) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +445.448 122.744 Td +/F15_0 9.9626 Tf +(/) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +450.993 122.744 Td +/F17_0 9.9626 Tf +(perror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +489.634 122.744 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-279 TJm +(determine) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +81.963 110.789 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-376 TJm +(cause) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-376 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-377 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-376 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(\002culty) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +203.58 110.789 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +249.171 110.789 Td +/F15_0 9.9626 Tf +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-376 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-376 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-377 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-376 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-376 TJm +(v) +[4.9813 +0] Tj +25 TJm +(arious) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-376 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-377 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues;) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-439 TJm +(precise) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-376 TJm +(details) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-376 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-377 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-376 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-376 TJm +(a) +[4.423394 +0] Tj +81.963 98.834 Td +(per) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-function) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(basis) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(belo) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(18) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 19 22 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +74.491 710.037 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +91.793 710.037 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +136.332 710.037 Td +/F15_0 9.9626 Tf +(indicates) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-271 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-270 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-271 TJm +(\(ie,) +[3.317546 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-276 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(ything) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-271 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xcept) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +290.317 710.037 Td +/F17_0 9.9626 Tf +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +322.901 710.037 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +339.984 710.037 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +417.693 710.037 Td +/F15_0 9.9626 Tf +(\),) +[3.317546 +0 +2.49065 +0] Tj +-271 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-270 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-271 TJm +(immediately) +[2.769603 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-271 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 698.082 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +173.971 698.082 Td +/F15_0 9.9626 Tf +(\(or) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +187.932 698.082 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +283.573 698.082 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-238 TJm +(depending) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-236 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-235 TJm +(whether) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-235 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-236 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-235 TJm +(attempting) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-235 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-236 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-235 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-235 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-236 TJm +(write\)) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-235 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +81.963 686.127 Td +(free) +[3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-309 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-309 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-309 TJm +(resources) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-310 TJm +(associated) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-309 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-309 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-309 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-975 TJm +(Once) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-309 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-310 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-309 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-309 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-309 TJm +(indicated,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-324 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(viour) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-309 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-309 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-310 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-309 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xcept) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 674.172 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +175.035 674.172 Td +/F15_0 9.9626 Tf +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +178.352 674.172 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +273.994 674.172 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-342 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-342 TJm +(unde\002ned.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1173 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-342 TJm +(implication) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-342 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-342 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-342 TJm +(\(1\)) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +455.366 674.172 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +500.617 674.172 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-342 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +81.963 662.217 Td +(check) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(ed) +[4.423394 +0 +4.9813 +0] Tj +-331 TJm +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-331 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-331 TJm +(call,) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-351 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-331 TJm +(\(2\)) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-331 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +223.255 662.217 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +268.396 662.217 Td +/F15_0 9.9626 Tf +(indicates) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-331 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-331 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +344.762 662.217 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +437.724 662.217 Td +/F15_0 9.9626 Tf +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +441.041 662.217 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +536.682 662.217 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +81.963 650.261 Td +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(called) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(clean) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(up.) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 628.344 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +100.186 628.344 Td +/F17_0 9.9626 Tf +(FILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +124.097 626.6 Td +(*) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +132.308 628.344 Td +/F15_0 9.9626 Tf +(ar) +[4.423394 +0 +3.317546 +0] Tj +18 TJm +(guments) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-224 TJm +(passed) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-224 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +214.645 628.344 Td +/F17_0 9.9626 Tf +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +300.565 628.344 Td +/F15_0 9.9626 Tf +(/) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.569 628.344 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +397.466 628.344 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-224 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-224 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-225 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-224 TJm +(binary) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-224 TJm +(mode.) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-603 TJm +(Most) +[8.856751 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +81.963 616.389 Td +(Unix) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-269 TJm +(systems) +[3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-270 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-269 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-269 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-270 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-269 TJm +(def) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +10 TJm +(ault,) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-274 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-270 TJm +(ot) +[4.9813 +0 +2.769603 +0] Tj +1 TJm +(her) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-270 TJm +(platforms,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-274 TJm +(including) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-269 TJm +(W) +[9.404694 +0] Tj +40 TJm +(indo) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-270 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-269 TJm +(Mac,) +[8.856751 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-274 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-270 TJm +(not.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-736 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-269 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-269 TJm +(omit) +[4.9813 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0] Tj +-270 TJm +(this,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +81.963 604.433 Td +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(encounter) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(problems) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-250 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(mo) +[7.750903 +0 +4.9813 +0] Tj +15 TJm +(ving) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(platforms.) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 582.516 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(Memory) +[8.856751 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-369 TJm +(allocation) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-370 TJm +(requests) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-369 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-370 TJm +(handled) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-369 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +264.468 582.516 Td +/F17_0 9.9626 Tf +(malloc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +304.014 582.516 Td +/F15_0 9.9626 Tf +(/) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +310.465 582.516 Td +/F17_0 9.9626 Tf +(free) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +334.376 582.516 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1337 TJm +(At) +[7.192997 +0 +2.769603 +0] Tj +-370 TJm +(present) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-369 TJm +(there) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-370 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-369 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-370 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acility) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-369 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-370 TJm +(user) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-de\002ned) +[3.317546 +0 +4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +81.963 570.56 Td +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(allocators) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(\(could) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(easily) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(added,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(though\).) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 529.977 Td +/F9_0 17.2154 Tf +(3.4.1.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzReadOpen) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +13.393581 +0 +10.518609 +0 +9.571762 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 453.686] cm +0 0 468 71.731 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 517.048 Td +/F17_0 9.9626 Tf +(typedef) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 493.138 Td +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +130.109 491.394 Td +(*) +[5.97756 +0] Tj +136.087 493.138 Td +(BZ2_bzReadOpen\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +252.171 491.394 Td +(*) +[5.97756 +0] Tj +258.149 493.138 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(FILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +338.368 491.394 Td +(*) +[5.97756 +0] Tj +344.346 493.138 Td +(f,) +[5.97756 +0 +5.97756 +0] Tj +191.855 481.183 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(small,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +191.855 469.228 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +220.01 467.484 Td +(*) +[5.97756 +0] Tj +225.987 469.228 Td +(unused,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 431.768 Td +/F15_0 9.9626 Tf +(Prepare) +[5.539206 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-290 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-289 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-290 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(handle) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +272.697 431.768 Td +/F17_0 9.9626 Tf +(f) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +278.675 431.768 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +285.439 431.768 Td +/F17_0 9.9626 Tf +(f) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +294.302 431.768 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-290 TJm +(refer) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-289 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-290 TJm +(a) +[4.423394 +0] Tj +-290 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-289 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-290 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(opened) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-290 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-289 TJm +(reading,) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-300 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +72 419.813 Td +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-306 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-305 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-306 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-306 TJm +(indicator) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-305 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +193.457 419.813 Td +/F17_0 9.9626 Tf +(ferror\(f\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +247.255 419.813 Td +/F15_0 9.9626 Tf +(\)is) +[3.317546 +0 +2.769603 +0 +3.875451 +0] Tj +-306 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-305 TJm +(set.) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-954 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +308.784 419.813 Td +/F17_0 9.9626 Tf +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +341.717 419.813 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-306 TJm +(1,) +[4.9813 +0 +2.49065 +0] Tj +-319 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-306 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-306 TJm +(wil) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(l) +[2.769603 +0] Tj +-306 TJm +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-306 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-305 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-306 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-306 TJm +(less) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +72 407.858 Td +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xpense) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(speed.) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 385.94 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-227 TJm +(reasons) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-227 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xplained) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-228 TJm +(belo) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.193 385.94 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +251.232 385.94 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-227 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-227 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +332.732 385.94 Td +/F17_0 9.9626 Tf +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +376.838 385.94 Td +/F15_0 9.9626 Tf +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-227 TJm +(starting) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-227 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +441.74 385.94 Td +/F17_0 9.9626 Tf +(unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +477.605 385.94 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-232 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-227 TJm +(starting) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 373.985 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-280 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-280 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-279 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +155.094 373.985 Td +/F17_0 9.9626 Tf +(f) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.072 373.985 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-797 TJm +(At) +[7.192997 +0 +2.769603 +0] Tj +-280 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +206.414 373.985 Td +/F17_0 9.9626 Tf +(BZ_MAX_UNUSED) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +286.907 373.985 Td +/F15_0 9.9626 Tf +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-280 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-280 TJm +(supplied) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-279 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-280 TJm +(this.) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-797 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-279 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-280 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acility) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-279 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-280 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-279 TJm +(required,) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +72 362.03 Td +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(pass) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +138.141 362.03 Td +/F17_0 9.9626 Tf +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +164.542 362.03 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +181.419 362.03 Td +/F17_0 9.9626 Tf +(0) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.887 362.03 Td +/F15_0 9.9626 Tf +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +203.994 362.03 Td +/F17_0 9.9626 Tf +(unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +242.35 362.03 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(n) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +264.208 362.03 Td +/F17_0 9.9626 Tf +(Unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +302.565 362.03 Td +/F15_0 9.9626 Tf +(respecti) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ely) +[4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 340.112 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(meaning) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(parameters) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +196.631 340.112 Td +/F17_0 9.9626 Tf +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +229.01 340.112 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +245.887 340.112 Td +/F17_0 9.9626 Tf +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +299.685 340.112 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +319.879 340.112 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +439.431 340.112 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 318.194 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-402 TJm +(amount) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-402 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-402 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-402 TJm +(needed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-402 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-402 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-402 TJm +(a) +[4.423394 +0] Tj +-401 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-402 TJm +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-402 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-402 TJm +(determined) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-402 TJm +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-402 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-402 TJm +(\002le') +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-402 TJm +(header) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-402 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-402 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-402 TJm +(read.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +72 306.239 Td +(So) +[5.539206 +0 +4.9813 +0] Tj +-492 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-491 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-492 TJm +(possible) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-492 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +166.797 306.239 Td +/F17_0 9.9626 Tf +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +255.381 306.239 Td +/F15_0 9.9626 Tf +(returns) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +287.946 306.239 Td +/F17_0 9.9626 Tf +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +322.729 306.239 Td +/F15_0 9.9626 Tf +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-492 TJm +(a) +[4.423394 +0] Tj +-491 TJm +(subsequent) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-492 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-492 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +431.135 306.239 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +495.81 306.239 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-492 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 294.284 Td +/F17_0 9.9626 Tf +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +143.731 294.284 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 272.366 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(assignments) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.144 272.366 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.987 272.366 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 101.84] cm +0 0 468 167.372 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 260.844 Td +/F17_0 9.9626 Tf +(BZ_CONFIG_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 248.889 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(library) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(mis-compiled) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 236.934 Td +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 224.979 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(f) +[5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 213.023 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(neither) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(nor) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(1) +[5.97756 +0] Tj +98.488 201.068 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(==) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(&&) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +98.488 189.113 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(&&) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!\(0) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_MAX_UNUSED\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +90 177.158 Td +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 165.203 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(ferror\(f\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nonzero) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 153.248 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 141.292 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(insufficient) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 129.337 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 117.382 Td +(otherwise.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 79.922 Td +/F15_0 9.9626 Tf +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 51.071 Td +(19) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 20 23 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 660.224] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(Pointer) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(an) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(abstract) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 687.721 Td +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 675.766 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 638.306 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 577.435] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 628.842 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 616.887 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 604.932 Td +(BZ2_bzClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 592.976 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 546.814 Td +/F9_0 17.2154 Tf +(3.4.2.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzRead) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 519.841] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 535.383 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +208.595 533.639 Td +(*) +[5.97756 +0] Tj +214.572 535.383 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +306.747 533.639 Td +(*) +[5.97756 +0] Tj +312.724 535.383 Td +(b,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +357.078 533.639 Td +(*) +[5.97756 +0] Tj +363.055 535.383 Td +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 497.923 Td +/F15_0 9.9626 Tf +(Reads) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-285 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-284 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +122.569 497.923 Td +/F17_0 9.9626 Tf +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +143.337 497.923 Td +/F15_0 9.9626 Tf +(\(uncompressed\)) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +-285 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-284 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-285 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-284 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +336.319 497.923 Td +/F17_0 9.9626 Tf +(b) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +345.132 497.923 Td +/F15_0 9.9626 Tf +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-285 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-284 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +405.205 497.923 Td +/F17_0 9.9626 Tf +(buf) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +423.137 497.923 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-828 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-284 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-285 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-285 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-284 TJm +(successful,) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 485.968 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +117.36 485.968 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-353 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-353 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +153.374 485.968 Td +/F17_0 9.9626 Tf +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +186.778 485.968 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-353 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-353 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-353 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-353 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-353 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-353 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-353 TJm +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1238 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-353 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-353 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-353 TJm +(end-of-stream) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-353 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-353 TJm +(detected,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 474.013 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +116.795 474.013 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-296 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-297 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-296 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +172.328 474.013 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +250.037 474.013 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-296 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-296 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-296 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-297 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-296 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-296 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-296 TJm +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-898 TJm +(All) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +-297 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +470 474.013 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +514.795 474.013 Td +/F15_0 9.9626 Tf +(v) +[4.9813 +0] Tj +25 TJm +(alues) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +72 462.058 Td +(denote) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 440.14 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +134.224 440.14 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-246 TJm +(supply) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +181.193 440.14 Td +/F17_0 9.9626 Tf +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +201.575 440.14 Td +/F15_0 9.9626 Tf +(bytes,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-247 TJm +(unless) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-245 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-246 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-246 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-246 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-245 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-246 TJm +(detected) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-246 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-246 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-245 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-246 TJm +(occurs.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +-617 TJm +(Because) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-246 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-246 TJm +(this,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-247 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +72 428.185 Td +(is) +[2.769603 +0 +3.875451 +0] Tj +-231 TJm +(possible) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-231 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-231 TJm +(detect) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-231 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-231 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-231 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-232 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-231 TJm +(observing) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-231 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-231 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-231 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-231 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-231 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-231 TJm +(returned) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-231 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-231 TJm +(less) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-231 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-232 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-231 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-231 TJm +(requested.) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +72 416.23 Td +(Ne) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ertheless,) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +-309 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-297 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-298 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(arded) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-297 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-297 TJm +(inadvisable;) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-321 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-298 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-297 TJm +(instead) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-297 TJm +(check) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +360.631 416.23 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +405.437 416.23 Td +/F15_0 9.9626 Tf +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-297 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-298 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-297 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(w) +[7.192997 +0] Tj +10 TJm +(atch) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-298 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-297 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 404.275 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +149.709 404.275 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 382.357 Td +(Internally) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +117.541 382.357 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +181.786 382.357 Td +/F15_0 9.9626 Tf +(copies) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-449 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-448 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-449 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-448 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-449 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-449 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-448 TJm +(chunks) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-449 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-448 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +419.602 382.357 Td +/F17_0 9.9626 Tf +(BZ_MAX_UNUSED) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +501.778 382.357 Td +/F15_0 9.9626 Tf +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-449 TJm +(be-) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +72 370.402 Td +(fore) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-414 TJm +(decompressing) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-414 TJm +(it.) +[2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-1605 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-415 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-414 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-414 TJm +(contains) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-414 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-414 TJm +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-415 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-414 TJm +(strictly) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-414 TJm +(needed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-414 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-414 TJm +(reach) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-414 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-415 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-414 TJm +(end-of-stream,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 358.446 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +134.749 358.446 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-298 TJm +(almost) +[4.423394 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-299 TJm +(certainly) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-298 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-299 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-298 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-299 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-298 TJm +(trailing) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-299 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-298 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-298 TJm +(signalling) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +413.162 358.446 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +502.826 358.446 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-597 TJm +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-298 TJm +(col-) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +72 346.491 Td +(lect) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-242 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-242 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-243 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-242 TJm +(unused) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-242 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-242 TJm +(once) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +208.759 346.491 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +300.835 346.491 Td +/F15_0 9.9626 Tf +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-242 TJm +(appeared,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-244 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +374.201 346.491 Td +/F17_0 9.9626 Tf +(BZ2_bzReadGetUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +490.188 346.491 Td +/F15_0 9.9626 Tf +(immediately) +[2.769603 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +72 334.536 Td +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +99.935 334.536 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +189.599 334.536 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 312.618 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(assignments) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.144 312.618 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.987 312.618 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(20) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 21 24 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 456.986] cm +0 0 468 263.014 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +90 687.721 Td +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 675.766 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(opened) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzWriteOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 663.811 Td +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 651.856 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(there) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(an) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(reading) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(file) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 639.9 Td +(BZ_UNEXPECTED_EOF) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 627.945 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(file) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(ended) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(before) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 615.99 Td +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(logical) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(end-of-stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(detected) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 604.035 Td +(BZ_DATA_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 592.08 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(a) +[5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(integrity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(detected) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(in) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 580.124 Td +(BZ_DATA_ERROR_MAGIC) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 568.169 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(does) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(begin) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(requisite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(header) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bytes) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 556.214 Td +(\(ie,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(a) +[5.97756 +0] Tj +-426 TJm +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(file\).) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(This) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(really) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 544.259 Td +(a) +[5.97756 +0] Tj +-426 TJm +(special) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(case) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_DATA_ERROR.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 532.304 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 520.349 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(insufficient) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 508.393 Td +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 496.438 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(logical) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(end) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(detected.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 484.483 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 472.528 Td +(otherwise.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 435.068 Td +/F15_0 9.9626 Tf +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 374.197] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 425.604 Td +/F17_0 9.9626 Tf +(number) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bytes) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(read) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 413.649 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 401.694 Td +(undefined) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 389.739 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 352.279 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 267.497] cm +0 0 468 83.686 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 342.815 Td +/F17_0 9.9626 Tf +(collect) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(then) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 330.859 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 318.904 Td +(collect) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(then) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzReadGetUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 306.949 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_SEQUENCE_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 294.994 Td +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 283.039 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 236.876 Td +/F9_0 17.2154 Tf +(3.4.3.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzReadGetUn) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +13.393581 +0 +9.571762 +0 +5.732728 +0 +12.429519 +0 +10.518609 +0] Tj +10 TJm +(used) +[10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 197.948] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 225.445 Td +/F17_0 9.9626 Tf +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzReadGetUnused\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +259.883 223.702 Td +(*) +[5.97756 +0] Tj +270.104 225.445 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +362.278 223.702 Td +(*) +[5.97756 +0] Tj +368.256 225.445 Td +(b,) +[5.97756 +0 +5.97756 +0] Tj +200.343 213.49 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +224.254 211.747 Td +(**) +[5.97756 +0 +5.97756 +0] Tj +240.453 213.49 Td +(unused,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +304.473 211.747 Td +(*) +[5.97756 +0] Tj +314.694 213.49 Td +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 176.031 Td +/F15_0 9.9626 Tf +(Returns) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-435 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-435 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-435 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-435 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-435 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-435 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-435 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-435 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-435 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-435 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-435 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-435 TJm +(needed) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-435 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-435 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-435 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-435 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-435 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-435 TJm +(end-of-stream.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 162.332 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +77.978 164.075 Td +(unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +117.2 164.075 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-337 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-337 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-337 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-337 TJm +(address) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-337 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-336 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-337 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-359 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +269.089 162.332 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +275.067 164.075 Td +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +320.267 164.075 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-337 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-337 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-337 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-337 TJm +(bytes.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +427.247 162.332 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +433.225 164.075 Td +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +478.425 164.075 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-337 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-337 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-337 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-337 TJm +(a) +[4.423394 +0] Tj +72 152.12 Td +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +131.506 152.12 Td +/F17_0 9.9626 Tf +(0) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +139.975 152.12 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +156.851 152.12 Td +/F17_0 9.9626 Tf +(BZ_MAX_UNUSED) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +237.05 152.12 Td +/F15_0 9.9626 Tf +(inclusi) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e.) +[4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 130.202 Td +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-882 TJm +(function) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-883 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-882 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-883 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-882 TJm +(called) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-883 TJm +(once) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +271.332 130.202 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +339.9 130.202 Td +/F15_0 9.9626 Tf +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-882 TJm +(signalled) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +406.737 130.202 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +493.231 130.202 Td +/F15_0 9.9626 Tf +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-882 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 118.247 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.664 118.247 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 96.329 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(assignments) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.144 96.329 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.987 96.329 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.852 Td +(21) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 22 25 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 612.403] cm +0 0 468 107.597 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 687.721 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 675.766 Td +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 663.811 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(not) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(signalled) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 651.856 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(opened) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzWriteOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 639.9 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 627.945 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 590.486 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 565.48] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 581.021 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 534.858 Td +/F9_0 17.2154 Tf +(3.4.4.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzReadClose) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +12.429519 +0 +4.785881 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 507.886] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 523.428 Td +/F17_0 9.9626 Tf +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +244.46 521.684 Td +(*) +[5.97756 +0] Tj +250.438 523.428 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +342.612 521.684 Td +(*) +[5.97756 +0] Tj +348.59 523.428 Td +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 485.968 Td +/F15_0 9.9626 Tf +(Releases) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-430 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-429 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-430 TJm +(pertaining) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-429 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-430 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-429 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-430 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +304.352 485.968 Td +/F17_0 9.9626 Tf +(b) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +310.33 485.968 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +321.276 485.968 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +415.22 485.968 Td +/F15_0 9.9626 Tf +(does) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-430 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-429 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +473.438 485.968 Td +/F17_0 9.9626 Tf +(fclose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +513.583 485.968 Td +/F15_0 9.9626 Tf +(on) +[4.9813 +0 +4.9813 +0] Tj +-430 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 474.013 Td +(underlying) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-264 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-264 TJm +(handle,) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-267 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-264 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-264 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-264 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-264 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-264 TJm +(yourself) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-264 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-263 TJm +(appropriate.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +348.653 474.013 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +440.946 474.013 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-264 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-264 TJm +(called) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-264 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-264 TJm +(clean) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +72 462.058 Td +(up) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(situations.) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 440.14 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(assignments) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.144 440.14 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.987 440.14 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 377.211] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 428.618 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 416.663 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(opened) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzOpenWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 404.708 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 392.753 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 355.293 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 330.287] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 345.829 Td +/F17_0 9.9626 Tf +(none) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 299.666 Td +/F9_0 17.2154 Tf +(3.4.5.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzWriteOpen) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +16.251338 +0 +6.696791 +0 +4.785881 +0 +5.732728 +0 +9.571762 +0 +13.393581 +0 +10.518609 +0 +9.571762 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 247.286] cm +0 0 468 47.821 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 286.738 Td +/F17_0 9.9626 Tf +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +130.109 284.994 Td +(*) +[5.97756 +0] Tj +136.087 286.738 Td +(BZ2_bzWriteOpen\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +258.149 284.994 Td +(*) +[5.97756 +0] Tj +264.127 286.738 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(FILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +344.346 284.994 Td +(*) +[5.97756 +0] Tj +350.323 286.738 Td +(f,) +[5.97756 +0 +5.97756 +0] Tj +196.099 274.783 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize100k,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 262.827 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 225.368 Td +/F15_0 9.9626 Tf +(Prepare) +[5.539206 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-268 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-269 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-268 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-269 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-268 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-269 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-268 TJm +(handle) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +262.72 225.368 Td +/F17_0 9.9626 Tf +(f) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +268.698 225.368 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +274.829 225.368 Td +/F17_0 9.9626 Tf +(f) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +283.481 225.368 Td +/F15_0 9.9626 Tf +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-268 TJm +(refer) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-269 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-268 TJm +(a) +[4.423394 +0] Tj +-269 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-268 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-269 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-268 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-269 TJm +(opened) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-268 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-269 TJm +(writing,) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-273 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-268 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +72 213.413 Td +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(indicator) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.577 213.413 Td +/F17_0 9.9626 Tf +(ferror\(f\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +230.375 213.413 Td +/F15_0 9.9626 Tf +(\)is) +[3.317546 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(set.) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 191.495 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-223 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-224 TJm +(meaning) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-223 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-224 TJm +(parameters) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +195.306 191.495 Td +/F17_0 9.9626 Tf +(blockSize100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +273.015 191.495 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +277.784 191.495 Td +/F17_0 9.9626 Tf +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +333.808 191.495 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +350.42 191.495 Td +/F17_0 9.9626 Tf +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +410.196 191.495 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-229 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +429.913 191.495 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +537.509 191.495 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 169.577 Td +(All) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +-382 TJm +(required) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-382 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-382 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-382 TJm +(allocated) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-383 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-382 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-382 TJm +(stage,) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-415 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-382 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-382 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-382 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-382 TJm +(completes) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-382 TJm +(successfully) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +424.691 169.577 Td +/F17_0 9.9626 Tf +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +500.228 169.577 Td +/F15_0 9.9626 Tf +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-382 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +72 157.622 Td +(signalled) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(subsequent) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +203.715 157.622 Td +/F17_0 9.9626 Tf +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +269.468 157.622 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 135.704 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(assignments) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.144 135.704 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.987 135.704 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.852 Td +(22) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 23 26 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 576.538] cm +0 0 468 143.462 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(BZ_CONFIG_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(library) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(mis-compiled) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 687.721 Td +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 675.766 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(f) +[5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 663.811 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(1) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(9) +[5.97756 +0] Tj +90 651.856 Td +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 639.9 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(ferror\(f\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nonzero) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 627.945 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 615.99 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(insufficient) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 604.035 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 592.08 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 554.62 Td +/F15_0 9.9626 Tf +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 493.749] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 545.156 Td +/F17_0 9.9626 Tf +(Pointer) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(an) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(abstract) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 533.201 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 521.245 Td +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 509.29 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 471.831 Td +/F15_0 9.9626 Tf +(Allo) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(actions:) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 387.049] cm +0 0 468 83.686 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 462.366 Td +/F17_0 9.9626 Tf +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 450.411 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 438.456 Td +(\(you) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(could) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(go) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(directly) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzWriteClose,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(but) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(this) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(would) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(be) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(pretty) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +485.506 434.212 Td +/F430_0 9.9626 Tf +( ) +[9.9626 +0] Tj +493.808 434.212 Td +/F123_0 9.9626 Tf +(-) +[2.76761 +0] Tj +90 426.501 Td +/F17_0 9.9626 Tf +(pointless\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 414.546 Td +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 402.59 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 356.428 Td +/F9_0 17.2154 Tf +(3.4.6.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzWrite) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +16.251338 +0 +6.696791 +0 +4.785881 +0 +5.732728 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 329.455] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 344.997 Td +/F17_0 9.9626 Tf +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +220.55 343.254 Td +(*) +[5.97756 +0] Tj +226.528 344.997 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +318.702 343.254 Td +(*) +[5.97756 +0] Tj +324.679 344.997 Td +(b,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +369.033 343.254 Td +(*) +[5.97756 +0] Tj +375.01 344.997 Td +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 307.537 Td +/F15_0 9.9626 Tf +(Absorbs) +[7.192997 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +107.696 307.537 Td +/F17_0 9.9626 Tf +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +128.119 307.537 Td +/F15_0 9.9626 Tf +(bytes) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +214.544 307.537 Td +/F17_0 9.9626 Tf +(buf) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +232.477 307.537 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(entually) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(written) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\002le.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 285.62 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(assignments) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.144 285.62 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.987 285.62 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 174.87] cm +0 0 468 107.597 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 274.098 Td +/F17_0 9.9626 Tf +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 262.143 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +90 250.188 Td +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 238.232 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(opened) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 226.277 Td +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 214.322 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(there) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(an) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(writing) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(file.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 202.367 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 190.412 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 144.249 Td +/F9_0 17.2154 Tf +(3.4.7.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzWriteClose) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +16.251338 +0 +6.696791 +0 +4.785881 +0 +5.732728 +0 +9.571762 +0 +12.429519 +0 +4.785881 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +/F15_0 9.9626 Tf +(23) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 24 27 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 576.538] cm +0 0 468 143.462 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzWriteClose\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +246.194 709.888 Td +(*) +[5.97756 +0] Tj +252.172 711.631 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +340.102 709.888 Td +(*) +[5.97756 +0] Tj +350.323 711.631 Td +(f,) +[5.97756 +0 +5.97756 +0] Tj +187.611 699.676 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(abandon,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +187.611 687.721 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +257.609 685.978 Td +(*) +[5.97756 +0] Tj +267.83 687.721 Td +(nbytes_in,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +187.611 675.766 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +257.609 674.022 Td +(*) +[5.97756 +0] Tj +267.83 675.766 Td +(nbytes_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 651.856 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzWriteClose64\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +258.149 650.112 Td +(*) +[5.97756 +0] Tj +264.127 651.856 Td +(bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +352.057 650.112 Td +(*) +[5.97756 +0] Tj +362.278 651.856 Td +(f,) +[5.97756 +0 +5.97756 +0] Tj +196.099 639.9 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(abandon,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 627.945 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +266.097 626.202 Td +(*) +[5.97756 +0] Tj +276.318 627.945 Td +(nbytes_in_lo32,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 615.99 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +266.097 614.247 Td +(*) +[5.97756 +0] Tj +276.318 615.99 Td +(nbytes_in_hi32,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 604.035 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +266.097 602.291 Td +(*) +[5.97756 +0] Tj +276.318 604.035 Td +(nbytes_out_lo32,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +196.099 592.08 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +266.097 590.336 Td +(*) +[5.97756 +0] Tj +276.318 592.08 Td +(nbytes_out_hi32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 554.62 Td +/F15_0 9.9626 Tf +(Compresses) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-403 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-402 TJm +(\003ushes) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-403 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-403 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-402 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-403 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-402 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-403 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-403 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-402 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ar) +[4.423394 +0 +3.317546 +0] Tj +-403 TJm +(supplied) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-403 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +384.152 554.62 Td +/F17_0 9.9626 Tf +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +449.906 554.62 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-768 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-403 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-402 TJm +(end-of-) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0] Tj +72 542.665 Td +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-352 TJm +(mark) +[7.750903 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +10 TJm +(ers) +[4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-352 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-353 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-352 TJm +(written,) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-378 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-352 TJm +(subsequent) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-352 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-352 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +300.456 542.665 Td +/F17_0 9.9626 Tf +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +369.718 542.665 Td +/F15_0 9.9626 Tf +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-352 TJm +(ille) +[2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(al.) +[4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-1234 TJm +(All) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +-352 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-352 TJm +(associated) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-352 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +72 530.71 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +151.411 530.71 Td +/F17_0 9.9626 Tf +(b) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +159.88 530.71 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(released.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +207.231 530.71 Td +/F17_0 9.9626 Tf +(fflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +245.587 530.71 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(called) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +422.771 530.71 Td +/F17_0 9.9626 Tf +(fclose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +458.636 530.71 Td +/F15_0 9.9626 Tf +(') +[3.317546 +0] Tj +50 TJm +(d.) +[4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 508.792 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.574 508.792 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +180.155 508.792 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-295 TJm +(called) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-295 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-295 TJm +(clean) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-295 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-295 TJm +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-295 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-295 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-306 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-295 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-295 TJm +(action) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-295 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-295 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-295 TJm +(release) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-295 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-295 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-891 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-295 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +72 496.837 Td +(records) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-289 TJm +(codes) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-289 TJm +(issued) +[2.769603 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-289 TJm +(pre) +[4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +25 TJm +(vious) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-289 TJm +(calls,) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-299 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-289 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-289 TJm +(situation) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-289 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-289 TJm +(detected) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(automatically) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-427 TJm +(There) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-289 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-289 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-289 TJm +(attempt) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0] Tj +72 484.882 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-263 TJm +(complete) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-262 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-263 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(operation,) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-265 TJm +(nor) +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-263 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +258.308 484.882 Td +/F17_0 9.9626 Tf +(fflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +296.79 484.882 Td +/F15_0 9.9626 Tf +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-263 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-262 TJm +(\002le.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-696 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-263 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-263 TJm +(force) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-262 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-263 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(viour) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-263 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-262 TJm +(happen) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +72 472.926 Td +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(case) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(passing) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(nonzero) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +305.015 472.926 Td +/F17_0 9.9626 Tf +(abandon) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +346.858 472.926 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 451.009 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +80.597 451.009 Td +/F17_0 9.9626 Tf +(nbytes_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +136.358 451.009 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-197 TJm +(non-null,) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +183.287 449.265 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +189.265 451.009 Td +(nbytes_in) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +245.025 451.009 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-197 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-197 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-197 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-197 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-197 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-197 TJm +(total) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-197 TJm +(v) +[4.9813 +0] Tj +20 TJm +(olume) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-197 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-197 TJm +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-197 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-197 TJm +(handled.) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-584 TJm +(Similarly) +[5.539206 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 439.053 Td +/F17_0 9.9626 Tf +(nbytes_out) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +134.716 439.053 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-295 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-295 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-295 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-295 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-295 TJm +(total) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-295 TJm +(v) +[4.9813 +0] Tj +20 TJm +(olume) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-295 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-296 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-295 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-295 TJm +(written.) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-890 TJm +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-295 TJm +(compatibility) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-295 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-295 TJm +(older) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-295 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-296 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +72 427.098 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-283 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +118.294 427.098 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +216.753 427.098 Td +/F15_0 9.9626 Tf +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-283 TJm +(yields) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-283 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-282 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(wer) +[7.192997 +0 +4.423394 +0 +3.317546 +0] Tj +-283 TJm +(32) +[4.9813 +0 +4.9813 +0] Tj +-283 TJm +(bits) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-283 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-283 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-282 TJm +(counts.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-817 TJm +(Use) +[7.192997 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +423.499 427.098 Td +/F17_0 9.9626 Tf +(BZ2_bzWriteClose64) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +533.913 427.098 Td +/F15_0 9.9626 Tf +(if) +[2.769603 +0 +3.317546 +0] Tj +72 415.143 Td +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(full) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(64) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(bit) +[4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(counts.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-620 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(tw) +[2.769603 +0 +7.192997 +0] Tj +10 TJm +(o) +[4.9813 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(otherwise) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +7.192997 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(absolutely) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(identical.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 393.225 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(assignments) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +169.144 393.225 Td +/F17_0 9.9626 Tf +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.987 393.225 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 306.386] cm +0 0 468 83.686 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 381.704 Td +/F17_0 9.9626 Tf +(BZ_SEQUENCE_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 369.749 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(opened) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 357.793 Td +(BZ_IO_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 345.838 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(there) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(an) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(writing) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(file) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 333.883 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 321.928 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 275.765 Td +/F9_0 17.2154 Tf +(3.4.8.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(Handling) +[12.429519 +0 +9.571762 +0 +10.518609 +0 +10.518609 +0 +4.785881 +0 +4.785881 +0 +10.518609 +0 +10.518609 +0] Tj +-278 TJm +(embed) +[9.571762 +0 +15.304491 +0 +10.518609 +0 +9.571762 +0 +10.518609 +0] Tj +10 TJm +(ded) +[10.518609 +0 +9.571762 +0 +10.518609 +0] Tj +-278 TJm +(compressed) +[9.571762 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0] Tj +-278 TJm +(data) +[10.518609 +0 +9.571762 +0 +5.732728 +0 +9.571762 +0] Tj +-278 TJm +(streams) +[9.571762 +0 +5.732728 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +15.304491 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 253.847 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-203 TJm +(high-le) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-203 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-203 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acilitates) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-203 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-203 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +226.404 253.847 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +258.316 253.847 Td +/F15_0 9.9626 Tf +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-203 TJm +(streams) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-203 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-203 TJm +(form) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0] Tj +-203 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-203 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-203 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-203 TJm +(a) +[4.423394 +0] Tj +-204 TJm +(surrounding,) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-212 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-203 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-203 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 221.967 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-264 TJm +(writing,) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-267 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-264 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-264 TJm +(tak) +[2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-264 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-264 TJm +(open) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-264 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-264 TJm +(handle,) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-267 TJm +(writes) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-264 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-264 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-264 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-264 TJm +(it,) +[2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +397.758 221.967 Td +/F17_0 9.9626 Tf +(fflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +433.624 221.967 Td +/F15_0 9.9626 Tf +(es) +[4.423394 +0 +3.875451 +0] Tj +-264 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-264 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-264 TJm +(does) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-264 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +504.135 221.967 Td +/F17_0 9.9626 Tf +(fclose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 210.012 Td +/F15_0 9.9626 Tf +(it.) +[2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-675 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-259 TJm +(calling) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-260 TJm +(a) +[4.423394 +0] Tj +1 TJm +(pp) +[4.9813 +0 +4.9813 +0] Tj +-1 TJm +(l) +[2.769603 +0] Tj +1 TJm +(ication) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-260 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-259 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-259 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-259 TJm +(o) +[4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-259 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-260 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-259 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-259 TJm +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-259 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-259 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-260 TJm +(dat) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +1 TJm +(a) +[4.423394 +0] Tj +-260 TJm +(stream,) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-261 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-259 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-260 TJm +(sam) +[3.875451 +0 +4.423394 +0 +7.750903 +0] Tj +1 TJm +(e) +[4.423394 +0] Tj +-260 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +81.963 198.056 Td +(handle.) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 176.139 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(Reading) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-258 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-259 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-258 TJm +(comple) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(x,) +[4.9813 +0 +2.49065 +0] Tj +-261 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-258 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-258 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acilities) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-259 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-258 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-258 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-259 TJm +(general) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-258 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-259 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-258 TJm +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-258 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-259 TJm +(since) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-258 TJm +(generality) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-259 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-258 TJm +(hard) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-258 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-259 TJm +(reconcile) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +81.963 164.183 Td +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-432 TJm +(ef) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(\002cienc) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +161.767 164.183 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +225.847 164.183 Td +/F15_0 9.9626 Tf +(reads) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-432 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-432 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-432 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-432 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-432 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-432 TJm +(blocks) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-432 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-432 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +434.467 164.183 Td +/F17_0 9.9626 Tf +(BZ_MAX_UNUSED) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +516.479 164.183 Td +/F15_0 9.9626 Tf +(bytes,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +81.963 152.228 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-436 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-435 TJm +(doing) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-436 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-436 TJm +(probably) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-436 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-435 TJm +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ershoot) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-436 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-436 TJm +(logical) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-435 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-436 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-436 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-436 TJm +(s) +[3.875451 +0] Tj +1 TJm +(tream.) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-1735 TJm +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-436 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-435 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-436 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-436 TJm +(once) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +81.963 140.273 Td +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-290 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-289 TJm +(ended,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-300 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +207.321 140.273 Td +/F17_0 9.9626 Tf +(BZ2_bzReadGetUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +323.782 140.273 Td +/F15_0 9.9626 Tf +(after) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-290 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(last) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-290 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-290 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +405.164 140.273 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +467.826 140.273 Td +/F15_0 9.9626 Tf +(\(the) +[3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-290 TJm +(returning) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 128.318 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +159.671 128.318 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(calling) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +238.047 128.318 Td +/F17_0 9.9626 Tf +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +327.71 128.318 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.852 Td +(24) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 25 28 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-271 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-272 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-271 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-271 TJm +(easy) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0] Tj +-271 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-272 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-271 TJm +(multiple) +[7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +293.313 710.037 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +325.903 710.037 Td +/F15_0 9.9626 Tf +(streams) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-271 TJm +(placed) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-272 TJm +(end-to-end.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-374 TJm +(As) +[7.192997 +0 +3.875451 +0] Tj +-271 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-271 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-271 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-272 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-271 TJm +(stream,) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +72 698.082 Td +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +96.195 698.082 Td +/F17_0 9.9626 Tf +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +158.586 698.082 Td +/F15_0 9.9626 Tf +(returns) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +188.868 698.082 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +266.577 698.082 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-263 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +288.685 698.082 Td +/F17_0 9.9626 Tf +(BZ2_bzReadGetUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +404.875 698.082 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-263 TJm +(coll) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(ect) +[4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-263 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-263 TJm +(unused) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-262 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-263 TJm +(\(cop) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +10 TJm +(y) +[4.9813 +0] Tj +-262 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +72 686.127 Td +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-265 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-265 TJm +(o) +[4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-265 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-265 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +25 TJm +(where\).) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +2.49065 +0] Tj +-711 TJm +(That) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-265 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-265 TJm +(forms) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0] Tj +-265 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-265 TJm +(start) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-265 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-265 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-265 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-265 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-265 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-711 TJm +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-265 TJm +(start) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-265 TJm +(uncompressing) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 674.172 Td +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-246 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-246 TJm +(stream,) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-247 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +157.205 674.172 Td +/F17_0 9.9626 Tf +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +243.344 674.172 Td +/F15_0 9.9626 Tf +(ag) +[4.423394 +0 +4.9813 +0] Tj +5 TJm +(ain,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-247 TJm +(feeding) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-246 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-246 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-247 TJm +(unused) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-246 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-246 TJm +(via) +[4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-246 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +405.967 674.172 Td +/F17_0 9.9626 Tf +(unused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +444.286 674.172 Td +/F15_0 9.9626 Tf +(/) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +449.508 674.172 Td +/F17_0 9.9626 Tf +(nUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +493.804 674.172 Td +/F15_0 9.9626 Tf +(parameters.) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +72 662.217 Td +(K) +[7.192997 +0] Tj +25 TJm +(eep) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-263 TJm +(doing) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-264 TJm +(until) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +158.622 662.217 Td +/F17_0 9.9626 Tf +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +238.952 662.217 Td +/F15_0 9.9626 Tf +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-263 TJm +(coincides) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-263 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-264 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-263 TJm +(ph) +[4.9813 +0 +4.9813 +0] Tj +5 TJm +(ysical) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-263 TJm +(end) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-263 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-263 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +423.124 662.217 Td +/F17_0 9.9626 Tf +(feof\(f\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +464.968 662.217 Td +/F15_0 9.9626 Tf +(\).) +[3.317546 +0 +2.49065 +0] Tj +-699 TJm +(In) +[3.317546 +0 +4.9813 +0] Tj +-263 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-263 TJm +(situation) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 650.261 Td +/F17_0 9.9626 Tf +(BZ2_bzReadGetUnused) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +188.065 650.261 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(course) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 628.344 Td +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-240 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-241 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-240 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-241 TJm +(feel) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-240 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-241 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-240 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-240 TJm +(high-le) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-241 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace) +[4.423394 +0 +4.423394 +0 +4.423394 +0] Tj +-240 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-241 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-240 TJm +(used.) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-614 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-240 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-241 TJm +(require) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-240 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xtra) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-241 TJm +(\003e) +[5.539206 +0 +4.423394 +0] Tj +15 TJm +(xibi) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +1 TJm +(lity) +[2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-243 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +10 TJm +(ll) +[2.769603 +0 +2.769603 +0] Tj +-240 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-241 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 616.389 Td +(bite) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ullet) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(grips) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace.) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 585.767 Td +/F9_0 17.2154 Tf +(3.4.9.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(Standar) +[11.482672 +0 +5.732728 +0 +9.571762 +0 +10.518609 +0 +10.518609 +0 +9.571762 +0 +6.696791 +0] Tj +20 TJm +(d) +[10.518609 +0] Tj +-278 TJm +(\002le-reading/writing) +[10.518609 +0 +4.785881 +0 +9.571762 +0 +5.732728 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +4.785881 +0 +10.518609 +0 +10.518609 +0 +4.785881 +0 +13.393581 +0 +6.696791 +0 +4.785881 +0 +5.732728 +0 +4.785881 +0 +10.518609 +0 +10.518609 +0] Tj +-278 TJm +(code) +[9.571762 +0 +10.518609 +0 +10.518609 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 563.85 Td +/F15_0 9.9626 Tf +(Here') +[7.192997 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-250 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +50 TJm +(d) +[4.9813 +0] Tj +-250 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le:) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 190.086] cm +0 0 468 370.61 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 552.328 Td +/F17_0 9.9626 Tf +(FILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +113.91 550.584 Td +(*) +[5.97756 +0] Tj +132.62 552.328 Td +(f;) +[5.97756 +0 +5.97756 +0] Tj +90 540.373 Td +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +125.866 538.629 Td +(*) +[5.97756 +0] Tj +136.087 540.373 Td +(b;) +[5.97756 +0 +5.97756 +0] Tj +90 528.418 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(nBuf;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 516.462 Td +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1704 TJm +(buf[) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(/) +[5.97756 +0] Tj +165.018 514.719 Td +(*) +[5.97756 +0] Tj +175.24 516.462 Td +(whatever) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(you) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(like) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +305.79 514.719 Td +(*) +[5.97756 +0] Tj +311.767 516.462 Td +(/) +[5.97756 +0] Tj +-426 TJm +(];) +[5.97756 +0 +5.97756 +0] Tj +90 504.507 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(bzerror;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 492.552 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(nWritten;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 468.642 Td +(f) +[5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(fopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +("myfile.bz2",) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +("w") +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 456.687 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(!f) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +94.244 444.731 Td +(/) +[5.97756 +0] Tj +100.222 442.988 Td +(*) +[5.97756 +0] Tj +110.443 444.731 Td +(handle) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +184.684 442.988 Td +(*) +[5.97756 +0] Tj +190.662 444.731 Td +(/) +[5.97756 +0] Tj +90 432.776 Td +(}) +[5.97756 +0] Tj +90 420.821 Td +(b) +[5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ2_bzWriteOpen\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(f,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(9) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 408.866 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +94.244 396.911 Td +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +94.244 384.955 Td +(/) +[5.97756 +0] Tj +100.222 383.212 Td +(*) +[5.97756 +0] Tj +110.443 384.955 Td +(handle) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +184.684 383.212 Td +(*) +[5.97756 +0] Tj +190.662 384.955 Td +(/) +[5.97756 +0] Tj +90 373 Td +(}) +[5.97756 +0] Tj +90 349.09 Td +(while) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(/) +[5.97756 +0] Tj +140.331 347.346 Td +(*) +[5.97756 +0] Tj +150.553 349.09 Td +(condition) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +208.595 347.346 Td +(*) +[5.97756 +0] Tj +214.572 349.09 Td +(/) +[5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +94.244 337.135 Td +(/) +[5.97756 +0] Tj +100.222 335.391 Td +(*) +[5.97756 +0] Tj +110.443 337.135 Td +(get) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(write) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(into) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(set) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nBuf) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(appropriately) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +421.874 335.391 Td +(*) +[5.97756 +0] Tj +427.852 337.135 Td +(/) +[5.97756 +0] Tj +94.244 325.18 Td +(nWritten) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ2_bzWrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nBuf) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +94.244 313.224 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(==) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_IO_ERROR\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +102.732 301.269 Td +(BZ2_bzWriteClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +102.732 289.314 Td +(/) +[5.97756 +0] Tj +108.71 287.571 Td +(*) +[5.97756 +0] Tj +118.931 289.314 Td +(handle) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +193.172 287.571 Td +(*) +[5.97756 +0] Tj +199.15 289.314 Td +(/) +[5.97756 +0] Tj +94.244 277.359 Td +(}) +[5.97756 +0] Tj +90 265.404 Td +(}) +[5.97756 +0] Tj +90 241.493 Td +(BZ2_bzWriteClose\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 229.538 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(==) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_IO_ERROR\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +94.244 217.583 Td +(/) +[5.97756 +0] Tj +100.222 215.84 Td +(*) +[5.97756 +0] Tj +110.443 217.583 Td +(handle) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +184.684 215.84 Td +(*) +[5.97756 +0] Tj +190.662 217.583 Td +(/) +[5.97756 +0] Tj +90 205.628 Td +(}) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 168.168 Td +/F15_0 9.9626 Tf +(And) +[7.192997 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le:) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(25) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 26 29 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 349.39] cm +0 0 468 370.61 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(FILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +113.91 709.888 Td +(*) +[5.97756 +0] Tj +132.62 711.631 Td +(f;) +[5.97756 +0 +5.97756 +0] Tj +90 699.676 Td +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +125.866 697.933 Td +(*) +[5.97756 +0] Tj +136.087 699.676 Td +(b;) +[5.97756 +0 +5.97756 +0] Tj +90 687.721 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(nBuf;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 675.766 Td +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1704 TJm +(buf[) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(/) +[5.97756 +0] Tj +165.018 674.022 Td +(*) +[5.97756 +0] Tj +175.24 675.766 Td +(whatever) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(you) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(like) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +305.79 674.022 Td +(*) +[5.97756 +0] Tj +311.767 675.766 Td +(/) +[5.97756 +0] Tj +-426 TJm +(];) +[5.97756 +0 +5.97756 +0] Tj +90 663.811 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(bzerror;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 651.856 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-2130 TJm +(nWritten;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 627.945 Td +(f) +[5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(fopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +("myfile.bz2",) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +("r") +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 615.99 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(!f) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +98.488 604.035 Td +(/) +[5.97756 +0] Tj +104.466 602.291 Td +(*) +[5.97756 +0] Tj +114.687 604.035 Td +(handle) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +188.928 602.291 Td +(*) +[5.97756 +0] Tj +194.906 604.035 Td +(/) +[5.97756 +0] Tj +90 592.08 Td +(}) +[5.97756 +0] Tj +90 580.125 Td +(b) +[5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ2_bzReadOpen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(f,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(0,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 568.169 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +98.488 556.214 Td +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +98.488 544.259 Td +(/) +[5.97756 +0] Tj +104.466 542.516 Td +(*) +[5.97756 +0] Tj +114.687 544.259 Td +(handle) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +188.928 542.516 Td +(*) +[5.97756 +0] Tj +194.906 544.259 Td +(/) +[5.97756 +0] Tj +90 532.304 Td +(}) +[5.97756 +0] Tj +90 508.393 Td +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ_OK;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 496.438 Td +(while) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(==) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(&&) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(/) +[5.97756 +0] Tj +252.948 494.695 Td +(*) +[5.97756 +0] Tj +263.17 496.438 Td +(arbitrary) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(other) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(conditions) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +419.364 494.695 Td +(*) +[5.97756 +0] Tj +425.341 496.438 Td +(/\)) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +98.488 484.483 Td +(nBuf) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(=) +[5.97756 +0] Tj +-426 TJm +(BZ2_bzRead) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(/) +[5.97756 +0] Tj +319.478 482.74 Td +(*) +[5.97756 +0] Tj +329.7 484.483 Td +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +396.23 482.74 Td +(*) +[5.97756 +0] Tj +402.208 484.483 Td +(/) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +98.488 472.528 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(==) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +106.976 460.573 Td +(/) +[5.97756 +0] Tj +112.953 458.829 Td +(*) +[5.97756 +0] Tj +123.175 460.573 Td +(do) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(something) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(buf[0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(..) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(nBuf-1]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +321.989 458.829 Td +(*) +[5.97756 +0] Tj +327.966 460.573 Td +(/) +[5.97756 +0] Tj +98.488 448.618 Td +(}) +[5.97756 +0] Tj +90 436.662 Td +(}) +[5.97756 +0] Tj +90 424.707 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ_STREAM_END) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +102.732 412.752 Td +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +102.732 400.797 Td +(/) +[5.97756 +0] Tj +108.71 399.053 Td +(*) +[5.97756 +0] Tj +118.931 400.797 Td +(handle) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +193.172 399.053 Td +(*) +[5.97756 +0] Tj +199.15 400.797 Td +(/) +[5.97756 +0] Tj +90 388.842 Td +(}) +[5.97756 +0] Tj +-426 TJm +(else) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +({) +[5.97756 +0] Tj +102.732 376.887 Td +(BZ2_bzReadClose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(&bzerror,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 364.931 Td +(}) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 314.637 Td +/F9_0 20.6585 Tf +(3.5.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Utility) +[14.915437 +0 +6.879281 +0 +5.743063 +0 +5.743063 +0 +5.743063 +0 +6.879281 +0 +11.486126 +0] Tj +-278 TJm +(functions) +[6.879281 +0 +12.622344 +0 +12.622344 +0 +11.486126 +0 +6.879281 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0 +11.486126 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 284.016 Td +/F9_0 17.2154 Tf +(3.5.1.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzBuffT) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +10.518609 +0 +5.732728 +0 +5.732728 +0 +10.518609 +0] Tj +80 TJm +(oBuffCompress) +[10.518609 +0 +12.429519 +0 +10.518609 +0 +5.732728 +0 +5.732728 +0 +12.429519 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 183.815] cm +0 0 468 95.641 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 271.087 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzBuffToBuffCompress\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +289.771 269.344 Td +(*) +[5.97756 +0] Tj +333.944 271.087 Td +(dest,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +217.319 259.132 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +287.317 257.389 Td +(*) +[5.97756 +0] Tj +297.538 259.132 Td +(destLen,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +217.319 247.177 Td +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +241.23 245.434 Td +(*) +[5.97756 +0] Tj +285.403 247.177 Td +(source,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +217.319 235.222 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(sourceLen,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +217.319 223.267 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-4686 TJm +(blockSize100k,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +217.319 211.312 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-4686 TJm +(verbosity,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +217.319 199.356 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-4686 TJm +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 161.897 Td +/F15_0 9.9626 Tf +(Attempts) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-442 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-442 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-443 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-442 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-442 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +216.87 161.897 Td +/F17_0 9.9626 Tf +(source[0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(..) +[5.97756 +0 +5.97756 +0] Tj +-1200 TJm +(sourceLen-1]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +370.715 161.897 Td +/F15_0 9.9626 Tf +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-442 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-443 TJm +(dest) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +1 TJm +(ination) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-443 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +486.202 161.897 Td +/F17_0 9.9626 Tf +(dest[0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(..) +[5.97756 +0 +5.97756 +0] Tj +72 148.198 Td +(*) +[5.97756 +0] Tj +77.978 149.942 Td +(destLen-1]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +137.753 149.942 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1393 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-379 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-379 TJm +(destination) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-379 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-378 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-379 TJm +(big) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-379 TJm +(enough,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +318.487 148.198 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +324.464 149.942 Td +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +370.082 149.942 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-379 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-379 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-378 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-379 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-379 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-379 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-379 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-379 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +72 137.986 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +89.527 137.986 Td +/F17_0 9.9626 Tf +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +122.556 137.986 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-315 TJm +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1012 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-315 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-316 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-315 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-315 TJm +(w) +[7.192997 +0] Tj +10 TJm +(on') +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-316 TJm +(\002t,) +[5.539206 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +313.323 136.243 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +319.3 137.986 Td +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +364.285 137.986 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-315 TJm +(unchanged,) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-332 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +440.551 137.986 Td +/F17_0 9.9626 Tf +(BZ_OUTBUFF_FULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +533.355 137.986 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +72 126.031 Td +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 104.113 Td +(Compression) +[6.645054 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-297 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-297 TJm +(manner) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-297 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-297 TJm +(a) +[4.423394 +0] Tj +-297 TJm +(one-shot) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-297 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ent,) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-309 TJm +(done) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-297 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-297 TJm +(a) +[4.423394 +0] Tj +-297 TJm +(single) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-297 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-297 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-297 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-297 TJm +(function.) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-903 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-297 TJm +(resulting) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +72 92.158 Td +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-296 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-296 TJm +(a) +[4.423394 +0] Tj +-296 TJm +(complete) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +147.988 92.158 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +180.825 92.158 Td +/F15_0 9.9626 Tf +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-296 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-296 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-897 TJm +(There) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-296 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-296 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-296 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-296 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-296 TJm +(making) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-296 TJm +(additional) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-296 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-296 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-296 TJm +(pro) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(vide) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-296 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xtra) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +72 80.203 Td +(input) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(data.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-620 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(kind) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(mechanism,) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0 +2.49065 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(lo) +[2.769603 +0 +4.9813 +0] Tj +25 TJm +(w-le) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +-250 TJm +(interf) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +10 TJm +(ace.) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(26) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 27 30 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-223 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-224 TJm +(meaning) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-223 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-224 TJm +(parameters) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +195.306 710.037 Td +/F17_0 9.9626 Tf +(blockSize100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +273.015 710.037 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +277.784 710.037 Td +/F17_0 9.9626 Tf +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +333.808 710.037 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +350.42 710.037 Td +/F17_0 9.9626 Tf +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +410.196 710.037 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-229 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +429.913 710.037 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +537.509 710.037 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 688.12 Td +(T) +[6.087149 +0] Tj +80 TJm +(o) +[4.9813 +0] Tj +-410 TJm +(guarantee) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-410 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-410 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-410 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-410 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-410 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-410 TJm +(\002t) +[5.539206 +0 +2.769603 +0] Tj +-410 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-410 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-410 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-450 TJm +(allocate) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-410 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-410 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-410 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-411 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-410 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-410 TJm +(1%) +[4.9813 +0 +8.298846 +0] Tj +-410 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ger) +[4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-410 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-410 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 676.164 Td +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(plus) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(six) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(hundred) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xtra) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(bytes.) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 654.247 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +230.553 654.247 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-315 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-315 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-314 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-315 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-315 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-315 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(yond) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +362.484 654.247 Td +/F17_0 9.9626 Tf +(dest[) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +392.372 652.503 Td +(*) +[5.97756 +0] Tj +398.349 654.247 Td +(destLen]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +446.17 654.247 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-331 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-315 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-315 TJm +(case) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-314 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-315 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +72 642.291 Td +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er\003o) +[4.423394 +0 +3.317546 +0 +5.539206 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 620.374 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 451.905] cm +0 0 468 167.372 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 610.909 Td +/F17_0 9.9626 Tf +(BZ_CONFIG_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 598.954 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(library) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(mis-compiled) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 586.999 Td +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 575.044 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(dest) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 563.089 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(1) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(blockSize100k) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(9) +[5.97756 +0] Tj +98.488 551.133 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(4) +[5.97756 +0] Tj +98.488 539.178 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(workFactor) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(250) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 527.223 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 515.268 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(insufficient) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 503.313 Td +(BZ_OUTBUFF_FULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 491.357 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(exceeds) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +341.655 489.614 Td +(*) +[5.97756 +0] Tj +347.633 491.357 Td +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 479.402 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 467.447 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 421.284 Td +/F9_0 17.2154 Tf +(3.5.2.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(BZ2_bzBuffT) +[12.429519 +0 +10.518609 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +8.6077 +0 +12.429519 +0 +10.518609 +0 +5.732728 +0 +5.732728 +0 +10.518609 +0] Tj +80 TJm +(oBuffDecompress) +[10.518609 +0 +12.429519 +0 +10.518609 +0 +5.732728 +0 +5.732728 +0 +12.429519 +0 +9.571762 +0 +9.571762 +0 +10.518609 +0 +15.304491 +0 +10.518609 +0 +6.696791 +0 +9.571762 +0 +9.571762 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 333.038] cm +0 0 468 83.686 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 408.356 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzBuffToBuffDecompress\() +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +301.726 406.612 Td +(*) +[5.97756 +0] Tj +345.899 408.356 Td +(dest,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +225.807 396.401 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +295.805 394.657 Td +(*) +[5.97756 +0] Tj +306.026 396.401 Td +(destLen,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +225.807 384.446 Td +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +249.717 382.702 Td +(*) +[5.97756 +0] Tj +293.891 384.446 Td +(source,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +225.807 372.49 Td +(unsigned) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(sourceLen,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +225.807 360.535 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-4686 TJm +(small,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +225.807 348.58 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-4686 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 311.12 Td +/F15_0 9.9626 Tf +(Attempts) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-358 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-359 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-358 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-358 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-359 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +221.259 311.12 Td +/F17_0 9.9626 Tf +(source[0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(..) +[5.97756 +0 +5.97756 +0] Tj +-1200 TJm +(sourceLen-1]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +374.268 311.12 Td +/F15_0 9.9626 Tf +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-358 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-359 TJm +(destination) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-358 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +486.202 311.12 Td +/F17_0 9.9626 Tf +(dest[0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-600 TJm +(..) +[5.97756 +0 +5.97756 +0] Tj +72 297.422 Td +(*) +[5.97756 +0] Tj +77.978 299.165 Td +(destLen-1]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +137.753 299.165 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1123 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-334 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-334 TJm +(destination) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-334 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-334 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-334 TJm +(big) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-334 TJm +(enough,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +312.554 297.422 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +318.531 299.165 Td +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +363.701 299.165 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-334 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +-334 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-334 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-334 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-333 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-334 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-334 TJm +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-334 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +72 287.21 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +89.527 287.21 Td +/F17_0 9.9626 Tf +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +122.556 287.21 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-315 TJm +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1012 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-315 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-316 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-315 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-315 TJm +(w) +[7.192997 +0] Tj +10 TJm +(on') +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-316 TJm +(\002t,) +[5.539206 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +313.323 285.467 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +319.3 287.21 Td +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +364.285 287.21 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-315 TJm +(unchanged,) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-332 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +440.551 287.21 Td +/F17_0 9.9626 Tf +(BZ_OUTBUFF_FULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +533.355 287.21 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +72 275.255 Td +(returned.) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 253.337 Td +/F17_0 9.9626 Tf +(source) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +110.981 253.337 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-313 TJm +(assumed) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-312 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-313 TJm +(hold) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-313 TJm +(a) +[4.423394 +0] Tj +-313 TJm +(complete) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +237.04 253.337 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +270.044 253.337 Td +/F15_0 9.9626 Tf +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-313 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-312 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +353.446 253.337 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +511.978 253.337 Td +/F15_0 9.9626 Tf +(tries) +[2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-313 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 241.382 Td +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(entirety) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(stream) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 219.464 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(meaning) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(parameters) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +196.631 219.464 Td +/F17_0 9.9626 Tf +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +229.01 219.464 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +245.887 219.464 Td +/F17_0 9.9626 Tf +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +299.685 219.464 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +319.879 219.464 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +439.431 219.464 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 197.546 Td +(Because) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-249 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(ratio) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-249 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-249 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-249 TJm +(cannot) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(kno) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-249 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(adv) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ance,) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-249 TJm +(there) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-249 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(easy) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ay) +[4.423394 +0 +4.9813 +0] Tj +-249 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(guarantee) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +72 185.591 Td +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-286 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-287 TJm +(output) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-286 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-287 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-286 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-286 TJm +(big) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-287 TJm +(enough.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-838 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-287 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-286 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-287 TJm +(course) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0] Tj +-286 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-286 TJm +(arrangements) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-287 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-286 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-287 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-286 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-286 TJm +(record) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-287 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-286 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-287 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +72 173.636 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(yond) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(scope) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 151.718 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +230.553 151.718 Td +/F15_0 9.9626 Tf +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-315 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-315 TJm +(write) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-314 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-315 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-315 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-315 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(yond) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +362.484 151.718 Td +/F17_0 9.9626 Tf +(dest[) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +392.372 149.975 Td +(*) +[5.97756 +0] Tj +398.349 151.718 Td +(destLen]) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +446.17 151.718 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-331 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +-315 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-315 TJm +(case) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-314 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-315 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uf) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(fer) +[3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +72 139.763 Td +(o) +[4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er\003o) +[4.423394 +0 +3.317546 +0 +5.539206 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 117.845 Td +(Possible) +[5.539206 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(27) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 28 31 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +420.96 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +498.449 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 75.786 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 492.852] cm +0 0 468 227.148 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 711.631 Td +/F17_0 9.9626 Tf +(BZ_CONFIG_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 699.676 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(library) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(has) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(been) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(mis-compiled) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 687.721 Td +(BZ_PARAM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 675.766 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(dest) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(NULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 663.811 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(&&) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(small) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(!=) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(1) +[5.97756 +0] Tj +98.488 651.856 Td +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(<) +[5.97756 +0] Tj +-426 TJm +(0) +[5.97756 +0] Tj +-426 TJm +(or) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(>) +[5.97756 +0] Tj +-426 TJm +(4) +[5.97756 +0] Tj +90 639.9 Td +(BZ_MEM_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 627.945 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(insufficient) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(memory) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(is) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 615.99 Td +(BZ_OUTBUFF_FULL) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 604.035 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(size) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(exceeds) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +341.655 602.291 Td +(*) +[5.97756 +0] Tj +347.633 604.035 Td +(destLen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 592.08 Td +(BZ_DATA_ERROR) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 580.124 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(a) +[5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(integrity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(was) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(detected) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(in) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 568.169 Td +(BZ_DATA_ERROR_MAGIC) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 556.214 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(doesn't) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(begin) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(right) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(magic) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bytes) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 544.259 Td +(BZ_UNEXPECTED_EOF) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 532.304 Td +(if) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compressed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(ends) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(unexpectedly) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 520.349 Td +(BZ_OK) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 508.393 Td +(otherwise) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 458.099 Td +/F9_0 20.6585 Tf +(3.6.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(zlib) +[10.32925 +0 +5.743063 +0 +5.743063 +0 +12.622344 +0] Tj +-278 TJm +(compatibility) +[11.486126 +0 +12.622344 +0 +18.365407 +0 +12.622344 +0 +11.486126 +0 +6.879281 +0 +5.743063 +0 +12.622344 +0 +5.743063 +0 +5.743063 +0 +5.743063 +0 +6.879281 +0 +11.486126 +0] Tj +-278 TJm +(functions) +[6.879281 +0 +12.622344 +0 +12.622344 +0 +11.486126 +0 +6.879281 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0 +11.486126 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 436.181 Td +/F15_0 9.9626 Tf +(Y) +[7.192997 +0] Tj +110 TJm +(oshioka) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-604 TJm +(Tsuneo) +[6.087149 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-604 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-604 TJm +(contrib) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +20 TJm +(uted) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-604 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-604 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-604 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-604 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-604 TJm +(better) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +356.347 436.181 Td +/F17_0 9.9626 Tf +(zlib) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +386.275 436.181 Td +/F15_0 9.9626 Tf +(compatibility) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-1372 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-604 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-604 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 424.226 Td +/F17_0 9.9626 Tf +(BZ2_bzopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +131.776 424.226 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +144.283 424.226 Td +/F17_0 9.9626 Tf +(BZ2_bzread) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +204.059 424.226 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +216.567 424.226 Td +/F17_0 9.9626 Tf +(BZ2_bzwrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +282.32 424.226 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +294.827 424.226 Td +/F17_0 9.9626 Tf +(BZ2_bzflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +360.581 424.226 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +373.088 424.226 Td +/F17_0 9.9626 Tf +(BZ2_bzclose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +438.842 424.226 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +451.349 424.226 Td +/F17_0 9.9626 Tf +(BZ2_bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +525.614 424.226 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 412.271 Td +/F17_0 9.9626 Tf +(BZ2_bzlibVersion) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +167.641 412.271 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1420 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-383 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-383 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-383 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-383 TJm +(\(yet\)) +[3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-384 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +25 TJm +(\002cially) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-383 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-383 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-383 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-384 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-1419 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-383 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-384 TJm +(break,) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-416 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-383 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-384 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 400.316 Td +(k) +[4.9813 +0] Tj +10 TJm +(eep) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(pieces.) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-620 TJm +(Ne) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ertheless,) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(I) +[3.317546 +0] Tj +-250 TJm +(think) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(ok.) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 349.342] cm +0 0 468 47.821 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 388.794 Td +/F17_0 9.9626 Tf +(typedef) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZFILE;) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 364.884 Td +(const) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +152.286 363.14 Td +(*) +[5.97756 +0] Tj +162.508 364.884 Td +(BZ2_bzlibVersion) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 327.424 Td +/F15_0 9.9626 Tf +(Returns) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(string) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(indicating) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion.) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 288.405] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 315.902 Td +/F17_0 9.9626 Tf +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +130.109 314.159 Td +(*) +[5.97756 +0] Tj +140.331 315.902 Td +(BZ2_bzopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(const) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +281.103 314.159 Td +(*) +[5.97756 +0] Tj +287.08 315.902 Td +(path,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(const) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +383.498 314.159 Td +(*) +[5.97756 +0] Tj +389.476 315.902 Td +(mode) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 303.947 Td +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +130.109 302.204 Td +(*) +[5.97756 +0] Tj +140.331 303.947 Td +(BZ2_bzdopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-3408 TJm +(fd,) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1704 TJm +(const) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +369.629 302.204 Td +(*) +[5.97756 +0] Tj +375.607 303.947 Td +(mode) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 266.488 Td +/F15_0 9.9626 Tf +(Opens) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-243 TJm +(a) +[4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +106.713 266.488 Td +/F17_0 9.9626 Tf +(.bz2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +133.041 266.488 Td +/F15_0 9.9626 Tf +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-243 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-242 TJm +(reading) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-243 TJm +(writing,) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-244 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(either) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-242 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-243 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-243 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-242 TJm +(a) +[4.423394 +0] Tj +-243 TJm +(pre-e) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +15 TJm +(xisting) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-242 TJm +(descriptor) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-615 TJm +(Analogous) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-243 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +510.112 266.488 Td +/F17_0 9.9626 Tf +(fopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 254.532 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +88.877 254.532 Td +/F17_0 9.9626 Tf +(fdopen) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +124.742 254.532 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 216.137] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 243.633 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzread) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +226.528 241.89 Td +(*) +[5.97756 +0] Tj +236.749 243.633 Td +(b,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +276.859 241.89 Td +(*) +[5.97756 +0] Tj +287.08 243.633 Td +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 231.678 Td +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzwrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +228.261 229.935 Td +(*) +[5.97756 +0] Tj +238.483 231.678 Td +(b,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +278.592 229.935 Td +(*) +[5.97756 +0] Tj +288.814 231.678 Td +(buf,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(len) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 194.219 Td +/F15_0 9.9626 Tf +(Reads/writes) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(from/to) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(pre) +[4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +25 TJm +(viously) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(opened) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +259.903 194.219 Td +/F17_0 9.9626 Tf +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +295.769 194.219 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-500 TJm +(Analogous) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +359.141 194.219 Td +/F17_0 9.9626 Tf +(fread) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +391.519 194.219 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +408.396 194.219 Td +/F17_0 9.9626 Tf +(fwrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +444.261 194.219 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 155.2] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 182.697 Td +/F17_0 9.9626 Tf +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(BZ2_bzflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +232.505 180.954 Td +(*) +[5.97756 +0] Tj +242.727 182.697 Td +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +90 170.742 Td +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BZ2_bzclose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +234.239 168.998 Td +(*) +[5.97756 +0] Tj +244.46 170.742 Td +(b) +[5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 133.282 Td +/F15_0 9.9626 Tf +(Flushes/closes) +[5.539206 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +138.968 133.282 Td +/F17_0 9.9626 Tf +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +174.833 133.282 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +179.815 133.282 Td +/F17_0 9.9626 Tf +(BZ2_bzflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +248.059 133.282 Td +/F15_0 9.9626 Tf +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(actually) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(ything.) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-620 TJm +(Analogous) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +425.472 133.282 Td +/F17_0 9.9626 Tf +(fflush) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +463.828 133.282 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +480.705 133.282 Td +/F17_0 9.9626 Tf +(fclose) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +516.57 133.282 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 106.219] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 121.761 Td +/F17_0 9.9626 Tf +(const) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(char) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +152.286 120.017 Td +(*) +[5.97756 +0] Tj +162.508 121.761 Td +(BZ2_bzerror) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(BZFILE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +282.836 120.017 Td +(*) +[5.97756 +0] Tj +288.814 121.761 Td +(b,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +327.19 120.017 Td +(*) +[5.97756 +0] Tj +333.167 121.761 Td +(errnum) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\)) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 84.301 Td +/F15_0 9.9626 Tf +(Returns) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(string) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(describing) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(recent) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(status) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +303.858 84.301 Td +/F17_0 9.9626 Tf +(b) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +309.835 84.301 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-250 TJm +(sets) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +367.668 82.558 Td +/F17_0 9.9626 Tf +(*) +[5.97756 +0] Tj +373.645 84.301 Td +(errnum) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +412.002 84.301 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(numerical) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alue.) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +536.307 50.951 Td +(28) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 29 32 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 704.93 Td +/F9_0 20.6585 Tf +(3.7.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Using) +[14.915437 +0 +11.486126 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0] Tj +-278 TJm +(the) +[6.879281 +0 +12.622344 +0 +11.486126 +0] Tj +-278 TJm +(librar) +[5.743063 +0 +5.743063 +0 +12.622344 +0 +8.036157 +0 +11.486126 +0 +8.036157 +0] Tj +-10 TJm +(y) +[11.486126 +0] Tj +-278 TJm +(in) +[5.743063 +0 +12.622344 +0] Tj +-278 TJm +(a) +[11.486126 +0] Tj +-278 TJm +(stdio-free) +[11.486126 +0 +6.879281 +0 +12.622344 +0 +5.743063 +0 +12.622344 +0 +6.879281 +0 +6.879281 +0 +8.036157 +0 +11.486126 +0 +11.486126 +0] Tj +72 680.139 Td +(en) +[11.486126 +0 +12.622344 +0] Tj +40 TJm +(vir) +[11.486126 +0 +5.743063 +0 +8.036157 +0] Tj +20 TJm +(onment) +[12.622344 +0 +12.622344 +0 +18.365407 +0 +11.486126 +0 +12.622344 +0 +6.879281 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 649.583 Td +/F9_0 17.2154 Tf +(3.7.1.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(Getting) +[13.393581 +0 +9.571762 +0 +5.732728 +0 +5.732728 +0 +4.785881 +0 +10.518609 +0 +10.518609 +0] Tj +-278 TJm +(rid) +[6.696791 +0 +4.785881 +0 +10.518609 +0] Tj +-278 TJm +(of) +[10.518609 +0 +5.732728 +0] Tj +-278 TJm +(stdio) +[9.571762 +0 +5.732728 +0 +10.518609 +0 +4.785881 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 627.73 Td +/F15_0 9.9626 Tf +(In) +[3.317546 +0 +4.9813 +0] Tj +-319 TJm +(a) +[4.423394 +0] Tj +-319 TJm +(deeply) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-319 TJm +(embedded) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-319 TJm +(application,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-336 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-319 TJm +(might) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-319 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-319 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-319 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-319 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-319 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-319 TJm +(memory-to-memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-319 TJm +(functions.) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-1035 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-319 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-319 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-319 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +72 615.775 Td +(con) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(eniently) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-327 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-327 TJm +(compiling) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-327 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-327 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-327 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-328 TJm +(preproces) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +1 TJm +(sor) +[3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +-328 TJm +(symbol) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +336.045 615.775 Td +/F17_0 9.9626 Tf +(BZ_NO_STDIO) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +405.057 615.775 Td +/F15_0 9.9626 Tf +(de\002ned.) +[4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-1083 TJm +(Doing) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-327 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-327 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-327 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-327 TJm +(a) +[4.423394 +0] Tj +72 603.819 Td +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(containing) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(only) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(eight) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(functions:) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 581.966 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +179.597 581.966 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +199.079 581.966 Td +/F17_0 9.9626 Tf +(BZ2_bzCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +282.765 581.966 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +302.247 581.966 Td +/F17_0 9.9626 Tf +(BZ2_bzCompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-1414 TJm +(BZ2_bzDe) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-1 TJm +(compressInit) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +537.509 581.966 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 570.011 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +167.641 570.011 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +172.144 570.011 Td +/F17_0 9.9626 Tf +(BZ2_bzDecompressEnd) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-190 TJm +(BZ2_bzBuffToBuffCompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +431.073 570.011 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +435.577 570.011 Td +/F17_0 9.9626 Tf +(BZ2_bzBuffToBuffDecompress) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 548.158 Td +/F15_0 9.9626 Tf +(When) +[9.404694 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(compiled) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(this,) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(functions) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(ignore) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +272.526 548.158 Td +/F17_0 9.9626 Tf +(verbosity) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +328.815 548.158 Td +/F15_0 9.9626 Tf +(settings.) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 517.601 Td +/F9_0 17.2154 Tf +(3.7.2.) +[9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(Critical) +[12.429519 +0 +6.696791 +0 +4.785881 +0 +5.732728 +0 +4.785881 +0 +9.571762 +0 +9.571762 +0 +4.785881 +0] Tj +-278 TJm +(err) +[9.571762 +0 +6.696791 +0 +6.696791 +0] Tj +20 TJm +(or) +[10.518609 +0 +6.696791 +0] Tj +-278 TJm +(handling) +[10.518609 +0 +9.571762 +0 +10.518609 +0 +10.518609 +0 +4.785881 +0 +4.785881 +0 +10.518609 +0 +10.518609 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 495.748 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +124.529 495.748 Td +/F15_0 9.9626 Tf +(contains) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-473 TJm +(a) +[4.423394 +0] Tj +-472 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-473 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-472 TJm +(internal) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-473 TJm +(assertion) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-472 TJm +(checks) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-473 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-472 TJm +(should,) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-529 TJm +(needless) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-472 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-473 TJm +(say) +[3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-528 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-473 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-472 TJm +(acti) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ated.) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +72 483.793 Td +(Ne) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ertheless,) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +-533 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-476 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-476 TJm +(assertion) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-476 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-476 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ail,) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-532 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(viour) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-476 TJm +(depends) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-476 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-476 TJm +(whether) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-476 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-477 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-476 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-476 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-476 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-476 TJm +(compiled) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-476 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 471.838 Td +/F17_0 9.9626 Tf +(BZ_NO_STDIO) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +140.244 471.838 Td +/F15_0 9.9626 Tf +(set.) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 449.985 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(normal) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(compile,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-250 TJm +(assertion) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ailure) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(yields) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(message:) +[7.750903 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 428.131 Td +(bzip2/libbzip2:) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-310 TJm +(internal) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(N.) +[7.192997 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 406.278 Td +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-357 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-358 TJm +(a) +[4.423394 +0] Tj +-357 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-357 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-358 TJm +(bzip2/libbzip2,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-384 TJm +(1.0.8) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-357 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-357 TJm +(13) +[4.9813 +0 +4.9813 +0] Tj +-358 TJm +(July) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-357 TJm +(2019.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-632 TJm +(Please) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-357 TJm +(report) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-358 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-357 TJm +(to:) +[2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-524 TJm +(bzip2-de) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(el@source) +[4.423394 +0 +2.769603 +0 +9.175555 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(are.or) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(g.) +[4.9813 +0 +2.49065 +0] Tj +-1264 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-358 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +72 394.323 Td +(happened) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-297 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-298 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(were) +[7.192997 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-297 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-298 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-297 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-297 TJm +(uses) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-297 TJm +(libbzip2) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-298 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-297 TJm +(a) +[4.423394 +0] Tj +-297 TJm +(component,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-309 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-298 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-297 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-297 TJm +(report) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-297 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-298 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +72 382.368 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-264 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-264 TJm +(author\(s\)) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +3.875451 +0 +3.317546 +0] Tj +-264 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-264 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-264 TJm +(program.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-703 TJm +(Please) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-264 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-264 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-264 TJm +(ef) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(fort) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-264 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-264 TJm +(report) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-263 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-264 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug;) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-271 TJm +(timely) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-264 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-264 TJm +(accurate) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-264 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-264 TJm +(reports) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0] Tj +-264 TJm +(e) +[4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(entually) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +72 370.413 Td +(lead) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(higher) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(quality) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(softw) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +10 TJm +(are.) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-620 TJm +(Thanks.) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 338.758 Td +(where) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +98.831 338.758 Td +/F17_0 9.9626 Tf +(N) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +107.301 338.758 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-251 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-621 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +230.81 338.758 Td +/F17_0 9.9626 Tf +(N) +[5.97756 +0] Tj +-600 TJm +(==) +[5.97756 +0 +5.97756 +0] Tj +-600 TJm +(1007) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +284.608 338.758 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +-251 TJm +(prints) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xtra) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(te) +[2.769603 +0 +4.423394 +0] Tj +15 TJm +(xt) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(advising) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(reader) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(unreliable) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +72 326.803 Td +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-425 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-424 TJm +(often) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-425 TJm +(associated) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-425 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-424 TJm +(internal) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-425 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-424 TJm +(1007.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-834 TJm +(\(This) +[3.317546 +0 +6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-425 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-425 TJm +(a) +[4.423394 +0] Tj +-424 TJm +(frequently-observ) +[3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(ed-phenomenon) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-425 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-425 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +72 314.848 Td +(1.0.0/1.0.1\).) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 292.995 Td +/F17_0 9.9626 Tf +(exit\(3\)) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +116.334 292.995 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(then) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(called.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 271.142 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +95.093 271.142 Td +/F17_0 9.9626 Tf +(stdio) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +124.981 271.142 Td +/F15_0 9.9626 Tf +(-free) +[3.317546 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(assertion) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ailures) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(result) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(call) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(function) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(declared) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(as:) +[4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 244.078] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 259.62 Td +/F17_0 9.9626 Tf +(extern) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(void) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bz_internal_error) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\() +[5.97756 +0] Tj +-426 TJm +(int) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(errcode) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\);) +[5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 222.225 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(rele) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(passed) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(parameter) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-620 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(supply) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(function.) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 200.372 Td +(In) +[3.317546 +0 +4.9813 +0] Tj +-294 TJm +(either) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-294 TJm +(case,) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-306 TJm +(once) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-294 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-294 TJm +(assertion) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-294 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ailure) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-294 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-295 TJm +(occurred,) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-305 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +306.541 200.372 Td +/F17_0 9.9626 Tf +(bz_stream) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +363.271 200.372 Td +/F15_0 9.9626 Tf +(records) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0] Tj +-294 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +20 TJm +(olv) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +15 TJm +(ed) +[4.423394 +0 +4.9813 +0] Tj +-294 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-295 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-294 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +5 TJm +(arded) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-294 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-294 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alid.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +72 188.417 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(attempt) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(resume) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(normal) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(operation) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(them.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 166.564 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-299 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-310 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-299 TJm +(course,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-311 TJm +(change) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-298 TJm +(critical) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-299 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-298 TJm +(handling) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-299 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-298 TJm +(suit) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-299 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-298 TJm +(needs.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-912 TJm +(As) +[7.192997 +0 +3.875451 +0] Tj +-298 TJm +(I) +[3.317546 +0] Tj +-299 TJm +(said) +[3.875451 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-298 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e,) +[4.423394 +0 +2.49065 +0] Tj +-311 TJm +(critical) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-299 TJm +(errors) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-298 TJm +(indicate) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-299 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ugs) +[4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +72 154.609 Td +(in) +[2.769603 +0 +4.9813 +0] Tj +-263 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-263 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-263 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-263 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-263 TJm +(occur) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-697 TJm +(All) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +-263 TJm +("normal") +[4.064741 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.064741 +0] Tj +-263 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-263 TJm +(situations) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-263 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-263 TJm +(indicated) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-263 TJm +(via) +[4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-263 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-263 TJm +(return) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-263 TJm +(codes) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-263 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-263 TJm +(functions,) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +72 142.653 Td +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(reco) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ered) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(from.) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 107.965 Td +/F9_0 20.6585 Tf +(3.8.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Making) +[17.208531 +0 +11.486126 +0 +11.486126 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0] Tj +-278 TJm +(a) +[11.486126 +0] Tj +-278 TJm +(Windo) +[19.501624 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0 +12.622344 +0] Tj +15 TJm +(ws) +[16.072313 +0 +11.486126 +0] Tj +-278 TJm +(DLL) +[14.915437 +0 +12.622344 +0 +12.622344 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 86.112 Td +/F15_0 9.9626 Tf +(Ev) +[6.087149 +0 +4.9813 +0] Tj +15 TJm +(erything) +[4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-328 TJm +(related) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-327 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-328 TJm +(W) +[9.404694 +0] Tj +40 TJm +(indo) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(ws) +[7.192997 +0 +3.875451 +0] Tj +-328 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-327 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-328 TJm +(contrib) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +20 TJm +(uted) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-328 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-327 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(oshioka) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-328 TJm +(Tsuneo) +[6.087149 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-328 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +378.139 86.112 Td +/F17_0 9.9626 Tf +(tsuneo@rr.iij4u.or.jp) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +503.668 86.112 Td +/F15_0 9.9626 Tf +(\),) +[3.317546 +0 +2.49065 +0] Tj +-347 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-328 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +72 74.157 Td +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(send) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(queries) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(him) +[4.9813 +0 +2.769603 +0 +7.750903 +0] Tj +-250 TJm +(\(b) +[3.317546 +0 +4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(please) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(Cc:) +[6.645054 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +264.715 74.157 Td +/F17_0 9.9626 Tf +(bzip2-devel@sourceware.org) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +420.133 74.157 Td +/F15_0 9.9626 Tf +(\).) +[3.317546 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 51.071 Td +(29) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 30 33 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +419.067 749.245 Td +/F15_0 9.9626 Tf +(Programming) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.556 749.245 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(My) +[8.856751 +0 +4.9813 +0] Tj +-367 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ague) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-367 TJm +(understanding) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-367 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-367 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-368 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-367 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-367 TJm +(is:) +[2.769603 +0 +3.875451 +0 +2.769603 +0] Tj +-544 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-367 TJm +(V) +[7.192997 +0] Tj +60 TJm +(isual) +[2.769603 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-367 TJm +(C++) +[6.645054 +0 +5.618906 +0 +5.618906 +0] Tj +-367 TJm +(5.0,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-397 TJm +(open) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-367 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-367 TJm +(project) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-367 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +432.966 710.037 Td +/F17_0 9.9626 Tf +(libbz2.dsp) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +492.742 710.037 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-396 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-368 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uild.) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +72 698.082 Td +(That') +[6.087149 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-250 TJm +(all.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 676.164 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-284 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-284 TJm +(can') +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-285 TJm +(open) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-284 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-284 TJm +(project) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-284 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-284 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-285 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-284 TJm +(reason,) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-293 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-284 TJm +(a) +[4.423394 +0] Tj +-284 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-284 TJm +(one,) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-293 TJm +(naming) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-284 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-284 TJm +(\002les:) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +424.505 676.164 Td +/F17_0 9.9626 Tf +(blocksort.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +490.259 676.164 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +495.666 676.164 Td +/F17_0 9.9626 Tf +(bzlib.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +537.509 676.164 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 664.209 Td +/F17_0 9.9626 Tf +(compress.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +131.776 664.209 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +136.436 664.209 Td +/F17_0 9.9626 Tf +(crctable.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +196.211 664.209 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +200.871 664.209 Td +/F17_0 9.9626 Tf +(decompress.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +272.602 664.209 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +277.262 664.209 Td +/F17_0 9.9626 Tf +(huffman.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +331.06 664.209 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +335.72 664.209 Td +/F17_0 9.9626 Tf +(randtable.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +403.562 664.209 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +420.037 664.209 Td +/F17_0 9.9626 Tf +(libbz2.def) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +479.812 664.209 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-593 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-210 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-209 TJm +(also) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +72 652.254 Td +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(name) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(header) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +190.415 652.254 Td +/F17_0 9.9626 Tf +(bzlib.h) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +234.749 652.254 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +251.625 652.254 Td +/F17_0 9.9626 Tf +(bzlib_private.h) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +341.289 652.254 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 630.336 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(don') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(VC++,) +[7.192997 +0 +6.645054 +0 +5.618906 +0 +5.618906 +0 +2.49065 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(de\002ne) +[4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(proprocessor) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(symbol) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +363.634 630.336 Td +/F17_0 9.9626 Tf +(_WIN32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +399.5 630.336 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 608.418 Td +(Finally) +[5.539206 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.568 608.418 Td +/F17_0 9.9626 Tf +(dlltest.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +160.856 608.418 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(sample) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(DLL.) +[7.192997 +0 +6.087149 +0 +6.087149 +0 +2.49065 +0] Tj +-500 TJm +(It) +[3.317546 +0 +2.769603 +0] Tj +-250 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(project) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(\002le,) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +388.58 608.418 Td +/F17_0 9.9626 Tf +(dlltest.dsp) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +454.334 608.418 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 586.501 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e\002le) +[4.423394 +0 +5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(V) +[7.192997 +0] Tj +60 TJm +(isual) +[2.769603 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(C,) +[6.645054 +0 +2.49065 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(look) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +292.212 586.501 Td +/F17_0 9.9626 Tf +(makefile.msc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +363.943 586.501 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 564.583 Td +(Be) +[6.645054 +0 +4.423394 +0] Tj +-291 TJm +(a) +[4.423394 +0] Tj +15 TJm +(w) +[7.192997 +0] Tj +10 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-291 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-291 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-291 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-291 TJm +(compile) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +192.07 564.583 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +224.857 564.583 Td +/F15_0 9.9626 Tf +(itself) +[2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-291 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-291 TJm +(W) +[9.404694 +0] Tj +40 TJm +(in32,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-301 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-291 TJm +(must) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-291 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +346.842 564.583 Td +/F17_0 9.9626 Tf +(BZ_UNIX) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +391.584 564.583 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-291 TJm +(0) +[4.9813 +0] Tj +-291 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +427.4 564.583 Td +/F17_0 9.9626 Tf +(BZ_LCCWIN32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +496.052 564.583 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-291 TJm +(1,) +[4.9813 +0 +2.49065 +0] Tj +-301 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-291 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +72 552.628 Td +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +87.223 552.628 Td +/F17_0 9.9626 Tf +(bzip2.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +129.066 552.628 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(compiling.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Otherwise) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +7.192997 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(resulting) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(binary) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(on') +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 530.71 Td +(I) +[3.317546 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en') +[4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(tried) +[2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(stuf) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(f) +[3.317546 +0] Tj +-250 TJm +(myself,) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(looks) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(plausible.) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(30) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 31 34 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 701.916 Td +/F9_0 24.7902 Tf +(4.) +[13.783351 +0 +6.891676 +0] Tj +-278 TJm +(Miscellanea) +[20.650237 +0 +6.891676 +0 +13.783351 +0 +13.783351 +0 +13.783351 +0 +6.891676 +0 +6.891676 +0 +13.783351 +0 +15.146812 +0 +13.783351 +0 +13.783351 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 656.35 Td +/F9_0 17.2154 Tf +(T) +[10.518609 +0] Tj +80 TJm +(ab) +[9.571762 +0 +10.518609 +0] Tj +10 TJm +(le) +[4.785881 +0 +9.571762 +0] Tj +-278 TJm +(of) +[10.518609 +0 +5.732728 +0] Tj +-278 TJm +(Contents) +[12.429519 +0 +10.518609 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0 +10.518609 +0 +5.732728 +0 +9.571762 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 635.788 Td +/F15_0 9.9626 Tf +(4.1.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Limitations) +[6.087149 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +267.908 635.788 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 635.788 Td +/F15_0 9.9626 Tf +(31) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 623.832 Td +(4.2.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Portability) +[5.539206 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(issues) +[2.769603 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +170.784 623.832 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 623.832 Td +/F15_0 9.9626 Tf +(32) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 611.877 Td +(4.3.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Reporting) +[6.645054 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ugs) +[4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +162.656 611.877 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 611.877 Td +/F15_0 9.9626 Tf +(32) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 599.922 Td +(4.4.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Did) +[7.192997 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(right) +[3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(package?) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +227.565 599.922 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 599.922 Td +/F15_0 9.9626 Tf +(33) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 587.967 Td +(4.5.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Further) +[5.539206 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(Reading) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +166.902 587.967 Td +/F123_0 9.9626 Tf +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-167 TJm +(:) +[2.76761 +0] Tj +-166 TJm +(:) +[2.76761 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +506.127 587.967 Td +/F15_0 9.9626 Tf +(34) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 556.086 Td +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(random) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(thoughts) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(mine.) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-620 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(our) +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(mileage) +[7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ary) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 521.334 Td +/F9_0 20.6585 Tf +(4.1.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Limitations) +[12.622344 +0 +5.743063 +0 +18.365407 +0 +5.743063 +0 +6.879281 +0 +11.486126 +0 +6.879281 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0 +11.486126 +0] Tj +-278 TJm +(of) +[12.622344 +0 +6.879281 +0] Tj +-278 TJm +(the) +[6.879281 +0 +12.622344 +0 +11.486126 +0] Tj +-278 TJm +(compressed) +[11.486126 +0 +12.622344 +0 +18.365407 +0 +12.622344 +0 +8.036157 +0 +11.486126 +0 +11.486126 +0 +11.486126 +0 +11.486126 +0 +12.622344 +0] Tj +-278 TJm +(\002le) +[12.622344 +0 +5.743063 +0 +11.486126 +0] Tj +-278 TJm +(f) +[6.879281 +0] Tj +20 TJm +(ormat) +[12.622344 +0 +8.036157 +0 +18.365407 +0 +11.486126 +0 +6.879281 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 499.416 Td +/F17_0 9.9626 Tf +(bzip2-1.0.X) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +137.753 499.416 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +143.405 499.416 Td +/F17_0 9.9626 Tf +(0.9.5) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +176.453 499.416 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +194 499.416 Td +/F17_0 9.9626 Tf +(0.9.0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +227.048 499.416 Td +/F15_0 9.9626 Tf +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-317 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xactly) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-318 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-317 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-317 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-317 TJm +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-317 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-318 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-317 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-317 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion,) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +455.801 499.416 Td +/F17_0 9.9626 Tf +(bzip2-0.1) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +509.599 499.416 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1024 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +72 487.461 Td +(decision) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-222 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-222 TJm +(made) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-222 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-221 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-222 TJm +(interests) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-222 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-222 TJm +(stability) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-601 TJm +(Creating) +[6.645054 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-222 TJm +(yet) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-222 TJm +(another) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-222 TJm +(incompatible) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-221 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-222 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-222 TJm +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-222 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-222 TJm +(create) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +72 475.505 Td +(further) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(confusion) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(disruption) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(users.) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 453.588 Td +(Ne) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ertheless,) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +-234 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-229 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-230 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-229 TJm +(a) +[4.423394 +0] Tj +-230 TJm +(painless) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-229 TJm +(decision.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-606 TJm +(De) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(elopment) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-230 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-230 TJm +(sinc) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +1 TJm +(e) +[4.423394 +0] Tj +-230 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-230 TJm +(release) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-229 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +407.317 453.588 Td +/F17_0 9.9626 Tf +(bzip2-0.1) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +463.402 453.588 Td +/F15_0 9.9626 Tf +(in) +[2.769603 +0 +4.9813 +0] Tj +-230 TJm +(August) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-229 TJm +(1997) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-230 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +72 441.632 Td +(sho) +[3.875451 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-226 TJm +(comple) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(xities) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-226 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-225 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-226 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-226 TJm +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-226 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-226 TJm +(slo) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-225 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-226 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-226 TJm +(and,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-231 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-226 TJm +(retrospect,) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-230 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-226 TJm +(unnecessary) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-604 TJm +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-226 TJm +(are:) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 409.752 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-287 TJm +(run-length) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-287 TJm +(encoder) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-297 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-287 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-288 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-287 TJm +(\002rst) +[5.539206 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-287 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-287 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-288 TJm +(compression) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-287 TJm +(transformations,) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-296 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-288 TJm +(entirely) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-287 TJm +(irrele) +[2.769603 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ant.) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-843 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-288 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +81.963 397.797 Td +(purpose) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-322 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-322 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-322 TJm +(protect) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-321 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-322 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-322 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-322 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-322 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-322 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orst) +[4.9813 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-321 TJm +(case) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-322 TJm +(input:) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-454 TJm +(a) +[4.423394 +0] Tj +-322 TJm +(string) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-322 TJm +(repeated) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-321 TJm +(symbols.) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-1052 TJm +(But) +[6.645054 +0 +4.9813 +0 +2.769603 +0] Tj +81.963 385.842 Td +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-229 TJm +(steps) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-230 TJm +(Q6a) +[7.192997 +0 +4.9813 +0 +4.423394 +0] Tj +-229 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-230 TJm +(Q6b) +[7.192997 +0 +4.9813 +0 +4.9813 +0] Tj +-229 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-230 TJm +(t) +[2.769603 +0] Tj +1 TJm +(he) +[4.9813 +0 +4.423394 +0] Tj +-230 TJm +(original) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-229 TJm +(Burro) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0] Tj +25 TJm +(ws-Wheeler) +[7.192997 +0 +3.875451 +0 +3.317546 +0 +9.404694 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-230 TJm +(technical) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-229 TJm +(report) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-230 TJm +(\(SRC-124\)) +[3.317546 +0 +5.539206 +0 +6.645054 +0 +6.645054 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-229 TJm +(sho) +[3.875451 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-229 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-230 TJm +(repeats) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-229 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-230 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +81.963 373.886 Td +(handled) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(without) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(\002culty) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(sorting.) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 351.969 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-315 TJm +(randomisation) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-314 TJm +(mechanism) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-315 TJm +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-314 TJm +(really) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-315 TJm +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-315 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-314 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-315 TJm +(there.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-1007 TJm +(Udi) +[7.192997 +0 +4.9813 +0 +2.769603 +0] Tj +-315 TJm +(Manber) +[8.856751 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-315 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-314 TJm +(Gene) +[7.192997 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-315 TJm +(Myers) +[8.856751 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-314 TJm +(published) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-315 TJm +(a) +[4.423394 +0] Tj +-315 TJm +(suf) +[3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(\002x) +[5.539206 +0 +4.9813 +0] Tj +81.963 340.013 Td +(array) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(construction) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-266 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-266 TJm +(a) +[4.423394 +0] Tj +-266 TJm +(fe) +[3.317546 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-266 TJm +(years) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-266 TJm +(back,) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-269 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-266 TJm +(emplo) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(yed) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-266 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-266 TJm +(sort) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-266 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-266 TJm +(block,) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-270 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-266 TJm +(matter) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-266 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-266 TJm +(repetiti) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e,) +[4.423394 +0 +2.49065 +0] Tj +81.963 328.058 Td +(in) +[2.769603 +0 +4.9813 +0] Tj +-257 TJm +(O\(N) +[7.192997 +0 +3.317546 +0 +7.192997 +0] Tj +-257 TJm +(log) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-257 TJm +(N\)) +[7.192997 +0 +3.317546 +0] Tj +-258 TJm +(time.) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +-663 TJm +(Subsequent) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-257 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-257 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-257 TJm +(K) +[7.192997 +0] Tj +15 TJm +(unihik) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(o) +[4.9813 +0] Tj +-257 TJm +(Sadakane) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-258 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-257 TJm +(produced) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-257 TJm +(a) +[4.423394 +0] Tj +-257 TJm +(deri) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ati) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-257 TJm +(O\(N) +[7.192997 +0 +3.317546 +0 +7.192997 +0] Tj +-257 TJm +(\(log) +[3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-258 TJm +(N\)^2\)) +[7.192997 +0 +3.317546 +0 +4.672459 +0 +4.9813 +0 +3.317546 +0] Tj +-257 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +81.963 316.103 Td +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(usually) +[4.9813 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(outperforms) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(Manber) +[8.856751 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-Myers) +[3.317546 +0 +8.856751 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-250 TJm +(algorithm.) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 294.185 Td +(I) +[3.317546 +0] Tj +-274 TJm +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-274 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-274 TJm +(changed) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-274 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-274 TJm +(Sadakane') +[5.539206 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-274 TJm +(algorithm,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-280 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-274 TJm +(I) +[3.317546 +0] Tj +-274 TJm +(\002nd) +[5.539206 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-274 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-274 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-274 TJm +(slo) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wer) +[7.192997 +0 +4.423394 +0 +3.317546 +0] Tj +-274 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +391.407 294.185 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +421.295 294.185 Td +/F15_0 9.9626 Tf +(') +[3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-274 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xisting) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-274 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-274 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +81.963 282.23 Td +(inputs,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-399 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-369 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-369 TJm +(randomisation) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-370 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +1 TJm +(chanism) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +7.750903 +0] Tj +-370 TJm +(protects) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-369 TJm +(adequately) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-369 TJm +(ag) +[4.423394 +0 +4.9813 +0] Tj +5 TJm +(ainst) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-369 TJm +(bad) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-369 TJm +(cases.) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-1336 TJm +(I) +[3.317546 +0] Tj +-369 TJm +(didn') +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-369 TJm +(think) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-369 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-369 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-369 TJm +(a) +[4.423394 +0] Tj +-370 TJm +(good) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +81.963 270.275 Td +(tradeof) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(f) +[3.317546 +0] Tj +-282 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-283 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e.) +[4.423394 +0 +2.49065 +0] Tj +-815 TJm +(P) +[5.539206 +0] Tj +15 TJm +(artly) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-282 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-282 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-283 TJm +(due) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-282 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-283 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-282 TJm +(f) +[3.317546 +0] Tj +10 TJm +(act) +[4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-283 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-282 TJm +(I) +[3.317546 +0] Tj +-283 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-282 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-282 TJm +(\003ooded) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-283 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-282 TJm +(email) +[4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-283 TJm +(complaints) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-282 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +479.557 270.275 Td +/F17_0 9.9626 Tf +(bzip2-0.1) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +533.355 270.275 Td +/F15_0 9.9626 Tf +(') +[3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +81.963 258.32 Td +(performance) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(repetiti) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(data,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-250 TJm +(perhaps) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(isn') +[2.769603 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(problem) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(real) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(inputs.) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 236.402 Td +(Probably) +[5.539206 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-314 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-315 TJm +(best) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0] Tj +-314 TJm +(long-term) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +7.750903 +0] Tj +-314 TJm +(solution,) +[3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-331 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-314 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-314 TJm +(one) +[4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-315 TJm +(I) +[3.317546 +0] Tj +-314 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-314 TJm +(incorporated) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-315 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-314 TJm +(0.9.5) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-314 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-315 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e,) +[4.423394 +0 +2.49065 +0] Tj +-330 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-315 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-314 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-314 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-315 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xisting) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +81.963 224.447 Td +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-206 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-206 TJm +(initially) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-215 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-207 TJm +(f) +[3.317546 +0] Tj +10 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-206 TJm +(back) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-206 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-206 TJm +(a) +[4.423394 +0] Tj +-207 TJm +(O\(N) +[7.192997 +0 +3.317546 +0 +7.192997 +0] Tj +-206 TJm +(\(log) +[3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-206 TJm +(N\)^2\)) +[7.192997 +0 +3.317546 +0 +4.672459 +0 +4.9813 +0 +3.317546 +0] Tj +-206 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-206 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-207 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-206 TJm +(standard) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-206 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-206 TJm +(gets) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-206 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-207 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(\002culties.) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 202.529 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-321 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-322 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-321 TJm +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-321 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-322 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-321 TJm +(designed) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-321 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-322 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-321 TJm +(handled) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-321 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-322 TJm +(a) +[4.423394 +0] Tj +-321 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-339 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(I) +[3.317546 +0] Tj +-321 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-321 TJm +(had) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-322 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-321 TJm +(jump) +[2.769603 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0] Tj +-321 TJm +(though) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +81.963 190.574 Td +(hoops) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-299 TJm +(t) +[2.769603 +0] Tj +1 TJm +(o) +[4.9813 +0] Tj +-299 TJm +(produce) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-299 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-298 TJm +(ef) +[4.423394 +0 +3.317546 +0] Tj +25 TJm +(\002cient) +[5.539206 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-299 TJm +(implementation) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-298 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-299 TJm +(decompression.) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-911 TJm +(It') +[3.317546 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-298 TJm +(a) +[4.423394 +0] Tj +-299 TJm +(bit) +[4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-298 TJm +(hairy) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-912 TJm +(T) +[6.087149 +0] Tj +35 TJm +(ry) +[3.317546 +0 +4.9813 +0] Tj +-298 TJm +(passing) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +468.269 190.574 Td +/F17_0 9.9626 Tf +(decompress.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 178.619 Td +/F15_0 9.9626 Tf +(through) +[2.769603 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-289 TJm +(C) +[6.645054 +0] Tj +-289 TJm +(preprocessor) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +-289 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-289 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +10 TJm +(ll) +[2.769603 +0 +2.769603 +0] Tj +-289 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +-289 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-289 TJm +(I) +[3.317546 +0] Tj +-289 TJm +(mean.) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-854 TJm +(Much) +[8.856751 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-289 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-289 TJm +(comple) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(xity) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-289 TJm +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-289 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-289 TJm +(been) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +20 TJm +(oided) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-289 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-289 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +81.963 166.663 Td +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(size) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(each) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(block) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(recorded) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(stream.) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 144.746 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(An) +[7.192997 +0 +4.9813 +0] Tj +-250 TJm +(Adler) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-32) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(checksum,) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-250 TJm +(rather) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(CRC32) +[6.645054 +0 +6.645054 +0 +6.645054 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(checksum,) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(aster) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(compute.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 122.828 Td +(It) +[3.317546 +0 +2.769603 +0] Tj +-349 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-349 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-349 TJm +(f) +[3.317546 +0] Tj +10 TJm +(air) +[4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-348 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-349 TJm +(say) +[3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-349 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-349 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +201.979 122.828 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +235.342 122.828 Td +/F15_0 9.9626 Tf +(format) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-349 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-349 TJm +(frozen) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-348 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-349 TJm +(I) +[3.317546 +0] Tj +-349 TJm +(properly) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-349 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-349 TJm +(fully) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-349 TJm +(understood) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-348 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-349 TJm +(performance) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +72 110.873 Td +(consequences) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(doing) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(so.) +[3.875451 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 88.955 Td +(Impro) +[3.317546 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ements) +[4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(I) +[3.317546 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-250 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(incorporate) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(0.9.0,) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(despite) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(format,) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(are:) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(31) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 32 35 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F15_0 9.9626 Tf +(Miscellanea) +[8.856751 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +74.491 710.037 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(Single) +[5.539206 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-234 TJm +(array) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-234 TJm +(implementation) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-235 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-234 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-234 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erse) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0] Tj +-234 TJm +(BWT) +[6.645054 +0 +9.404694 +0 +6.087149 +0] Tj +74 TJm +(.) +[2.49065 +0] Tj +-469 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-234 TJm +(signi\002cantly) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-235 TJm +(speeds) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-234 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-234 TJm +(decompression,) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-237 TJm +(presumably) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-235 TJm +(because) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +81.963 698.082 Td +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(reduces) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(number) +[4.9813 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(cache) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(misses.) +[7.750903 +0 +2.769603 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 676.164 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(F) +[5.539206 +0] Tj +15 TJm +(aster) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-338 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(erse) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +4.423394 +0] Tj +-338 TJm +(MTF) +[8.856751 +0 +6.087149 +0 +5.539206 +0] Tj +-338 TJm +(transform) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0] Tj +-338 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-339 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +-338 TJm +(MTF) +[8.856751 +0 +6.087149 +0 +5.539206 +0] Tj +-338 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues.) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-574 TJm +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-338 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-339 TJm +(implementation) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-338 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-338 TJm +(based) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-338 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-338 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-338 TJm +(notion) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-339 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-338 TJm +(sliding) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +81.963 664.209 Td +(blocks) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +25 TJm +(alues.) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 642.291 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +82.461 642.291 Td +/F17_0 9.9626 Tf +(bzip2-0.9.0) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +151.137 642.291 Td +/F15_0 9.9626 Tf +(no) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-293 TJm +(reads) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-294 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-293 TJm +(writes) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-293 TJm +(\002les) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-294 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +279.657 642.291 Td +/F17_0 9.9626 Tf +(fread) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +312.467 642.291 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +329.776 642.291 Td +/F17_0 9.9626 Tf +(fwrite) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +365.642 642.291 Td +/F15_0 9.9626 Tf +(;) +[2.769603 +0] Tj +-315 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-293 TJm +(0.1) +[4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-294 TJm +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +440.214 642.291 Td +/F17_0 9.9626 Tf +(putc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +467.047 642.291 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +484.356 642.291 Td +/F17_0 9.9626 Tf +(getc) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +508.266 642.291 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-880 TJm +(Duh!) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +81.963 630.336 Td +(W) +[9.404694 +0] Tj +80 TJm +(ell,) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(li) +[2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(learn.) +[2.769603 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 608.418 Td +(Further) +[5.539206 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-304 TJm +(ahead,) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-318 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-305 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ould) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-304 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-305 TJm +(nice) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-304 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-305 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-304 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-304 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-305 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-304 TJm +(random) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0] Tj +-305 TJm +(access) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-304 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-305 TJm +(\002les.) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-946 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-305 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-304 TJm +(require) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0] Tj +-304 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-305 TJm +(careful) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-304 TJm +(design) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-305 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +72 596.463 Td +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(formats.) +[3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 561.71 Td +/F9_0 20.6585 Tf +(4.2.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(P) +[13.77922 +0] Tj +40 TJm +(or) +[12.622344 +0 +8.036157 +0] Tj +-20 TJm +(tability) +[6.879281 +0 +11.486126 +0 +12.622344 +0 +5.743063 +0 +5.743063 +0 +5.743063 +0 +6.879281 +0 +11.486126 +0] Tj +-278 TJm +(issues) +[5.743063 +0 +11.486126 +0 +11.486126 +0 +12.622344 +0 +11.486126 +0 +11.486126 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 539.792 Td +/F15_0 9.9626 Tf +(After) +[7.192997 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(consideration,) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(I) +[3.317546 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(decided) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +303.231 539.792 Td +/F17_0 9.9626 Tf +(autoconf) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +353.542 539.792 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(con\002gure) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +5.539206 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(0.9.5) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(1.0.) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 517.875 Td +/F17_0 9.9626 Tf +(autoconf) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +119.821 517.875 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-502 TJm +(admirable) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-452 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-452 TJm +(w) +[7.192997 +0] Tj +10 TJm +(onderful) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0] Tj +-452 TJm +(though) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-452 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-452 TJm +(is,) +[2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-502 TJm +(mainly) +[7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-452 TJm +(assists) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-452 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-452 TJm +(portability) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-452 TJm +(problems) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-452 TJm +(between) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-452 TJm +(Unix-lik) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +72 505.92 Td +(platforms.) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-1398 TJm +(But) +[6.645054 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +144.784 505.92 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +178.455 505.92 Td +/F15_0 9.9626 Tf +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-380 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-379 TJm +(much) +[7.750903 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-380 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-379 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ay) +[4.423394 +0 +4.9813 +0] Tj +-380 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-380 TJm +(portability) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-379 TJm +(problems) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-380 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-380 TJm +(Unix;) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0] Tj +-444 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-380 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-380 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-379 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(\002culties) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +72 493.964 Td +(appear) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0] Tj +-297 TJm +(when) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-296 TJm +(p) +[4.9813 +0] Tj +-1 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +1 TJm +(ting) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-297 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-297 TJm +(Mac,) +[8.856751 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-308 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-297 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-297 TJm +(Microsoft') +[8.856751 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-296 TJm +(operating) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-297 TJm +(systems.) +[3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +361.339 493.964 Td +/F17_0 9.9626 Tf +(autoconf) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +412.116 493.964 Td +/F15_0 9.9626 Tf +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-297 TJm +(help) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-297 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-296 TJm +(those) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-297 TJm +(cases,) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-308 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +72 482.009 Td +(brings) +[4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(whole) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(load) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-250 TJm +(comple) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +15 TJm +(xity) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 460.091 Td +(Most) +[8.856751 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-392 TJm +(people) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-392 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-393 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-392 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-392 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-392 TJm +(compile) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-393 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-392 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-392 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-392 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-393 TJm +(under) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-392 TJm +(Unix) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-392 TJm +(straight) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-392 TJm +(out-of-the-box,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-428 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-392 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-393 TJm +(speak,) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +72 448.136 Td +(especially) +[4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +-250 TJm +(C) +[6.645054 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 426.218 Td +(There) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-259 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-258 TJm +(a) +[4.423394 +0] Tj +-259 TJm +(couple) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +159.561 426.218 Td +/F17_0 9.9626 Tf +(__inline__) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +221.913 426.218 Td +/F15_0 9.9626 Tf +(directi) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-259 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-258 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-259 TJm +(code.) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-671 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +-259 TJm +(C) +[6.645054 +0] Tj +-258 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +352.587 426.218 Td +/F17_0 9.9626 Tf +(gcc) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +370.52 426.218 Td +/F15_0 9.9626 Tf +(\)) +[3.317546 +0] Tj +-259 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-258 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-259 TJm +(able) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-259 TJm +(handle) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-258 TJm +(them.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-672 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-259 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +50 TJm +(re) +[3.317546 +0 +4.423394 +0] Tj +72 414.263 Td +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-279 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-279 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +-279 TJm +(C,) +[6.645054 +0 +2.49065 +0] Tj +-279 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-279 TJm +(C) +[6.645054 +0] Tj +-279 TJm +(compiler) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-279 TJm +(shouldn') +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-279 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +-279 TJm +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +-279 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-279 TJm +(all.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-794 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-279 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-279 TJm +(compiler) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-279 TJm +(does,) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-286 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-279 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-279 TJm +(reason,) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-287 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +-279 TJm +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +-279 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +72 402.308 Td +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-283 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-283 TJm +(them,) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +-291 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +164.167 402.308 Td +/F17_0 9.9626 Tf +(#define) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-283 TJm +(__inline__) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +271.425 402.308 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-283 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +294.22 402.308 Td +/F17_0 9.9626 Tf +(/) +[5.97756 +0] Tj +300.197 400.565 Td +(*) +[5.97756 +0] Tj +-600 TJm +(*) +[5.97756 +0] Tj +318.13 402.308 Td +(/) +[5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +324.108 402.308 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-818 TJm +(One) +[7.192997 +0 +4.9813 +0 +4.423394 +0] Tj +-283 TJm +(easy) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0] Tj +-283 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ay) +[4.423394 +0 +4.9813 +0] Tj +-283 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-283 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-283 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-283 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-283 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-283 TJm +(compile) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-283 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-283 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-283 TJm +(\003ag) +[5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 390.353 Td +/F17_0 9.9626 Tf +(-D__inline__=) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +149.709 390.353 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-250 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(understood) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(Unix) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(compilers.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 368.435 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-321 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-321 TJm +(still) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-322 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-321 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(\002culties,) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-339 TJm +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-321 TJm +(compiling) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-321 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-322 TJm +(t) +[2.769603 +0] Tj +1 TJm +(he) +[4.9813 +0 +4.423394 +0] Tj +-322 TJm +(macro) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +310.295 368.435 Td +/F17_0 9.9626 Tf +(BZ_STRICT_ANSI) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +397.181 368.435 Td +/F15_0 9.9626 Tf +(de\002ned.) +[4.9813 +0 +4.423394 +0 +5.539206 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-524 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-321 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-321 TJm +(enable) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-321 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 356.48 Td +(b) +[4.9813 +0] Tj +20 TJm +(uild) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-321 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-321 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-322 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-321 TJm +(a) +[4.423394 +0] Tj +-321 TJm +(strictly) +[3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-321 TJm +(ANSI) +[7.192997 +0 +7.192997 +0 +5.539206 +0 +3.317546 +0] Tj +-321 TJm +(compliant) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-322 TJm +(en) +[4.423394 +0 +4.9813 +0] Tj +40 TJm +(vironment.) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-1047 TJm +(Building) +[6.645054 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-321 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-321 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-322 TJm +(itself) +[2.769603 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0] Tj +-321 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-321 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-321 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-321 TJm +(dangerous) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-322 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +72 344.525 Td +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-260 TJm +(supported,) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-263 TJm +(since) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-260 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-260 TJm +(remo) +[3.317546 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +204.498 344.525 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +234.386 344.525 Td +/F15_0 9.9626 Tf +(') +[3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-260 TJm +(checks) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-260 TJm +(ag) +[4.423394 +0 +4.9813 +0] Tj +5 TJm +(ainst) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-260 TJm +(compressing) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-261 TJm +(directories,) +[4.9813 +0 +2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-262 TJm +(symbolic) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-261 TJm +(li) +[2.769603 +0 +2.769603 +0] Tj +1 TJm +(nks,) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-263 TJm +(de) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(vices,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-263 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-260 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +72 332.57 Td +(not-really-a-\002le) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(entities.) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-620 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(could) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(cause) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(\002lesystem) +[5.539206 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(corruption!) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 310.652 Td +(One) +[7.192997 +0 +4.9813 +0 +4.423394 +0] Tj +-392 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-391 TJm +(thing:) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-594 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-391 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-392 TJm +(create) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-391 TJm +(a) +[4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +210.879 310.652 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +244.669 310.652 Td +/F15_0 9.9626 Tf +(binary) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-392 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-391 TJm +(public) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-392 TJm +(distrib) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +20 TJm +(ution,) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-427 TJm +(please) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-392 TJm +(consider) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-391 TJm +(linking) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-392 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-391 TJm +(statically) +[3.875451 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-392 TJm +(\() +[3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +522.067 310.652 Td +/F17_0 9.9626 Tf +(gcc) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +72 298.697 Td +(-static) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +113.843 298.697 Td +/F15_0 9.9626 Tf +(\).) +[3.317546 +0 +2.49065 +0] Tj +-620 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +20 TJm +(oids) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(sorts) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(library-v) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +15 TJm +(ersion) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(issues) +[2.769603 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(others) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-250 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(encounter) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(later) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(on.) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 276.779 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-296 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-296 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uild) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +122.708 276.779 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +155.545 276.779 Td +/F15_0 9.9626 Tf +(on) +[4.9813 +0 +4.9813 +0] Tj +-296 TJm +(W) +[9.404694 +0] Tj +40 TJm +(in32,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-307 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-296 TJm +(must) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-296 TJm +(set) +[3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +254.965 276.779 Td +/F17_0 9.9626 Tf +(BZ_UNIX) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +299.756 276.779 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-296 TJm +(0) +[4.9813 +0] Tj +-296 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +335.72 276.779 Td +/F17_0 9.9626 Tf +(BZ_LCCWIN32) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +404.422 276.779 Td +/F15_0 9.9626 Tf +(to) +[2.769603 +0 +4.9813 +0] Tj +-296 TJm +(1,) +[4.9813 +0 +2.49065 +0] Tj +-307 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-296 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-296 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +467.159 276.779 Td +/F17_0 9.9626 Tf +(bzip2.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +509.002 276.779 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-307 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +72 264.824 Td +(compiling.) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-310 TJm +(Otherwise) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +7.192997 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(resulting) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(binary) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(on') +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork) +[4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 230.071 Td +/F9_0 20.6585 Tf +(4.3.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Repor) +[14.915437 +0 +11.486126 +0 +12.622344 +0 +12.622344 +0 +8.036157 +0] Tj +-20 TJm +(ting) +[6.879281 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0] Tj +-278 TJm +(b) +[12.622344 +0] Tj +20 TJm +(ugs) +[12.622344 +0 +12.622344 +0 +11.486126 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 208.153 Td +/F15_0 9.9626 Tf +(I) +[3.317546 +0] Tj +-228 TJm +(tried) +[2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-228 TJm +(pretty) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-228 TJm +(hard) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-228 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-228 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-228 TJm +(sure) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +196.25 208.153 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +228.409 208.153 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-228 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-228 TJm +(free,) +[3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.49065 +0] Tj +-232 TJm +(both) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-228 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-228 TJm +(design) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-228 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-228 TJm +(by) +[4.9813 +0 +4.9813 +0] Tj +-228 TJm +(testing.) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-605 TJm +(Hopefully) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-228 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +10 TJm +(ll) +[2.769603 +0 +2.769603 +0] Tj +-228 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +-228 TJm +(need) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-228 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-228 TJm +(read) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +72 196.198 Td +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(section) +[3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(real.) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 174.28 Td +(Ne) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ertheless,) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +-313 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +137.751 174.28 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +170.634 174.28 Td +/F15_0 9.9626 Tf +(dies) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-301 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-300 TJm +(a) +[4.423394 +0] Tj +-301 TJm +(se) +[3.875451 +0 +4.423394 +0] Tj +15 TJm +(gmentation) +[4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-300 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ault,) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-314 TJm +(a) +[4.423394 +0] Tj +-300 TJm +(b) +[4.9813 +0] Tj +20 TJm +(us) +[4.9813 +0 +3.875451 +0] Tj +-301 TJm +(error) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +-300 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-301 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-301 TJm +(internal) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-300 TJm +(assertion) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-301 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ailure,) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +2.49065 +0] Tj +-313 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-301 TJm +(wil) +[7.192997 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(l) +[2.769603 +0] Tj +-301 TJm +(ask) +[4.423394 +0 +3.875451 +0 +4.9813 +0] Tj +-301 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-300 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +72 162.325 Td +(email) +[4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-242 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +-243 TJm +(a) +[4.423394 +0] Tj +-242 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-243 TJm +(report.) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.49065 +0] Tj +-615 TJm +(Experience) +[6.087149 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-242 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-243 TJm +(years) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-242 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-242 TJm +(feedback) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-243 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-242 TJm +(bzip2) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(users) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-242 TJm +(indicates) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-243 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-242 TJm +(almost) +[4.423394 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-242 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-243 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-242 TJm +(problems) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0] Tj +-243 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +72 150.37 Td +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(traced) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(either) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(compiler) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ugs) +[4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(hardw) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +7.192997 +0] Tj +10 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(problems.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(32) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 33 36 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F15_0 9.9626 Tf +(Miscellanea) +[8.856751 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +74.491 710.037 Td +/F15_0 9.9626 Tf +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(Recompile) +[6.645054 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +-322 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-322 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-322 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-322 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-322 TJm +(optimisat) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0] Tj +1 TJm +(ion,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-340 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-322 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +-322 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-322 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-322 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orks.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0 +2.49065 +0] Tj +-1052 TJm +(And/or) +[7.192997 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-322 TJm +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-322 TJm +(a) +[4.423394 +0] Tj +-321 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(ferent) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-322 TJm +(compiler) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-1052 TJm +(I) +[3.317546 +0] Tj +-322 TJm +(heard) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-322 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +81.963 698.082 Td +(sorts) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +3.875451 +0] Tj +-309 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-310 TJm +(stories) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-310 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-309 TJm +(v) +[4.9813 +0] Tj +25 TJm +(arious) +[4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-310 TJm +(\003a) +[5.539206 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +20 TJm +(ours) +[4.9813 +0 +4.9813 +0 +3.317546 +0 +3.875451 +0] Tj +-309 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-310 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +-309 TJm +(C) +[6.645054 +0] Tj +-310 TJm +(\(and) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-309 TJm +(other) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-310 TJm +(compilers\)) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0 +3.317546 +0] Tj +-309 TJm +(generating) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-310 TJm +(bad) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-310 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-309 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +471.527 698.082 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +501.415 698.082 Td +/F15_0 9.9626 Tf +(,) +[2.49065 +0] Tj +-324 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-310 TJm +(I') +[3.317546 +0 +3.317546 +0] Tj +50 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +81.963 686.127 Td +(run) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(across) +[4.423394 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0] Tj +-250 TJm +(tw) +[2.769603 +0 +7.192997 +0] Tj +10 TJm +(o) +[4.9813 +0] Tj +-250 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xamples) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(myself.) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 664.209 Td +(2.7.X) +[4.9813 +0 +2.49065 +0 +4.9813 +0 +2.49065 +0 +7.192997 +0] Tj +-299 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ersions) +[4.423394 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-300 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-299 TJm +(GNU) +[7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +-299 TJm +(C) +[6.645054 +0] Tj +-300 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-299 TJm +(kno) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-300 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-299 TJm +(generate) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-299 TJm +(bad) +[4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-300 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-299 TJm +(from) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0] Tj +-299 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-300 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-299 TJm +(time,) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.49065 +0] Tj +-312 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-299 TJm +(high) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-300 TJm +(optimisation) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-299 TJm +(le) +[2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(els.) +[4.423394 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-916 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-300 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +81.963 652.254 Td +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-328 TJm +(problems,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-348 TJm +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-328 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-329 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-328 TJm +(\003ags) +[5.539206 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +217.176 652.254 Td +/F17_0 9.9626 Tf +(-O2) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-328 TJm +(-fomit-frame-pointer) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-329 TJm +(-fno-strength-reduce) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +480.753 652.254 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-1090 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-328 TJm +(should) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +81.963 640.299 Td +(speci\002cally) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +5.539206 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +129.832 640.299 Td +/F496_0 9.9626 Tf +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +145.055 640.299 Td +/F15_0 9.9626 Tf +(use) +[4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +160.826 640.299 Td +/F17_0 9.9626 Tf +(-funroll-loops) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +244.512 640.299 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 618.381 Td +(Y) +[7.192997 +0] Tj +110 TJm +(ou) +[4.9813 +0 +4.9813 +0] Tj +-240 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-240 TJm +(notice) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0] Tj +-241 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-240 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-240 TJm +(Mak) +[8.856751 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e\002le) +[4.423394 +0 +5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-240 TJm +(runs) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-240 TJm +(six) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +-241 TJm +(tests) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-240 TJm +(as) +[4.423394 +0 +3.875451 +0] Tj +-240 TJm +(part) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0] Tj +-240 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-240 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-241 TJm +(b) +[4.9813 +0] Tj +20 TJm +(uild) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-240 TJm +(process.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.49065 +0] Tj +-613 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +-240 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-241 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-240 TJm +(passes) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-240 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-240 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-240 TJm +(these,) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-242 TJm +(it') +[2.769603 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-241 TJm +(a) +[4.423394 +0] Tj +81.963 606.426 Td +(pretty) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(good) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(\(b) +[3.317546 +0 +4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(100%\)) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +8.298846 +0 +3.317546 +0] Tj +-250 TJm +(indication) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(compiler) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(done) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(its) +[2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(job) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(correctly) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 584.508 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +91.723 584.508 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +124.239 584.508 Td +/F15_0 9.9626 Tf +(crashes) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-264 TJm +(randomly) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-267 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-264 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-263 TJm +(crashes) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-264 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-264 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-263 TJm +(repeatable,) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-268 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-263 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-264 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-264 TJm +(a) +[4.423394 +0] Tj +-264 TJm +(\003ak) +[5.539206 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-263 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-264 TJm +(subsystem.) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +510.112 584.508 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 572.553 Td +/F15_0 9.9626 Tf +(really) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-274 TJm +(hammers) +[4.9813 +0 +4.423394 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-274 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-274 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-274 TJm +(hierarch) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +5 TJm +(y) +[4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-280 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-274 TJm +(it') +[2.769603 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-274 TJm +(a) +[4.423394 +0] Tj +-274 TJm +(bit) +[4.9813 +0 +2.769603 +0 +2.769603 +0] Tj +-274 TJm +(mar) +[7.750903 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ginal,) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-280 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(may) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +-274 TJm +(get) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-274 TJm +(these) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-274 TJm +(problems.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-764 TJm +(Ditto) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-274 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-274 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-274 TJm +(disk) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0] Tj +81.963 560.598 Td +(or) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(I/O) +[3.317546 +0 +2.769603 +0 +7.192997 +0] Tj +-250 TJm +(subsystem) +[3.875451 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(slo) +[3.875451 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wly) +[7.192997 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(f) +[3.317546 +0] Tj +10 TJm +(ailing.) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-620 TJm +(Y) +[7.192997 +0] Tj +111 TJm +(up,) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(really) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(does) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(happen.) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +81.963 538.68 Td +(T) +[6.087149 +0] Tj +35 TJm +(ry) +[3.317546 +0 +4.9813 +0] Tj +-250 TJm +(using) +[4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(dif) +[4.9813 +0 +2.769603 +0 +3.317546 +0] Tj +25 TJm +(ferent) +[3.317546 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(machine) +[7.750903 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(same) +[3.875451 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-250 TJm +(type,) +[2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(see) +[3.875451 +0 +4.423394 +0 +4.423394 +0] Tj +-250 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(repeat) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(problem.) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +74.491 516.762 Td +(\225) +[3.48691 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-450 TJm +(This) +[6.087149 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-252 TJm +(isn') +[2.769603 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-251 TJm +(really) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-252 TJm +(a) +[4.423394 +0] Tj +-252 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug,) +[4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-252 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-251 TJm +(...) +[2.49065 +0 +2.49065 +0 +2.49065 +0] Tj +-315 TJm +(If) +[3.317546 +0 +3.317546 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +209.383 516.762 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +241.778 516.762 Td +/F15_0 9.9626 Tf +(tells) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-252 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-252 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-252 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-251 TJm +(corrupted) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-252 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-252 TJm +(decompression,) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-252 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-252 TJm +(obtained) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-252 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-251 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +81.963 504.807 Td +(via) +[4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-281 TJm +(FTP) +[5.539206 +0 +6.087149 +0 +5.539206 +0] Tj +111 TJm +(,) +[2.49065 +0] Tj +-282 TJm +(there) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-282 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-281 TJm +(a) +[4.423394 +0] Tj +-282 TJm +(possibility) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-281 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-282 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-281 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(got) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-282 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-281 TJm +(tell) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-282 TJm +(FTP) +[5.539206 +0 +6.087149 +0 +5.539206 +0] Tj +-281 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-282 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-281 TJm +(a) +[4.423394 +0] Tj +-282 TJm +(binary) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-281 TJm +(mode) +[7.750903 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-282 TJm +(transfer) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +-809 TJm +(That) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-282 TJm +(absolutely) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-281 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-282 TJm +(cause) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +81.963 492.852 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-250 TJm +(non-decompressible.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-620 TJm +(Y) +[7.192997 +0] Tj +110 TJm +(ou') +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +10 TJm +(ll) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(transfer) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-250 TJm +(ag) +[4.423394 +0 +4.9813 +0] Tj +5 TJm +(ain.) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 470.934 Td +(If) +[3.317546 +0 +3.317546 +0] Tj +-235 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +50 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-236 TJm +(inc) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +1 TJm +(o) +[4.9813 +0] Tj +-1 TJm +(r) +[3.317546 +0] Tj +1 TJm +(po) +[4.9813 +0 +4.9813 +0] Tj +-1 TJm +(r) +[3.317546 +0] Tj +1 TJm +(ated) +[4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +163.036 470.934 Td +/F17_0 9.9626 Tf +(libbzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +213.2 470.934 Td +/F15_0 9.9626 Tf +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-235 TJm +(your) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-236 TJm +(o) +[4.9813 +0] Tj +25 TJm +(wn) +[7.192997 +0 +4.9813 +0] Tj +-235 TJm +(program) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0] Tj +-235 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-235 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-236 TJm +(gett) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +1 TJm +(ing) +[2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-236 TJm +(problems,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-238 TJm +(please,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-238 TJm +(please,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-238 TJm +(please,) +[4.9813 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-238 TJm +(check) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-236 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +72 458.979 Td +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-242 TJm +(parameters) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-243 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-242 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-242 TJm +(passing) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-242 TJm +(calls) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-242 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-243 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-242 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-244 TJm +(are) +[4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-242 TJm +(correct,) +[4.423394 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-244 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-242 TJm +(accordance) +[4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-242 TJm +(with) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-243 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-242 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-242 TJm +(documentation) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-243 TJm +(says) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +72 447.024 Td +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(allo) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +10 TJm +(able.) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.49065 +0] Tj +-310 TJm +(I) +[3.317546 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(tried) +[2.769603 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(mak) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +10 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-250 TJm +(rob) +[3.317546 +0 +4.9813 +0 +4.9813 +0] Tj +20 TJm +(ust) +[4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(ag) +[4.423394 +0 +4.9813 +0] Tj +5 TJm +(ainst) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-250 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(problems,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +3.875451 +0 +2.49065 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-250 TJm +(I'm) +[3.317546 +0 +3.317546 +0 +7.750903 +0] Tj +-250 TJm +(sure) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(I) +[3.317546 +0] Tj +-250 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(en') +[4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(succeeded.) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 425.106 Td +(Finally) +[5.539206 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-324 TJm +(if) +[2.769603 +0 +3.317546 +0] Tj +-310 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-309 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-309 TJm +(comments) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-310 TJm +(don') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-309 TJm +(help,) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0] Tj +-324 TJm +(you') +[4.9813 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +10 TJm +(ll) +[2.769603 +0 +2.769603 +0] Tj +-310 TJm +(ha) +[4.9813 +0 +4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-309 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-309 TJm +(send) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-310 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +-309 TJm +(a) +[4.423394 +0] Tj +-309 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-310 TJm +(report.) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.49065 +0] Tj +-976 TJm +(No) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-324 TJm +(it') +[2.769603 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-310 TJm +(just) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-309 TJm +(amazing) +[4.423394 +0 +7.750903 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-309 TJm +(ho) +[4.9813 +0 +4.9813 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-310 TJm +(man) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +72 413.151 Td +(people) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(send) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ug) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(report) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-250 TJm +(saying) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(something) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(lik) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(e:) +[4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 386.087] cm +0 0 468 23.91 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 401.629 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(crashed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(with) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(segmentation) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(fault) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(on) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(my) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(machine) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 364.169 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-241 TJm +(absolutely) +[4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-241 TJm +(nothing) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-241 TJm +(el) +[4.423394 +0 +2.769603 +0] Tj +1 TJm +(se.) +[3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-614 TJm +(Needless) +[7.192997 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-241 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-241 TJm +(say) +[3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-243 TJm +(a) +[4.423394 +0] Tj +-241 TJm +(such) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-240 TJm +(a) +[4.423394 +0] Tj +-241 TJm +(report) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0] Tj +-241 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +324.681 364.169 Td +/F496_0 9.9626 Tf +(totally) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0] Tj +55 TJm +(,) +[2.49065 +0] Tj +-243 TJm +(utterly) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0] Tj +55 TJm +(,) +[2.49065 +0] Tj +-242 TJm +(completely) +[4.423394 +0 +4.9813 +0 +7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-241 TJm +(and) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-241 TJm +(compr) +[4.423394 +0 +4.9813 +0 +7.192997 +0 +4.9813 +0 +3.875451 +0] Tj +37 TJm +(ehensively) +[4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-241 TJm +(100%) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +8.298846 +0] Tj +72 352.214 Td +(useless;) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +3.317546 +0] Tj +-257 TJm +(a) +[4.9813 +0] Tj +-255 TJm +(waste) +[6.645054 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0] Tj +-255 TJm +(of) +[4.9813 +0 +2.769603 +0] Tj +-255 TJm +(your) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-255 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0] Tj +10 TJm +(,) +[2.49065 +0] Tj +-256 TJm +(my) +[7.192997 +0 +4.423394 +0] Tj +-255 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.192997 +0 +4.423394 +0] Tj +10 TJm +(,) +[2.49065 +0] Tj +-256 TJm +(and) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-255 TJm +(net) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-255 TJm +(bandwidth) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +6.645054 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +302.574 352.214 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-650 TJm +(W) +[9.404694 +0] Tj +40 TJm +(ith) +[2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-254 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-255 TJm +(details) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-255 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +-255 TJm +(all,) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-256 TJm +(there') +[2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-255 TJm +(no) +[4.9813 +0 +4.9813 +0] Tj +-255 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ay) +[4.423394 +0 +4.9813 +0] Tj +-255 TJm +(I) +[3.317546 +0] Tj +-255 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-255 TJm +(possibly) +[4.9813 +0 +4.9813 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-255 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +15 TJm +(gin) +[4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +72 340.259 Td +(to) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(\002gure) +[5.539206 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-250 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(problem) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(is.) +[2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 318.341 Td +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-309 TJm +(rules) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-309 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-309 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-310 TJm +(g) +[4.9813 +0] Tj +5 TJm +(ame) +[4.423394 +0 +7.750903 +0 +4.423394 +0] Tj +-309 TJm +(are:) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0] Tj +-428 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acts,) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-324 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acts,) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-324 TJm +(f) +[3.317546 +0] Tj +10 TJm +(acts.) +[4.423394 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +2.49065 +0] Tj +-975 TJm +(Don') +[7.192997 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-309 TJm +(omit) +[4.9813 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0] Tj +-309 TJm +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +-309 TJm +(because) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-309 TJm +("oh,) +[4.064741 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-324 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-309 TJm +(w) +[7.192997 +0] Tj +10 TJm +(on') +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-309 TJm +(be) +[4.9813 +0 +4.423394 +0] Tj +-310 TJm +(rele) +[3.317546 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ant".) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +4.064741 +0 +2.49065 +0] Tj +-974 TJm +(At) +[7.192997 +0 +2.769603 +0] Tj +-310 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-309 TJm +(bare) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +72 306.386 Td +(minimum:) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.949 0.949 0.9765] sc +/DeviceRGB {} CS +[0.949 0.949 0.9765] SC +q +[1 0 0 1 72 245.514] cm +0 0 468 59.776 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 296.922 Td +/F17_0 9.9626 Tf +(Machine) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(type.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(Operating) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(system) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(version.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 284.967 Td +(Exact) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(version) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(\(do) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(-V\).) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 273.011 Td +(Exact) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(version) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compiler) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(used.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 261.056 Td +(Flags) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(passed) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compiler.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 223.597 Td +/F15_0 9.9626 Tf +(Ho) +[7.192997 +0 +4.9813 +0] Tj +25 TJm +(we) +[7.192997 +0 +4.423394 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(er) +[4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-254 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-252 TJm +(most) +[7.750903 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0] Tj +-253 TJm +(important) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-253 TJm +(single) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-253 TJm +(thing) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-253 TJm +(t) +[2.769603 +0] Tj +1 TJm +(hat) +[4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-253 TJm +(will) +[7.192997 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0] Tj +-253 TJm +(help) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-253 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +-253 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-252 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-253 TJm +(\002le) +[5.539206 +0 +2.769603 +0 +4.423394 +0] Tj +-253 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-253 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-253 TJm +(were) +[7.192997 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0] Tj +-253 TJm +(trying) +[2.769603 +0 +3.317546 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-252 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-253 TJm +(compress) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-253 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-253 TJm +(decompress) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +72 211.641 Td +(at) +[4.423394 +0 +2.769603 +0] Tj +-304 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-305 TJm +(time) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-304 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-304 TJm +(problem) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0] Tj +-305 TJm +(happened.) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +-946 TJm +(W) +[9.404694 +0] Tj +40 TJm +(ithout) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-304 TJm +(that,) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.49065 +0] Tj +-318 TJm +(my) +[7.750903 +0 +4.9813 +0] Tj +-305 TJm +(ability) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-304 TJm +(to) +[2.769603 +0 +4.9813 +0] Tj +-304 TJm +(do) +[4.9813 +0 +4.9813 +0] Tj +-305 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(ything) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-304 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-304 TJm +(than) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-305 TJm +(speculate) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-304 TJm +(about) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-304 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-305 TJm +(cause,) +[4.423394 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-318 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +72 199.686 Td +(limited.) +[2.769603 +0 +2.769603 +0 +7.750903 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 164.933 Td +/F9_0 20.6585 Tf +(4.4.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Did) +[14.915437 +0 +5.743063 +0 +12.622344 +0] Tj +-278 TJm +(y) +[11.486126 +0] Tj +25 TJm +(ou) +[12.622344 +0 +12.622344 +0] Tj +-278 TJm +(g) +[12.622344 +0] Tj +-10 TJm +(et) +[11.486126 +0 +6.879281 +0] Tj +-278 TJm +(the) +[6.879281 +0 +12.622344 +0 +11.486126 +0] Tj +-278 TJm +(right) +[8.036157 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0 +6.879281 +0] Tj +-278 TJm +(pac) +[12.622344 +0 +11.486126 +0 +11.486126 +0] Tj +20 TJm +(ka) +[11.486126 +0 +11.486126 +0] Tj +10 TJm +(g) +[12.622344 +0] Tj +-10 TJm +(e?) +[11.486126 +0 +12.622344 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 143.016 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.603 143.016 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-272 TJm +(a) +[4.423394 +0] Tj +-273 TJm +(resource) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +-272 TJm +(hog.) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-378 TJm +(It) +[3.317546 +0 +2.769603 +0] Tj +-272 TJm +(soaks) +[3.875451 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0] Tj +-273 TJm +(up) +[4.9813 +0 +4.9813 +0] Tj +-272 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +-273 TJm +(amounts) +[4.423394 +0 +7.750903 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-272 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-273 TJm +(CPU) +[6.645054 +0 +5.539206 +0 +7.192997 +0] Tj +-272 TJm +(c) +[4.423394 +0] Tj +15 TJm +(ycles) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-273 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-272 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +-755 TJm +(Also,) +[7.192997 +0 +2.769603 +0 +3.875451 +0 +4.9813 +0 +2.49065 +0] Tj +-278 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-273 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-272 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ery) +[4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-273 TJm +(lar) +[2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +18 TJm +(ge) +[4.9813 +0 +4.423394 +0] Tj +-272 TJm +(latencies.) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +72 131.06 Td +(In) +[3.317546 +0 +4.9813 +0] Tj +-251 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-251 TJm +(w) +[7.192997 +0] Tj +10 TJm +(orst) +[4.9813 +0 +3.317546 +0 +3.875451 +0 +2.769603 +0] Tj +-251 TJm +(case,) +[4.423394 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +2.49065 +0] Tj +-251 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(can) +[4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-251 TJm +(feed) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0] Tj +-251 TJm +(man) +[7.750903 +0 +4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-251 TJm +(me) +[7.750903 +0 +4.423394 +0] Tj +15 TJm +(g) +[4.9813 +0] Tj +4 TJm +(abyt) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +1 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-252 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-251 TJm +(uncompressed) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-251 TJm +(data) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0] Tj +-251 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-251 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-251 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-251 TJm +(before) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-251 TJm +(getting) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-251 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-251 TJm +(compressed) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +72 119.105 Td +(output,) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +-250 TJm +(so) +[3.875451 +0 +4.9813 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(probably) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(rules) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(out) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-250 TJm +(applications) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-250 TJm +(requiring) +[3.317546 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(interacti) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e) +[4.423394 +0] Tj +-250 TJm +(beha) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +20 TJm +(viour) +[4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 97.187 Td +(These) +[6.087149 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0] Tj +-304 TJm +(aren') +[4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-304 TJm +(f) +[3.317546 +0] Tj +10 TJm +(aults) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +3.875451 +0] Tj +-304 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-304 TJm +(my) +[7.750903 +0 +4.9813 +0] Tj +-304 TJm +(implementation,) +[2.769603 +0 +7.750903 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-317 TJm +(I) +[3.317546 +0] Tj +-304 TJm +(hope,) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.49065 +0] Tj +-318 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-304 TJm +(more) +[7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0] Tj +-304 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-304 TJm +(intrinsic) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0] Tj +-304 TJm +(property) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0] Tj +-304 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-304 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-304 TJm +(Burro) +[6.645054 +0 +4.9813 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0] Tj +25 TJm +(ws-Wheeler) +[7.192997 +0 +3.875451 +0 +3.317546 +0 +9.404694 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-304 TJm +(transform) +[2.769603 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0] Tj +72 85.232 Td +(\(unfortunately\).) +[3.317546 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +2.49065 +0] Tj +-620 TJm +(Maybe) +[8.856751 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(this) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(isn') +[2.769603 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-250 TJm +(what) +[7.192997 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-250 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant.) +[4.423394 +0 +4.9813 +0 +2.769603 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +(33) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 34 37 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F15_0 9.9626 Tf +(Miscellanea) +[8.856751 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(If) +[3.317546 +0 +3.317546 +0] Tj +-275 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ant) +[4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-275 TJm +(a) +[4.423394 +0] Tj +-274 TJm +(compressor) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +-275 TJm +(and/or) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +-275 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-274 TJm +(which) +[7.192997 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0] Tj +-275 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-274 TJm +(f) +[3.317546 +0] Tj +10 TJm +(aster) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-281 TJm +(uses) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +3.875451 +0] Tj +-275 TJm +(less) +[2.769603 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0] Tj +-274 TJm +(memory) +[7.750903 +0 +4.423394 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.9813 +0] Tj +-275 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-275 TJm +(gets) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0] Tj +-274 TJm +(pretty) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-275 TJm +(good) +[4.9813 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-274 TJm +(compression,) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +-281 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-275 TJm +(has) +[4.9813 +0 +4.423394 +0 +3.875451 +0] Tj +72 698.082 Td +(minimal) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0] Tj +-288 TJm +(latenc) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-297 TJm +(consider) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-288 TJm +(Jean-loup) +[3.875451 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-288 TJm +(Gailly') +[7.192997 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-288 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-288 TJm +(Mark) +[8.856751 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +-288 TJm +(Adl) +[7.192997 +0 +4.9813 +0 +2.769603 +0] Tj +1 TJm +(er') +[4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-288 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +353.879 698.082 Td +/F17_0 9.9626 Tf +(zlib-1.2.1) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +416.523 698.082 Td +/F15_0 9.9626 Tf +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +433.777 698.082 Td +/F17_0 9.9626 Tf +(gzip-1.2.4) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +493.553 698.082 Td +/F15_0 9.9626 Tf +(.) +[2.49065 +0] Tj +-847 TJm +(Look) +[6.087149 +0 +4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-288 TJm +(for) +[3.317546 +0 +4.9813 +0 +3.317546 +0] Tj +72 686.127 Td +(them) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +7.750903 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +(http://www) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +65 TJm +(.zlib) +[2.49065 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +40 TJm +(.or) +[2.49065 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(g) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +(http://www) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +65 TJm +(.gzip.or) +[2.49065 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.49065 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(g) +[4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +-250 TJm +(respecti) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(ely) +[4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 664.209 Td +(F) +[5.539206 +0] Tj +15 TJm +(or) +[4.9813 +0 +3.317546 +0] Tj +-582 TJm +(something) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-583 TJm +(f) +[3.317546 +0] Tj +10 TJm +(aster) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-582 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-582 TJm +(lighter) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0 +3.317546 +0] Tj +-583 TJm +(still,) +[3.875451 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +2.49065 +0] Tj +-665 TJm +(you) +[4.9813 +0 +4.9813 +0 +4.9813 +0] Tj +-582 TJm +(might) +[7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-583 TJm +(try) +[2.769603 +0 +3.317546 +0 +4.9813 +0] Tj +-582 TJm +(Markus) +[8.856751 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-582 TJm +(F) +[5.539206 +0] Tj +-582 TJm +(X) +[7.192997 +0] Tj +-582 TJm +(J) +[3.875451 +0] Tj +-582 TJm +(Oberhumer') +[7.192997 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +437.433 664.209 Td +/F17_0 9.9626 Tf +(LZO) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +461.164 664.209 Td +/F15_0 9.9626 Tf +(real-time) +[3.317546 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +7.750903 +0 +4.423394 +0] Tj +-582 TJm +(compres-) +[4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.317546 +0] Tj +72 652.254 Td +(sion/decompression) +[3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(library) +[2.769603 +0 +2.769603 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-250 TJm +(at) +[4.423394 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 1] sc +/DeviceRGB {} CS +[0 0 1] SC +-250 TJm +(http://www) +[4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +7.192997 +0 +7.192997 +0 +7.192997 +0] Tj +65 TJm +(.oberhumer) +[2.49065 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +4.9813 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(.com/opensource) +[2.49065 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +(.) +[2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 617.501 Td +/F9_0 20.6585 Tf +(4.5.) +[11.486126 +0 +5.743063 +0 +11.486126 +0 +5.743063 +0] Tj +-278 TJm +(Fur) +[12.622344 +0 +12.622344 +0 +8.036157 +0] Tj +-20 TJm +(ther) +[6.879281 +0 +12.622344 +0 +11.486126 +0 +8.036157 +0] Tj +-278 TJm +(Reading) +[14.915437 +0 +11.486126 +0 +11.486126 +0 +12.622344 +0 +5.743063 +0 +12.622344 +0 +12.622344 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 595.583 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +104.923 595.583 Td +/F15_0 9.9626 Tf +(is) +[2.769603 +0 +3.875451 +0] Tj +-305 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-304 TJm +(research) +[3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-305 TJm +(w) +[7.192997 +0] Tj +10 TJm +(ork,) +[4.9813 +0 +3.317546 +0 +4.9813 +0 +2.49065 +0] Tj +-318 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-305 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-304 TJm +(sense) +[3.875451 +0 +4.423394 +0 +4.9813 +0 +3.875451 +0 +4.423394 +0] Tj +-305 TJm +(that) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-304 TJm +(it) +[2.769603 +0 +2.769603 +0] Tj +-305 TJm +(doesn') +[4.9813 +0 +4.9813 +0 +4.423394 +0 +3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +18 TJm +(t) +[2.769603 +0] Tj +-304 TJm +(present) +[4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-305 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-305 TJm +(ne) +[4.9813 +0 +4.423394 +0] Tj +25 TJm +(w) +[7.192997 +0] Tj +-304 TJm +(ideas.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +-474 TJm +(Rather) +[6.645054 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +40 TJm +(,) +[2.49065 +0] Tj +-318 TJm +(it') +[2.769603 +0 +2.769603 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-305 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +-304 TJm +(engineering) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-305 TJm +(e) +[4.423394 +0] Tj +15 TJm +(x) +[4.9813 +0] Tj +15 TJm +(ercise) +[4.423394 +0 +3.317546 +0 +4.423394 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0] Tj +72 583.628 Td +(based) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(on) +[4.9813 +0 +4.9813 +0] Tj +-250 TJm +(e) +[4.423394 +0] Tj +15 TJm +(xisting) +[4.9813 +0 +2.769603 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(ideas.) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 561.71 Td +(F) +[5.539206 +0] Tj +15 TJm +(our) +[4.9813 +0 +4.9813 +0 +3.317546 +0] Tj +-250 TJm +(documents) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-250 TJm +(describe) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(essentially) +[4.423394 +0 +3.875451 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +-250 TJm +(all) +[4.423394 +0 +2.769603 +0 +2.769603 +0] Tj +-250 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(ideas) +[2.769603 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0 +3.875451 +0] Tj +-250 TJm +(behind) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +298.747 561.71 Td +/F17_0 9.9626 Tf +(bzip2) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +328.635 561.71 Td +/F15_0 9.9626 Tf +(:) +[2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.9294 0.9686 0.9568] sc +/DeviceRGB {} CS +[0.9294 0.9686 0.9568] SC +q +[1 0 0 1 72 259.678] cm +0 0 468 298.879 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 550.189 Td +/F17_0 9.9626 Tf +(Michael) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Burrows) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(D.) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(J.) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Wheeler:) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 538.234 Td +("A) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(block-sorting) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(lossless) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(compression) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(algorithm") +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 526.278 Td +(10th) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(May) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(1994.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 514.323 Td +(Digital) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(SRC) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Research) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Report) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(124.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 502.368 Td +(ftp://ftp.digital.com/pub/DEC/SRC/research-reports/SRC-124.ps.g\ +z) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 490.413 Td +(If) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(you) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(have) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(trouble) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(finding) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(it,) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(try) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(searching) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(at) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 478.458 Td +(New) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Zealand) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Digital) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Library,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(http://www.nzdl.org.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 454.547 Td +(Daniel) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(S.) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Hirschberg) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Debra) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(A.) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(LeLewer) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 442.592 Td +("Efficient) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Decoding) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Prefix) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Codes") +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 430.637 Td +(Communications) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(ACM,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(April) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(1990,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Vol) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(33,) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Number) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(4.) +[5.97756 +0 +5.97756 +0] Tj +102.732 418.682 Td +(You) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(might) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(be) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(able) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(to) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(get) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(an) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(electronic) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(copy) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(this) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 406.727 Td +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(ACM) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Digital) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Library.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 382.816 Td +(David) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(J.) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Wheeler) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 370.861 Td +(Program) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bred3.c) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(accompanying) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(document) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(bred3.ps.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 358.906 Td +(This) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(contains) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(idea) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(behind) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(multi-table) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Huffman) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(coding) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(scheme.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 346.951 Td +(ftp://ftp.cl.cam.ac.uk/users/djw3/) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 323.04 Td +(Jon) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(L.) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Bentley) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Robert) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Sedgewick) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +98.488 311.085 Td +("Fast) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Algorithms) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(for) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Sorting) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(and) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Searching) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Strings") +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 299.13 Td +(Available) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(from) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Sedgewick's) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(web) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(page,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 287.175 Td +(www.cs.princeton.edu/~rs) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 237.76 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-239 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-238 TJm +(paper) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-239 TJm +(gi) +[4.9813 +0 +2.769603 +0] Tj +25 TJm +(v) +[4.9813 +0] Tj +15 TJm +(es) +[4.423394 +0 +3.875451 +0] Tj +-239 TJm +(v) +[4.9813 +0] Tj +25 TJm +(aluable) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-238 TJm +(additional) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0] Tj +-239 TJm +(insights) +[2.769603 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.769603 +0 +3.875451 +0] Tj +-238 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-239 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-239 TJm +(algorithm,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-241 TJm +(b) +[4.9813 +0] Tj +20 TJm +(ut) +[4.9813 +0 +2.769603 +0] Tj +-238 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-239 TJm +(not) +[4.9813 +0 +4.9813 +0 +2.769603 +0] Tj +-239 TJm +(immedia) +[2.769603 +0 +7.750903 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +1 TJm +(tely) +[2.769603 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0] Tj +-239 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-239 TJm +(basis) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +2.769603 +0 +3.875451 +0] Tj +-238 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-239 TJm +(an) +[4.423394 +0 +4.9813 +0] Tj +15 TJm +(y) +[4.9813 +0] Tj +-239 TJm +(code) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0] Tj +72 225.805 Td +(used) +[4.9813 +0 +3.875451 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(bzip2.) +[4.9813 +0 +4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +2.49065 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.9294 0.9686 0.9568] sc +/DeviceRGB {} CS +[0.9294 0.9686 0.9568] SC +q +[1 0 0 1 72 150.921] cm +0 0 468 71.731 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 214.283 Td +/F17_0 9.9626 Tf +(Peter) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Fenwick:) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 202.328 Td +(Block) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Sorting) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Text) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Compression) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 190.373 Td +(Proceedings) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(19th) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Australasian) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Computer) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Science) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Conference,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +111.22 178.418 Td +(Melbourne,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Australia.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(Jan) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(31) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(-) +[5.97756 +0] Tj +-426 TJm +(Feb) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(2,) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(1996.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 166.463 Td +(ftp://ftp.cs.auckland.ac.nz/pub/peter-f/ACSC96paper.ps) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 129.003 Td +/F15_0 9.9626 Tf +(K) +[7.192997 +0] Tj +15 TJm +(unihik) +[4.9813 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +10 TJm +(o) +[4.9813 +0] Tj +-250 TJm +(Sadakane') +[5.539206 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +55 TJm +(s) +[3.875451 +0] Tj +-250 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(algorithm,) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +2.49065 +0] Tj +-250 TJm +(mentioned) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(abo) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +15 TJm +(v) +[4.9813 +0] Tj +15 TJm +(e,) +[4.423394 +0 +2.49065 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(from:) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.9294 0.9686 0.9568] sc +/DeviceRGB {} CS +[0.9294 0.9686 0.9568] SC +q +[1 0 0 1 72 89.985] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 117.482 Td +/F17_0 9.9626 Tf +(http://naomi.is.s.u-tokyo.ac.jp/~sada/papers/Sada98b.ps.gz) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +/F15_0 9.9626 Tf +(34) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Page: 35 38 +%%PageMedia: Letter +%%PageBoundingBox: 0 0 612 792 +%%PageOrientation: Portrait +%%BeginPageSetup +612 792 pdfSetupPaper +pdfStartPage +0 0 612 792 re W +%%EndPageSetup +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +498.728 749.245 Td +/F15_0 9.9626 Tf +(Miscellanea) +[8.856751 +0 +2.769603 +0 +3.875451 +0 +4.423394 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +q +[1 0 0 1 73.893 741.803] cm +[] 0 d +0 J +0.498 w +0 0 m +475.465 0 l +S +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +72 710.037 Td +/F15_0 9.9626 Tf +(The) +[6.087149 +0 +4.9813 +0 +4.423394 +0] Tj +-250 TJm +(Manber) +[8.856751 +0 +4.423394 +0 +4.9813 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +20 TJm +(-Myers) +[3.317546 +0 +8.856751 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-250 TJm +(suf) +[3.875451 +0 +4.9813 +0 +3.317546 +0] Tj +25 TJm +(\002x) +[5.539206 +0 +4.9813 +0] Tj +-250 TJm +(array) +[4.423394 +0 +3.317546 +0 +3.317546 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(construction) +[4.423394 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0 +2.769603 +0 +3.317546 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-250 TJm +(algorithm) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0] Tj +-250 TJm +(is) +[2.769603 +0 +3.875451 +0] Tj +-250 TJm +(described) +[4.9813 +0 +4.423394 +0 +3.875451 +0 +4.423394 +0 +3.317546 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0] Tj +-250 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +-250 TJm +(paper) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0] Tj +-250 TJm +(a) +[4.423394 +0] Tj +20 TJm +(v) +[4.9813 +0] Tj +25 TJm +(ailable) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0 +4.423394 +0] Tj +-250 TJm +(from:) +[3.317546 +0 +3.317546 +0 +4.9813 +0 +7.750903 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.9294 0.9686 0.9568] sc +/DeviceRGB {} CS +[0.9294 0.9686 0.9568] SC +q +[1 0 0 1 72 671.019] cm +0 0 468 35.866 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 698.516 Td +/F17_0 9.9626 Tf +(http://www.cs.arizona.edu/people/gene/PAPERS/suffix.ps) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +72 649.101 Td +/F15_0 9.9626 Tf +(Finally) +[5.539206 +0 +2.769603 +0 +4.9813 +0 +4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +65 TJm +(,) +[2.49065 +0] Tj +-227 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-221 TJm +(follo) +[3.317546 +0 +4.9813 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +25 TJm +(wing) +[7.192997 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-222 TJm +(papers) +[4.9813 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +3.317546 +0 +3.875451 +0] Tj +-221 TJm +(document) +[4.9813 +0 +4.9813 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +2.769603 +0] Tj +-221 TJm +(some) +[3.875451 +0 +4.9813 +0 +7.750903 +0 +4.423394 +0] Tj +-222 TJm +(in) +[2.769603 +0 +4.9813 +0] Tj +40 TJm +(v) +[4.9813 +0] Tj +15 TJm +(estig) +[4.423394 +0 +3.875451 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0] Tj +5 TJm +(ations) +[4.423394 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.875451 +0] Tj +-221 TJm +(I) +[3.317546 +0] Tj +-221 TJm +(made) +[7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0] Tj +-222 TJm +(into) +[2.769603 +0 +4.9813 +0 +2.769603 +0 +4.9813 +0] Tj +-221 TJm +(the) +[2.769603 +0 +4.9813 +0 +4.423394 +0] Tj +-221 TJm +(performance) +[4.9813 +0 +4.423394 +0 +3.317546 +0 +3.317546 +0 +4.9813 +0 +3.317546 +0 +7.750903 +0 +4.423394 +0 +4.9813 +0 +4.423394 +0 +4.423394 +0] Tj +-222 TJm +(of) +[4.9813 +0 +3.317546 +0] Tj +-221 TJm +(sorting) +[3.875451 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +-221 TJm +(and) +[4.423394 +0 +4.9813 +0 +4.9813 +0] Tj +-222 TJm +(decompression) +[4.9813 +0 +4.423394 +0 +4.423394 +0 +4.9813 +0 +7.750903 +0 +4.9813 +0 +3.317546 +0 +4.423394 +0 +3.875451 +0 +3.875451 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0] Tj +72 637.146 Td +(algorithms:) +[4.423394 +0 +2.769603 +0 +4.9813 +0 +4.9813 +0 +3.317546 +0 +2.769603 +0 +2.769603 +0 +4.9813 +0 +7.750903 +0 +3.875451 +0 +2.769603 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0.9294 0.9686 0.9568] sc +/DeviceRGB {} CS +[0.9294 0.9686 0.9568] SC +q +[1 0 0 1 72 502.486] cm +0 0 468 131.507 re +f +Q +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +[1 0 0 1 0 0] Tm +0 0 Td +90 625.624 Td +/F17_0 9.9626 Tf +(Julian) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Seward) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 613.669 Td +(On) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Performance) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(BWT) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Sorting) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Algorithms) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 601.714 Td +(Proceedings) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(IEEE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Compression) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Conference) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(2000) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +111.22 589.759 Td +(Snowbird,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Utah.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(28-30) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(March) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(2000.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +90 565.848 Td +(Julian) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Seward) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 553.893 Td +(Space-time) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Tradeoffs) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(in) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Inverse) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(B-W) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Transform) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +102.732 541.938 Td +(Proceedings) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(of) +[5.97756 +0 +5.97756 +0] Tj +-426 TJm +(the) +[5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(IEEE) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Data) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Compression) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Conference) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(2001) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +111.22 529.983 Td +(Snowbird,) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(Utah.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-852 TJm +(27-29) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(March) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +-426 TJm +(2001.) +[5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0 +5.97756 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +534.414 50.951 Td +/F15_0 9.9626 Tf +(35) +[4.9813 +0 +4.9813 +0] Tj +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +/DeviceRGB {} CS +[0 0 0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%+ font PYRIYB+NimbusSanL-Bold +%%+ font XDVKOU+NimbusRomNo9L-Regu +%%+ font QYKIKI+NimbusMonL-Regu +%%+ font BITXNG+CMMI10 +%%+ font ZWXELK+NimbusMonL-Bold +%%+ font FRBTTO+CMSY10 +%%+ font AMYDOG+NimbusRomNo9L-ReguItal +%%EOF diff --git a/bzip2-1.0.8/manual.xml b/bzip2-1.0.8/manual.xml new file mode 100644 index 0000000..ea9fca2 --- /dev/null +++ b/bzip2-1.0.8/manual.xml @@ -0,0 +1,2964 @@ + + + %common-ents; +]> + + + + + bzip2 and libbzip2, version &bz-version; + 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, v&bz-version; + + 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, 1.0.2 and 1.0.3, 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-author; + +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 +(tsuneo@rr.iij4u.or.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 + + + +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 + + + + + + +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_FINISH_OK + +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 + + + + + + +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 + + + + + + +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 +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 + + + + + + +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 + + + + + + +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. + + + + + + + + +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). + + + + + + +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 + + + + + + +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 + + + + + + +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 + + + + + + +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 + + + + + + +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 + + + + + + +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 + + + + + + +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 + + + + + + +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, b ); +} + + + + + + + + +Utility functions + + + +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 + + + + + + +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 + + + + + + + + +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. + + + + + +Using the library in a stdio-free environment + + + +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. + + + + + +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: &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. +
+ +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 +(tsuneo@rr.iij4u.or.jp), so +you should send your queries to him (but please Cc: +&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/bzip2-1.0.8/mk251.c b/bzip2-1.0.8/mk251.c new file mode 100644 index 0000000..6c5bbf9 --- /dev/null +++ b/bzip2-1.0.8/mk251.c @@ -0,0 +1,31 @@ + +/* 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. +*/ + +/* ------------------------------------------------------------------ + This file is part of bzip2/libbzip2, a program and library for + lossless, block-sorting data compression. + + bzip2/libbzip2 version 1.0.8 of 13 July 2019 + Copyright (C) 1996-2019 Julian Seward + + Please read the WARNING, DISCLAIMER and PATENTS sections in the + README file. + + This program is released under the terms of the license contained + in the file LICENSE. + ------------------------------------------------------------------ */ + + +#include + +int main () +{ + int i; + for (i = 0; i < 48500000 ; i++) + putchar(251); + return 0; +} diff --git a/bzip2-1.0.8/randtable.c b/bzip2-1.0.8/randtable.c new file mode 100644 index 0000000..bdc6d4a --- /dev/null +++ b/bzip2-1.0.8/randtable.c @@ -0,0 +1,84 @@ + +/*-------------------------------------------------------------*/ +/*--- Table for randomising repetitive blocks ---*/ +/*--- randtable.c ---*/ +/*-------------------------------------------------------------*/ + +/* ------------------------------------------------------------------ + This file is part of bzip2/libbzip2, a program and library for + lossless, block-sorting data compression. + + bzip2/libbzip2 version 1.0.8 of 13 July 2019 + Copyright (C) 1996-2019 Julian Seward + + Please read the WARNING, DISCLAIMER and PATENTS sections in the + README file. + + This program is released under the terms of the license contained + in the file LICENSE. + ------------------------------------------------------------------ */ + + +#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/bzip2-1.0.8/sample1.bz2 b/bzip2-1.0.8/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/bzip2-1.0.8/sample1.ref b/bzip2-1.0.8/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/bzip2-1.0.8/sample2.bz2 b/bzip2-1.0.8/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/bzip2-1.0.8/sample3.bz2 b/bzip2-1.0.8/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/bzip2-1.0.8/sample3.ref b/bzip2-1.0.8/sample3.ref new file mode 100644 index 0000000..775a2f6 --- /dev/null +++ b/bzip2-1.0.8/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/bzip2-1.0.8/spewG.c b/bzip2-1.0.8/spewG.c new file mode 100644 index 0000000..65d24c8 --- /dev/null +++ b/bzip2-1.0.8/spewG.c @@ -0,0 +1,54 @@ + +/* 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). +*/ + +/* ------------------------------------------------------------------ + This file is part of bzip2/libbzip2, a program and library for + lossless, block-sorting data compression. + + bzip2/libbzip2 version 1.0.8 of 13 July 2019 + Copyright (C) 1996-2019 Julian Seward + + Please read the WARNING, DISCLAIMER and PATENTS sections in the + README file. + + This program is released under the terms of the license contained + in the file LICENSE. + ------------------------------------------------------------------ */ + + +#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/bzip2-1.0.8/unzcrash.c b/bzip2-1.0.8/unzcrash.c new file mode 100644 index 0000000..c68f93c --- /dev/null +++ b/bzip2-1.0.8/unzcrash.c @@ -0,0 +1,141 @@ + +/* 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! + + PS. 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. +*/ + +/* ------------------------------------------------------------------ + This file is part of bzip2/libbzip2, a program and library for + lossless, block-sorting data compression. + + bzip2/libbzip2 version 1.0.8 of 13 July 2019 + Copyright (C) 1996-2019 Julian Seward + + Please read the WARNING, DISCLAIMER and PATENTS sections in the + README file. + + This program is released under the terms of the license contained + in the file LICENSE. + ------------------------------------------------------------------ */ + + +#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/bzip2-1.0.8/words0 b/bzip2-1.0.8/words0 new file mode 100644 index 0000000..fbf442a --- /dev/null +++ b/bzip2-1.0.8/words0 @@ -0,0 +1,9 @@ + +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. + +Also in README.COMPILATION.PROBLEMS are some hints that may help +if your build produces an executable which is unable to correctly +handle so-called 'large files' -- files of size 2GB or more. + diff --git a/bzip2-1.0.8/words1 b/bzip2-1.0.8/words1 new file mode 100644 index 0000000..2e83de9 --- /dev/null +++ b/bzip2-1.0.8/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/bzip2-1.0.8/words2 b/bzip2-1.0.8/words2 new file mode 100644 index 0000000..203ee39 --- /dev/null +++ b/bzip2-1.0.8/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/bzip2-1.0.8/words3 b/bzip2-1.0.8/words3 new file mode 100644 index 0000000..6972669 --- /dev/null +++ b/bzip2-1.0.8/words3 @@ -0,0 +1,30 @@ + +If you got this far and the 'cmp's didn't complain, it looks +like you're in business. + +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. + +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.html). + +You can also do "bzip2 --help" to see some helpful information. +"bzip2 -L" displays the software license. + diff --git a/bzip2-1.0.8/xmlproc.sh b/bzip2-1.0.8/xmlproc.sh new file mode 100755 index 0000000..16fe72b --- /dev/null +++ b/bzip2-1.0.8/xmlproc.sh @@ -0,0 +1,114 @@ +#!/bin/bash +# see the README file for usage etc. +# +# ------------------------------------------------------------------ +# This file is part of bzip2/libbzip2, a program and library for +# lossless, block-sorting data compression. +# +# bzip2/libbzip2 version 1.0.8 of 13 July 2019 +# Copyright (C) 1996-2019 Julian Seward +# +# Please read the WARNING, DISCLAIMER and PATENTS sections in the +# README file. +# +# This program is released under the terms of the license contained +# in the file LICENSE. +# ---------------------------------------------------------------- + + +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 *mut c_void>, + pub bzfree: Option, + pub opaque: *mut c_void, +} + +macro_rules! abi_compat { + ($(pub fn $name:ident($($arg:ident: $t:ty),*) -> $ret:ty,)*) => { + #[cfg(windows)] + extern "system" { + $(pub fn $name($($arg: $t),*) -> $ret;)* + } + #[cfg(not(windows))] + extern { + $(pub fn $name($($arg: $t),*) -> $ret;)* + } + } +} + +abi_compat! { + pub fn BZ2_bzCompressInit(stream: *mut bz_stream, + blockSize100k: c_int, + verbosity: c_int, + workFactor: c_int) -> c_int, + pub fn BZ2_bzCompress(stream: *mut bz_stream, action: c_int) -> c_int, + pub fn BZ2_bzCompressEnd(stream: *mut bz_stream) -> c_int, + pub fn BZ2_bzDecompressInit(stream: *mut bz_stream, + verbosity: c_int, + small: c_int) -> c_int, + pub fn BZ2_bzDecompress(stream: *mut bz_stream) -> c_int, + pub fn BZ2_bzDecompressEnd(stream: *mut bz_stream) -> c_int, +} + +#[no_mangle] +pub fn bz_internal_error(errcode: c_int) { + panic!("bz internal error: {}", errcode); +} -- 2.7.4